summaryrefslogtreecommitdiffstats
path: root/include
diff options
context:
space:
mode:
authorThomas Gleixner <tglx@linutronix.de>2008-08-31 08:19:15 -0700
committerArjan van de Ven <arjan@linux.intel.com>2008-09-05 21:35:01 -0700
commitbe5dad20a55e054a35dac7f6f5f184dc72b379b4 (patch)
tree2d0e84aaa0798b6cea140b712d384bda850d1ece /include
parentb773ad40aca5bd755ba886620842f16e8fef6d75 (diff)
downloadlinux-be5dad20a55e054a35dac7f6f5f184dc72b379b4.tar.gz
linux-be5dad20a55e054a35dac7f6f5f184dc72b379b4.tar.xz
select: add a poll specific struct to the restart_block union
with hrtimer poll/select, the signal restart data no longer is a single long representing a jiffies count, but it becomes a second/nanosecond pair that also needs to encode if there was a timeout at all or not. This patch adds a struct to the restart_block union for this purpose Signed-off-by: Thomas Gleixner <tglx@linutronix.de> Signed-off-by: Arjan van de Ven <arjan@linux.intel.com>
Diffstat (limited to 'include')
-rw-r--r--include/linux/thread_info.h8
1 files changed, 8 insertions, 0 deletions
diff --git a/include/linux/thread_info.h b/include/linux/thread_info.h
index 38a56477f27a..e6b820f8b56b 100644
--- a/include/linux/thread_info.h
+++ b/include/linux/thread_info.h
@@ -38,6 +38,14 @@ struct restart_block {
#endif
u64 expires;
} nanosleep;
+ /* For poll */
+ struct {
+ struct pollfd __user *ufds;
+ int nfds;
+ int has_timeout;
+ unsigned long tv_sec;
+ unsigned long tv_nsec;
+ } poll;
};
};