aboutsummaryrefslogtreecommitdiffstats
path: root/arch
diff options
context:
space:
mode:
authorJohn M. Calandrino <jmc@jupiter-cs.cs.unc.edu>2007-04-25 01:07:01 -0400
committerJohn M. Calandrino <jmc@jupiter-cs.cs.unc.edu>2007-04-25 01:07:01 -0400
commit3115fffc3483ee16b3012f95c814d4e219057bb9 (patch)
tree31928694867d554863e4c96e470d9250680ec24c /arch
parentd7b3de3825379e73327785fee0770a1e52c504bb (diff)
Added function prototypes for SRP system calls in unistd.h and syscall_table.S.
Diffstat (limited to 'arch')
-rw-r--r--arch/i386/kernel/srp_sem_syscalls.c4
-rw-r--r--arch/i386/kernel/syscall_table.S5
2 files changed, 7 insertions, 2 deletions
diff --git a/arch/i386/kernel/srp_sem_syscalls.c b/arch/i386/kernel/srp_sem_syscalls.c
index 3a7e63b550..8f0545898c 100644
--- a/arch/i386/kernel/srp_sem_syscalls.c
+++ b/arch/i386/kernel/srp_sem_syscalls.c
@@ -103,8 +103,8 @@ asmlinkage long sys_srp_up(srp_sema_id sem_id)
103 * ceiling! (The ceiling would be meaningless anyway, as the SRP 103 * ceiling! (The ceiling would be meaningless anyway, as the SRP
104 * breaks without this a priori knowledge.) 104 * breaks without this a priori knowledge.)
105 */ 105 */
106asmlinkage long register_task_with_srp_sem(srp_sema_id sem_id, 106asmlinkage long sys_reg_task_srp_sem(srp_sema_id sem_id,
107 struct task_struct *t) 107 struct task_struct *t)
108{ 108{
109 unsigned long flags; 109 unsigned long flags;
110 110
diff --git a/arch/i386/kernel/syscall_table.S b/arch/i386/kernel/syscall_table.S
index 1612a07ad5..0b50716b03 100644
--- a/arch/i386/kernel/syscall_table.S
+++ b/arch/i386/kernel/syscall_table.S
@@ -341,3 +341,8 @@ ENTRY(sys_call_table)
341 .long sys_sema_free 341 .long sys_sema_free
342 .long sys_in_blocking_zone 342 .long sys_in_blocking_zone
343 .long sys_wait_for_zone_exit /* 340 */ 343 .long sys_wait_for_zone_exit /* 340 */
344 .long sys_srp_sema_init
345 .long sys_srp_down
346 .long sys_srp_up
347 .long sys_reg_task_srp_sem
348 .long sys_srp_sema_free /* 345 */