aboutsummaryrefslogtreecommitdiff
path: root/time/bits/types/struct_itimerspec.h
diff options
context:
space:
mode:
Diffstat (limited to 'time/bits/types/struct_itimerspec.h')
-rw-r--r--time/bits/types/struct_itimerspec.h14
1 files changed, 14 insertions, 0 deletions
diff --git a/time/bits/types/struct_itimerspec.h b/time/bits/types/struct_itimerspec.h
new file mode 100644
index 0000000000..17cc1ac86d
--- /dev/null
+++ b/time/bits/types/struct_itimerspec.h
@@ -0,0 +1,14 @@
+#ifndef __itimerspec_defined
+#define __itimerspec_defined 1
+
+#include <bits/types.h>
+#include <bits/types/struct_timespec.h>
+
+/* POSIX.1b structure for timer start values and intervals. */
+struct itimerspec
+ {
+ struct timespec it_interval;
+ struct timespec it_value;
+ };
+
+#endif