blob: 421323e5a2d6ce3e6d82b09cacf308e59c66bac7 [file] [log] [blame]
Linus Torvalds1da177e2005-04-16 15:20:36 -07001/* thread_info.h: common low-level thread information accessors
2 *
3 * Copyright (C) 2002 David Howells (dhowells@redhat.com)
4 * - Incorporating suggestions made by Linus Torvalds
5 */
6
7#ifndef _LINUX_THREAD_INFO_H
8#define _LINUX_THREAD_INFO_H
9
Steven Rostedtce6bd422007-12-05 15:46:09 +010010#include <linux/types.h>
11
Linus Torvalds1da177e2005-04-16 15:20:36 -070012/*
Steven Rostedtce6bd422007-12-05 15:46:09 +010013 * System call restart block.
Linus Torvalds1da177e2005-04-16 15:20:36 -070014 */
15struct restart_block {
16 long (*fn)(struct restart_block *);
Steven Rostedtce6bd422007-12-05 15:46:09 +010017 union {
18 struct {
19 unsigned long arg0, arg1, arg2, arg3;
20 };
21 /* For futex_wait */
22 struct {
23 u32 *uaddr;
24 u32 val;
25 u32 flags;
Thomas Gleixnercd689982008-02-01 17:45:14 +010026 u32 bitset;
Steven Rostedtce6bd422007-12-05 15:46:09 +010027 u64 time;
28 } futex;
29 };
Linus Torvalds1da177e2005-04-16 15:20:36 -070030};
31
32extern long do_no_restart_syscall(struct restart_block *parm);
33
34#include <linux/bitops.h>
35#include <asm/thread_info.h>
36
37#ifdef __KERNEL__
38
39/*
40 * flag set/clear/test wrappers
41 * - pass TIF_xxxx constants to these functions
42 */
43
Linus Torvalds1da177e2005-04-16 15:20:36 -070044static inline void set_ti_thread_flag(struct thread_info *ti, int flag)
45{
Jeremy Fitzhardinge5548fec2008-01-30 13:30:55 +010046 set_bit(flag, (unsigned long *)&ti->flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -070047}
48
49static inline void clear_ti_thread_flag(struct thread_info *ti, int flag)
50{
Jeremy Fitzhardinge5548fec2008-01-30 13:30:55 +010051 clear_bit(flag, (unsigned long *)&ti->flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -070052}
53
54static inline int test_and_set_ti_thread_flag(struct thread_info *ti, int flag)
55{
Jeremy Fitzhardinge5548fec2008-01-30 13:30:55 +010056 return test_and_set_bit(flag, (unsigned long *)&ti->flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -070057}
58
59static inline int test_and_clear_ti_thread_flag(struct thread_info *ti, int flag)
60{
Jeremy Fitzhardinge5548fec2008-01-30 13:30:55 +010061 return test_and_clear_bit(flag, (unsigned long *)&ti->flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -070062}
63
64static inline int test_ti_thread_flag(struct thread_info *ti, int flag)
65{
Jeremy Fitzhardinge5548fec2008-01-30 13:30:55 +010066 return test_bit(flag, (unsigned long *)&ti->flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -070067}
68
Roman Zippel3b66a1e2005-11-13 16:06:59 -080069#define set_thread_flag(flag) \
70 set_ti_thread_flag(current_thread_info(), flag)
71#define clear_thread_flag(flag) \
72 clear_ti_thread_flag(current_thread_info(), flag)
73#define test_and_set_thread_flag(flag) \
74 test_and_set_ti_thread_flag(current_thread_info(), flag)
75#define test_and_clear_thread_flag(flag) \
76 test_and_clear_ti_thread_flag(current_thread_info(), flag)
77#define test_thread_flag(flag) \
78 test_ti_thread_flag(current_thread_info(), flag)
Linus Torvalds1da177e2005-04-16 15:20:36 -070079
Roman Zippel3b66a1e2005-11-13 16:06:59 -080080#define set_need_resched() set_thread_flag(TIF_NEED_RESCHED)
81#define clear_need_resched() clear_thread_flag(TIF_NEED_RESCHED)
Linus Torvalds1da177e2005-04-16 15:20:36 -070082
83#endif
84
85#endif /* _LINUX_THREAD_INFO_H */