| Submitter | Andreas Färber |
|---|---|
| Date | May 1, 2012, 10:10 p.m. |
| Message ID | <1335910243-14561-1-git-send-email-afaerber@suse.de> |
| Download | mbox | patch |
| Permalink | /patch/156251/ |
| State | New |
| Headers | show |
Comments
Patch
diff --git a/linux-user/syscall.c b/linux-user/syscall.c index 7128618..801b8ed 100644 --- a/linux-user/syscall.c +++ b/linux-user/syscall.c @@ -5045,11 +5045,7 @@ abi_long do_syscall(void *cpu_env, int num, abi_long arg1, NULL, NULL, 0); } thread_env = NULL; -#ifdef ENV_GET_CPU object_delete(OBJECT(ENV_GET_CPU(cpu_env))); -#else - g_free(cpu_env); -#endif g_free(ts); pthread_exit(NULL); }
After all target CPUs have been QOM'ified, we no longer need an #ifdef to switch between object_delete() and g_free() in NPTL thread exit. Signed-off-by: Andreas Färber <afaerber@suse.de> --- linux-user/syscall.c | 4 ---- 1 files changed, 0 insertions(+), 4 deletions(-)