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:
7e1f49d
)
[PATCH] uml: Fix typo
author
Bodo Stroesser
<
[email protected]
>
Fri, 29 Jul 2005 04:16:11 +0000
(21:16 -0700)
committer
Linus Torvalds
<
[email protected]
>
Fri, 29 Jul 2005 04:46:04 +0000
(21:46 -0700)
Fix a typo in wait_stub_done.
Signed-off-by: Bodo Stroesser <
[email protected]
>
Signed-off-by: Jeff Dike <
[email protected]
>
Cc: Paolo 'Blaisorblade' Giarrusso <
[email protected]
>
Signed-off-by: Andrew Morton <
[email protected]
>
Signed-off-by: Linus Torvalds <
[email protected]
>
arch/um/kernel/skas/process.c
patch
|
blob
|
history
diff --git
a/arch/um/kernel/skas/process.c
b/arch/um/kernel/skas/process.c
index ba671dab8878485d605e0cc6b4dd1617328cbb54..6dd9e5bf18ed7e92f38bb89a08ceafca56d8b757 100644
(file)
--- a/
arch/um/kernel/skas/process.c
+++ b/
arch/um/kernel/skas/process.c
@@
-64,7
+64,7
@@
void wait_stub_done(int pid, int sig, char * fname)
(WSTOPSIG(status) == SIGVTALRM));
if((n < 0) || !WIFSTOPPED(status) ||
- (WSTOPSIG(status) != SIGUSR1 && WSTOPSIG(status
!= SIGTRAP)
)){
+ (WSTOPSIG(status) != SIGUSR1 && WSTOPSIG(status
) != SIGTRAP
)){
panic("%s : failed to wait for SIGUSR1/SIGTRAP, "
"pid = %d, n = %d, errno = %d, status = 0x%x\n",
fname, pid, n, errno, status);