diff options
| author | Jeff Dike <jdike@addtoit.com> | 2007-10-16 04:27:08 -0400 |
|---|---|---|
| committer | Linus Torvalds <torvalds@woody.linux-foundation.org> | 2007-10-16 12:43:06 -0400 |
| commit | 8ca842c4b5cbc70b9180617e9f26b6ac9f40dbb9 (patch) | |
| tree | fe3e4deeae82c7063a72ecb3fdcae47422d6de0e /arch/um/os-Linux | |
| parent | 28078e8f9790be0854a54f06de822689ab571944 (diff) | |
uml: remove os_* usage from userspace files
This patch fixes some userspace files which were calling libc through the os_*
wrappers.
It turns out that there was only one user of os_new_tty_pgrp, so it can be
deleted.
There are also some style and whitespace fixes in here.
Signed-off-by: Jeff Dike <jdike@linux.intel.com>
Signed-off-by: Andrew Morton <akpm@linux-foundation.org>
Signed-off-by: Linus Torvalds <torvalds@linux-foundation.org>
Diffstat (limited to 'arch/um/os-Linux')
| -rw-r--r-- | arch/um/os-Linux/file.c | 11 |
1 files changed, 0 insertions, 11 deletions
diff --git a/arch/um/os-Linux/file.c b/arch/um/os-Linux/file.c index d463a82056..5f10c3031e 100644 --- a/arch/um/os-Linux/file.c +++ b/arch/um/os-Linux/file.c | |||
| @@ -101,17 +101,6 @@ int os_ioctl_generic(int fd, unsigned int cmd, unsigned long arg) | |||
| 101 | return err; | 101 | return err; |
| 102 | } | 102 | } |
| 103 | 103 | ||
| 104 | int os_new_tty_pgrp(int fd, int pid) | ||
| 105 | { | ||
| 106 | if(ioctl(fd, TIOCSCTTY, 0) < 0) | ||
| 107 | return -errno; | ||
| 108 | |||
| 109 | if(tcsetpgrp(fd, pid) < 0) | ||
| 110 | return -errno; | ||
| 111 | |||
| 112 | return 0; | ||
| 113 | } | ||
| 114 | |||
| 115 | /* FIXME: ensure namebuf in os_get_if_name is big enough */ | 104 | /* FIXME: ensure namebuf in os_get_if_name is big enough */ |
| 116 | int os_get_ifname(int fd, char* namebuf) | 105 | int os_get_ifname(int fd, char* namebuf) |
| 117 | { | 106 | { |
