diff options
author | John M. Calandrino <jmc@jupiter-cs.cs.unc.edu> | 2007-05-09 18:54:34 -0400 |
---|---|---|
committer | John M. Calandrino <jmc@jupiter-cs.cs.unc.edu> | 2007-05-09 18:54:34 -0400 |
commit | 42a00fe2529ae0406c140844acf0d8314117d747 (patch) | |
tree | 74531e5202ae0c0230d47d80c0b98675dc3966f3 /arch | |
parent | a0615764712672e852ee44aabfaaaa0911f4a7c3 (diff) |
Development checkpoint. Still having issues.
Diffstat (limited to 'arch')
-rw-r--r-- | arch/i386/kernel/pi_sem_syscalls.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/arch/i386/kernel/pi_sem_syscalls.c b/arch/i386/kernel/pi_sem_syscalls.c index 1b85abae27..1034c1ccbe 100644 --- a/arch/i386/kernel/pi_sem_syscalls.c +++ b/arch/i386/kernel/pi_sem_syscalls.c | |||
@@ -85,7 +85,7 @@ asmlinkage long sys_pi_down(pi_sema_id sem_id) | |||
85 | spin_lock_irqsave(&pi_sems[sem_id].wait.lock, flags); | 85 | spin_lock_irqsave(&pi_sems[sem_id].wait.lock, flags); |
86 | if (!pi_sems[sem_id].holder) { | 86 | if (!pi_sems[sem_id].holder) { |
87 | pi_sems[sem_id].holder = current; | 87 | pi_sems[sem_id].holder = current; |
88 | // curr_sched_plugin->inherit_priority(&pi_sems[sem_id], NULL); | 88 | curr_sched_plugin->inherit_priority(&pi_sems[sem_id], NULL); |
89 | } | 89 | } |
90 | spin_unlock_irqrestore(&pi_sems[sem_id].wait.lock, flags); | 90 | spin_unlock_irqrestore(&pi_sems[sem_id].wait.lock, flags); |
91 | return 0; | 91 | return 0; |