diff options
author | Jeff Dike <[email protected]> | 2007-05-09 02:33:21 -0700 |
---|---|---|
committer | Linus Torvalds <[email protected]> | 2007-05-09 12:30:48 -0700 |
commit | 231f7e9d029a710c14352bff3b8d3753cb9bfde8 (patch) | |
tree | 9676c0f0e5995f756ef3508b244f21c2541523cf /arch/um/os-Linux | |
parent | 0ff563830209d2f5ea2ece071f7ea71aff934544 (diff) |
uml: mark a tt-only function
Mark another function as tt-mode only.
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]>
Diffstat (limited to 'arch/um/os-Linux')
-rw-r--r-- | arch/um/os-Linux/process.c | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/arch/um/os-Linux/process.c b/arch/um/os-Linux/process.c index 92a7b59120d6..2d9d2ca39299 100644 --- a/arch/um/os-Linux/process.c +++ b/arch/um/os-Linux/process.c @@ -239,6 +239,7 @@ out: return ok; } +#ifdef UML_CONFIG_MODE_TT void init_new_thread_stack(void *sig_stack, void (*usr1_handler)(int)) { int flags = 0, pages; @@ -260,6 +261,7 @@ void init_new_thread_stack(void *sig_stack, void (*usr1_handler)(int)) "errno = %d\n", errno); } } +#endif void init_new_thread_signals(void) { |