]> pilppa.org Git - linux-2.6-omap-h63xx.git/blobdiff - include/linux/thread_info.h
ipc: define the slab_memory_callback priority as a constant
[linux-2.6-omap-h63xx.git] / include / linux / thread_info.h
index dfbdfb9836f469ff78184c9b99825a569953c1fd..accd7bad35b09152b8ecf2abcd8ab063c53ae5fb 100644 (file)
@@ -9,6 +9,9 @@
 
 #include <linux/types.h>
 
+struct timespec;
+struct compat_timespec;
+
 /*
  * System call restart block.
  */
@@ -23,8 +26,18 @@ struct restart_block {
                        u32 *uaddr;
                        u32 val;
                        u32 flags;
+                       u32 bitset;
                        u64 time;
                } futex;
+               /* For nanosleep */
+               struct {
+                       clockid_t index;
+                       struct timespec __user *rmtp;
+#ifdef CONFIG_COMPAT
+                       struct compat_timespec __user *compat_rmtp;
+#endif
+                       u64 expires;
+               } nanosleep;
        };
 };