Skip to content

Commit

Permalink
---
Browse files Browse the repository at this point in the history
yaml
---
r: 83222
b: refs/heads/master
c: b549883
h: refs/heads/master
v: v3
  • Loading branch information
Jeff Dike authored and Linus Torvalds committed Feb 5, 2008
1 parent a2de3c4 commit 1bc6db4
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 5 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: 95906b24fbe4d22e5861f67fe1e8274c7ecfeda1
refs/heads/master: b54988325c4cbf8bd92c0def53387ab6516d0920
8 changes: 4 additions & 4 deletions trunk/arch/um/os-Linux/skas/process.c
Original file line number Diff line number Diff line change
Expand Up @@ -273,7 +273,7 @@ int start_userspace(unsigned long stub_stack)
if (stack == MAP_FAILED) {
err = -errno;
printk(UM_KERN_ERR "start_userspace : mmap failed, "
"errno = %d", errno);
"errno = %d\n", errno);
return err;
}

Expand All @@ -289,7 +289,7 @@ int start_userspace(unsigned long stub_stack)
if (pid < 0) {
err = -errno;
printk(UM_KERN_ERR "start_userspace : clone failed, "
"errno = %d", errno);
"errno = %d\n", errno);
return err;
}

Expand All @@ -298,15 +298,15 @@ int start_userspace(unsigned long stub_stack)
if (n < 0) {
err = -errno;
printk(UM_KERN_ERR "start_userspace : wait failed, "
"errno = %d", errno);
"errno = %d\n", errno);
goto out_kill;
}
} while (WIFSTOPPED(status) && (WSTOPSIG(status) == SIGVTALRM));

if (!WIFSTOPPED(status) || (WSTOPSIG(status) != SIGSTOP)) {
err = -EINVAL;
printk(UM_KERN_ERR "start_userspace : expected SIGSTOP, got "
"status = %d", status);
"status = %d\n", status);
goto out_kill;
}

Expand Down

0 comments on commit 1bc6db4

Please sign in to comment.