linux-user: Remove unnecessary nptl_flags variable from do_fork()
authorPeter Maydell <peter.maydell@linaro.org>
Tue, 2 Aug 2016 17:41:26 +0000 (18:41 +0100)
committerRiku Voipio <riku.voipio@linaro.org>
Wed, 21 Sep 2016 19:14:18 +0000 (22:14 +0300)
commit7cfbd386b92e93fbfae033b9ac89a20d1fe72573
tree6a2596c7d9b1087fb4b76f73a8d70c187f203f55
parentc4b3574402053a88612eab3b66a53825a00145a2
linux-user: Remove unnecessary nptl_flags variable from do_fork()

The 'nptl_flags' variable in do_fork() is set to a copy of
'flags', and then the CLONE_NPTL_FLAGS are cleared out of 'flags'.
However the only effect of this is that the later check on
"if (flags & CLONE_PARENT_SETTID)" is never true. Since we
will already have done the setting of parent_tidptr in clone_func()
in the child thread, we don't need to do it again.

Delete the dead if() and the clearing of CLONE_NPTL_FLAGS from
'flags', and then use 'flags' where we were previously using
'nptl_flags', so we can delete the unnecessary variable.

Signed-off-by: Peter Maydell <peter.maydell@linaro.org>
Signed-off-by: Riku Voipio <riku.voipio@linaro.org>
linux-user/syscall.c