diff options
author | Andrei Epure <[email protected]> | 2013-04-11 20:30:29 +0300 |
---|---|---|
committer | Ingo Molnar <[email protected]> | 2013-04-12 07:20:27 +0200 |
commit | 9b89f6ba2ab56e4d9c00e7e591d6bc333137895e (patch) | |
tree | aaf33706bab10fb3ff9d1aaedca3e2673e65582f | |
parent | b329fd5b018ffd64cfef6a2551bb2ca4bbfbacf2 (diff) |
sched: Document task_struct::personality field
Signed-off-by: Andrei Epure <[email protected]>
Cc: Linus Torvalds <[email protected]>
Cc: Andrew Morton <[email protected]>
Cc: Peter Zijlstra <[email protected]>
Cc: Thomas Gleixner <[email protected]>
Link: http://lkml.kernel.org/r/[email protected]
Signed-off-by: Ingo Molnar <[email protected]>
-rw-r--r-- | include/linux/sched.h | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/include/linux/sched.h b/include/linux/sched.h index 9004f6e19eac..6bdaa73ede13 100644 --- a/include/linux/sched.h +++ b/include/linux/sched.h @@ -1105,8 +1105,10 @@ struct task_struct { int exit_code, exit_signal; int pdeath_signal; /* The signal sent when the parent dies */ unsigned int jobctl; /* JOBCTL_*, siglock protected */ - /* ??? */ + + /* Used for emulating ABI behavior of previous Linux versions */ unsigned int personality; + unsigned did_exec:1; unsigned in_execve:1; /* Tell the LSMs that the process is doing an * execve */ |