diff options
author | Jeff Dike <jdike@addtoit.com> | 2007-05-06 17:51:09 -0400 |
---|---|---|
committer | Linus Torvalds <torvalds@woody.linux-foundation.org> | 2007-05-07 15:13:01 -0400 |
commit | 24fa6c0832f4513ac897082d7d803970a40cc1b0 (patch) | |
tree | 261c0b7612f74b703ce88efb7dd22548779e1399 /arch/um/include/os.h | |
parent | 4ff83ce1114827f707b7f1f4f2e5f69de9df94ac (diff) |
uml: move remaining useful contents of user_util.h
Rescue the useful contents of the soon-to-be-gone user-util.h.
pty.c now gets ptsname from stdlib.h like it should have always done.
CATCH_EINTR is now in os.h, although perhaps all usage should be under
os-Linux at some point.
get_pty is also in os.h.
This patch restores the old definition of ARRAY_SIZE in user.h. This file is
included only in userspace files, so there will be no conflict with the
kernel's new ARRAY_SIZE. The copy of the kernel's ARRAY_SIZE and associated
infrastructure is now gone.
Signed-off-by: Jeff Dike <jdike@linux.intel.com>
Cc: Paolo 'Blaisorblade' Giarrusso <blaisorblade@yahoo.it>
Signed-off-by: Andrew Morton <akpm@linux-foundation.org>
Signed-off-by: Linus Torvalds <torvalds@linux-foundation.org>
Diffstat (limited to 'arch/um/include/os.h')
-rw-r--r-- | arch/um/include/os.h | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/arch/um/include/os.h b/arch/um/include/os.h index 22666b4a8be7..394adcded0bf 100644 --- a/arch/um/include/os.h +++ b/arch/um/include/os.h | |||
@@ -16,6 +16,8 @@ | |||
16 | #include "sysdep/tls.h" | 16 | #include "sysdep/tls.h" |
17 | #include "sysdep/archsetjmp.h" | 17 | #include "sysdep/archsetjmp.h" |
18 | 18 | ||
19 | #define CATCH_EINTR(expr) while ((errno = 0, ((expr) < 0)) && (errno == EINTR)) | ||
20 | |||
19 | #define OS_TYPE_FILE 1 | 21 | #define OS_TYPE_FILE 1 |
20 | #define OS_TYPE_DIR 2 | 22 | #define OS_TYPE_DIR 2 |
21 | #define OS_TYPE_SYMLINK 3 | 23 | #define OS_TYPE_SYMLINK 3 |
@@ -341,6 +343,10 @@ extern void maybe_sigio_broken(int fd, int read); | |||
341 | extern void sig_handler_common_skas(int sig, void *sc_ptr); | 343 | extern void sig_handler_common_skas(int sig, void *sc_ptr); |
342 | extern void user_signal(int sig, union uml_pt_regs *regs, int pid); | 344 | extern void user_signal(int sig, union uml_pt_regs *regs, int pid); |
343 | 345 | ||
346 | /* sys-x86_64/prctl.c */ | ||
344 | extern int os_arch_prctl(int pid, int code, unsigned long *addr); | 347 | extern int os_arch_prctl(int pid, int code, unsigned long *addr); |
345 | 348 | ||
349 | /* tty.c */ | ||
350 | int get_pty(void); | ||
351 | |||
346 | #endif | 352 | #endif |