summaryrefslogtreecommitdiffstats
path: root/src/pybind/rados/ctime.pxd
diff options
context:
space:
mode:
Diffstat (limited to 'src/pybind/rados/ctime.pxd')
-rw-r--r--src/pybind/rados/ctime.pxd11
1 files changed, 11 insertions, 0 deletions
diff --git a/src/pybind/rados/ctime.pxd b/src/pybind/rados/ctime.pxd
new file mode 100644
index 000000000..3e16ce4c2
--- /dev/null
+++ b/src/pybind/rados/ctime.pxd
@@ -0,0 +1,11 @@
+# cython: embedsignature=True
+
+cdef extern from "time.h":
+ ctypedef long int time_t
+ ctypedef long int suseconds_t
+
+
+cdef extern from "sys/time.h":
+ cdef struct timeval:
+ time_t tv_sec
+ suseconds_t tv_usec