projects
/
openwrt
/
staging
/
blogic.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
3212c6b
)
[PATCH] mips: fixed try_to_freeze build error
author
Yoichi Yuasa
<yuasa@hh.iij4u.or.jp>
Mon, 27 Jun 2005 21:36:30 +0000
(14:36 -0700)
committer
Linus Torvalds
<torvalds@ppc970.osdl.org>
Mon, 27 Jun 2005 22:11:42 +0000
(15:11 -0700)
arch/mips/kernel/signal.c: In function 'do_signal':
arch/mips/kernel/signal.c:460: error: too many arguments to function 'try_to_freeze'
Signed-off-by: Yoichi Yuasa <yuasa@hh.iij4u.or.jp>
Signed-off-by: Andrew Morton <akpm@osdl.org>
Signed-off-by: Linus Torvalds <torvalds@osdl.org>
arch/mips/kernel/signal.c
patch
|
blob
|
history
diff --git
a/arch/mips/kernel/signal.c
b/arch/mips/kernel/signal.c
index 508026ae584222fe93fb4d24ed747fc2314bfe28..65ee15396ffdefc52782ab24bd983baf08e90f30 100644
(file)
--- a/
arch/mips/kernel/signal.c
+++ b/
arch/mips/kernel/signal.c
@@
-457,7
+457,7
@@
static int do_signal(sigset_t *oldset, struct pt_regs *regs)
if (!user_mode(regs))
return 1;
- if (try_to_freeze(
0
))
+ if (try_to_freeze())
goto no_signal;
if (!oldset)