Skip to content

Commit

Permalink
---
Browse files Browse the repository at this point in the history
yaml
---
r: 5875
b: refs/heads/master
c: 2eaa297
h: refs/heads/master
i:
  5873: fd3be5e
  5871: b2363cb
v: v3
  • Loading branch information
Jeff Dike authored and Linus Torvalds committed Aug 18, 2005
1 parent d091baa commit a7d2e59
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 2 deletions.
2 changes: 1 addition & 1 deletion [refs]
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@
---
refs/heads/master: 718d8989bca49761daf65f77249b0067c40756b2
refs/heads/master: 2eaa297ca234eb518673b28dd6f3715d4b292e09
6 changes: 5 additions & 1 deletion trunk/arch/um/kernel/skas/process.c
Original file line number Diff line number Diff line change
Expand Up @@ -61,7 +61,11 @@ void wait_stub_done(int pid, int sig, char * fname)

CATCH_EINTR(n = waitpid(pid, &status, WUNTRACED));
} while((n >= 0) && WIFSTOPPED(status) &&
(WSTOPSIG(status) == SIGVTALRM));
((WSTOPSIG(status) == SIGVTALRM) ||
/* running UML inside a detached screen can cause
* SIGWINCHes
*/
(WSTOPSIG(status) == SIGWINCH)));

if((n < 0) || !WIFSTOPPED(status) ||
(WSTOPSIG(status) != SIGUSR1 && WSTOPSIG(status) != SIGTRAP)){
Expand Down

0 comments on commit a7d2e59

Please sign in to comment.