aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorChris Zankel <chris@zankel.net>2007-08-04 09:20:43 -0700
committerChris Zankel <chris@zankel.net>2007-08-27 13:53:00 -0700
commitcef9287ead2775e4d7eaa280a73ee99d7269c3e4 (patch)
tree1e49437c7092103b93f22fa7a8a438cc408edbe2
parent[XTENSA] add missing system calls (diff)
downloadlinux-dev-cef9287ead2775e4d7eaa280a73ee99d7269c3e4.tar.xz
linux-dev-cef9287ead2775e4d7eaa280a73ee99d7269c3e4.zip
[XTENSA] Add getpgrp system-call to unistd.h
Although __ARCH_WANT_SYS_GETPGRP was defined, the actualy entry for the getpgrp system-call was missing. Signed-off-by: Chris Zankel <chris@zankel.net>
-rw-r--r--include/asm-xtensa/unistd.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/include/asm-xtensa/unistd.h b/include/asm-xtensa/unistd.h
index 78ad761e6d5c..bed04102407b 100644
--- a/include/asm-xtensa/unistd.h
+++ b/include/asm-xtensa/unistd.h
@@ -339,8 +339,8 @@ __SYSCALL(148, sys_setpgid, 2)
__SYSCALL(149, sys_getpgid, 1)
#define __NR_getppid 150
__SYSCALL(150, sys_getppid, 0)
-#define __NR_available151 151
-__SYSCALL(151, sys_ni_syscall, 0)
+#define __NR_getpgrp 151
+__SYSCALL(151, sys_getpgrp, 0)
#define __NR_reserved152 152 /* set_thread_area */
__SYSCALL(152, sys_ni_syscall, 0)