From 9190749fbe075ece4a72380cc3dea919a8f960c3 Mon Sep 17 00:00:00 2001 From: Riku Voipio Date: Fri, 26 Nov 2010 16:21:34 +0200 Subject: [PATCH] linux-user: fix compiler error on nptl Some compilers detect that new_stack isnt used after dd75d784 Signed-off-by: Riku Voipio --- linux-user/syscall.c | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/linux-user/syscall.c b/linux-user/syscall.c index 070241bb8a..c3e870654d 100644 --- a/linux-user/syscall.c +++ b/linux-user/syscall.c @@ -3635,11 +3635,12 @@ static int do_fork(CPUState *env, unsigned int flags, abi_ulong newsp, { int ret; TaskState *ts; - uint8_t *new_stack; CPUState *new_env; #if defined(CONFIG_USE_NPTL) unsigned int nptl_flags; sigset_t sigmask; +#else + uint8_t *new_stack; #endif /* Emulate vfork() with fork() */ -- 2.11.4.GIT