Skip to content
GitLab
Projects
Groups
Snippets
Help
Loading...
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
X
xcap-capability-linux
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Labels
Merge Requests
0
Merge Requests
0
Analytics
Analytics
Repository
Value Stream
Wiki
Wiki
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Commits
Open sidebar
xcap
xcap-capability-linux
Commits
0aa0203f
Commit
0aa0203f
authored
Nov 25, 2012
by
Al Viro
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
take sys_rt_sigsuspend() prototype to linux/syscalls.h
Signed-off-by:
Al Viro
<
viro@zeniv.linux.org.uk
>
parent
709410a0
Changes
5
Hide whitespace changes
Inline
Side-by-side
Showing
5 changed files
with
2 additions
and
8 deletions
+2
-8
arch/powerpc/include/asm/syscalls.h
arch/powerpc/include/asm/syscalls.h
+0
-2
arch/powerpc/kernel/signal_32.c
arch/powerpc/kernel/signal_32.c
+0
-1
arch/xtensa/include/asm/syscall.h
arch/xtensa/include/asm/syscall.h
+0
-1
include/asm-generic/syscalls.h
include/asm-generic/syscalls.h
+0
-4
include/linux/syscalls.h
include/linux/syscalls.h
+2
-0
No files found.
arch/powerpc/include/asm/syscalls.h
View file @
0aa0203f
...
...
@@ -22,8 +22,6 @@ asmlinkage long ppc64_personality(unsigned long personality);
asmlinkage
int
ppc_rtas
(
struct
rtas_args
__user
*
uargs
);
asmlinkage
time_t
sys64_time
(
time_t
__user
*
tloc
);
asmlinkage
long
sys_rt_sigsuspend
(
sigset_t
__user
*
unewset
,
size_t
sigsetsize
);
asmlinkage
long
sys_sigaltstack
(
const
stack_t
__user
*
uss
,
stack_t
__user
*
uoss
,
unsigned
long
r5
,
unsigned
long
r6
,
unsigned
long
r7
,
unsigned
long
r8
,
struct
pt_regs
*
regs
);
...
...
arch/powerpc/kernel/signal_32.c
View file @
0aa0203f
...
...
@@ -57,7 +57,6 @@
#ifdef CONFIG_PPC64
#define sys_sigsuspend compat_sys_sigsuspend
#define sys_rt_sigsuspend compat_sys_rt_sigsuspend
#define sys_rt_sigreturn compat_sys_rt_sigreturn
#define sys_sigaction compat_sys_sigaction
#define sys_swapcontext compat_sys_swapcontext
...
...
arch/xtensa/include/asm/syscall.h
View file @
0aa0203f
...
...
@@ -26,4 +26,3 @@ asmlinkage long sys_ppoll(struct pollfd __user *ufds, unsigned int nfds,
struct
timespec
__user
*
tsp
,
const
sigset_t
__user
*
sigmask
,
size_t
sigsetsize
);
asmlinkage
long
sys_rt_sigsuspend
(
sigset_t
__user
*
unewset
,
size_t
sigsetsize
);
include/asm-generic/syscalls.h
View file @
0aa0203f
...
...
@@ -32,8 +32,4 @@ asmlinkage long sys_sigaltstack(const stack_t __user *, stack_t __user *,
asmlinkage
long
sys_rt_sigreturn
(
struct
pt_regs
*
regs
);
#endif
#ifndef sys_rt_sigsuspend
asmlinkage
long
sys_rt_sigsuspend
(
sigset_t
__user
*
unewset
,
size_t
sigsetsize
);
#endif
#endif
/* __ASM_GENERIC_SYSCALLS_H */
include/linux/syscalls.h
View file @
0aa0203f
...
...
@@ -385,6 +385,8 @@ asmlinkage long sys_sigsuspend(old_sigset_t mask);
asmlinkage
long
sys_sigsuspend
(
int
unused1
,
int
unused2
,
old_sigset_t
mask
);
#endif
asmlinkage
long
sys_rt_sigsuspend
(
sigset_t
__user
*
unewset
,
size_t
sigsetsize
);
#ifdef CONFIG_OLD_SIGACTION
asmlinkage
long
sys_sigaction
(
int
,
const
struct
old_sigaction
__user
*
,
struct
old_sigaction
__user
*
);
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment