|
From: Tom H. <th...@cy...> - 2004-08-30 20:31:45
|
CVS commit by thughes:
Add vki_itimerspec definition for POSIX timer support.
M +5 -0 vg_kerneliface.h 1.23
--- valgrind/include/vg_kerneliface.h #1.22:1.23
@@ -566,4 +566,9 @@ struct vki_timespec {
};
+/* POSIX.1b structure for timer start values and intervals. */
+struct vki_itimerspec {
+ struct vki_timespec it_interval;
+ struct vki_timespec it_value;
+};
/* STAT stuff
|