mirror of
https://github.com/torvalds/linux.git
synced 2024-11-02 02:01:29 +00:00
sh: fix semtimedop syscall
fix the problem that cannot work semtimedop system call. Signed-off-by: Yoshihiro Shimoda <shimoda.yoshihiro@renesas.com> Signed-off-by: Paul Mundt <lethal@linux-sh.org>
This commit is contained in:
parent
f9bed3f204
commit
3c31bf7313
@ -170,7 +170,7 @@ asmlinkage int sys_ipc(uint call, int first, int second,
|
||||
version = call >> 16; /* hack for backward compatibility */
|
||||
call &= 0xffff;
|
||||
|
||||
if (call <= SEMCTL)
|
||||
if (call <= SEMTIMEDOP)
|
||||
switch (call) {
|
||||
case SEMOP:
|
||||
return sys_semtimedop(first,
|
||||
|
Loading…
Reference in New Issue
Block a user