diff options
| author | Tejun Heo <tj@kernel.org> | 2012-11-06 15:26:23 -0500 |
|---|---|---|
| committer | Tejun Heo <tj@kernel.org> | 2012-11-06 15:26:23 -0500 |
| commit | 5b805f2a7675634fbdf9ac1c9b2256905ab2ea68 (patch) | |
| tree | ee00d1e3d757458d66209b926d274491c6c3f61c /arch/parisc/include/uapi/asm/sigcontext.h | |
| parent | 1db1e31b1ee3ae126ef98f39083b5f213c7b41bf (diff) | |
| parent | 201e72acb2d3821e2de9ce6091e98859c316b29a (diff) | |
Merge branch 'cgroup/for-3.7-fixes' into cgroup/for-3.8
This is to receive device_cgroup fixes so that further device_cgroup
changes can be made in cgroup/for-3.8.
Signed-off-by: Tejun Heo <tj@kernel.org>
Diffstat (limited to 'arch/parisc/include/uapi/asm/sigcontext.h')
| -rw-r--r-- | arch/parisc/include/uapi/asm/sigcontext.h | 20 |
1 files changed, 20 insertions, 0 deletions
diff --git a/arch/parisc/include/uapi/asm/sigcontext.h b/arch/parisc/include/uapi/asm/sigcontext.h new file mode 100644 index 000000000000..27ef31bb3b6e --- /dev/null +++ b/arch/parisc/include/uapi/asm/sigcontext.h | |||
| @@ -0,0 +1,20 @@ | |||
| 1 | #ifndef _ASMPARISC_SIGCONTEXT_H | ||
| 2 | #define _ASMPARISC_SIGCONTEXT_H | ||
| 3 | |||
| 4 | #define PARISC_SC_FLAG_ONSTACK 1<<0 | ||
| 5 | #define PARISC_SC_FLAG_IN_SYSCALL 1<<1 | ||
| 6 | |||
| 7 | /* We will add more stuff here as it becomes necessary, until we know | ||
| 8 | it works. */ | ||
| 9 | struct sigcontext { | ||
| 10 | unsigned long sc_flags; | ||
| 11 | |||
| 12 | unsigned long sc_gr[32]; /* PSW in sc_gr[0] */ | ||
| 13 | unsigned long long sc_fr[32]; /* FIXME, do we need other state info? */ | ||
| 14 | unsigned long sc_iasq[2]; | ||
| 15 | unsigned long sc_iaoq[2]; | ||
| 16 | unsigned long sc_sar; /* cr11 */ | ||
| 17 | }; | ||
| 18 | |||
| 19 | |||
| 20 | #endif | ||
