mirror of
https://git.freebsd.org/ports.git
synced 2025-06-30 09:00:33 -04:00
- Update emulators/qemu-devel to 1.4.0 with preliminary bsd-user patches. Thanx to: sson, cognet, and others for much improved bsd-user support - it now runs at least quite a few mips64 and single-threaded arm binaries, see: https://wiki.freebsd.org/QemuUserModeHowTo
11 lines
302 B
Text
11 lines
302 B
Text
--- qemu-1.4.0/bsd-user/syscall.c.orig
|
|
+++ qemu-1.4.0/bsd-user/syscall.c
|
|
@@ -2418,7 +2418,7 @@ do_thr_exit(CPUArchState *cpu_env, abi_u
|
|
}
|
|
|
|
thread_env = NULL;
|
|
- object_delete(OBJECT(ENV_GET_CPU(cpu_env)));
|
|
+ object_unref(OBJECT(ENV_GET_CPU(cpu_env)));
|
|
g_free(ts);
|
|
pthread_exit(NULL);
|
|
}
|