diff options
| author | bellard | 2003-03-07 00:23:54 +0100 |
|---|---|---|
| committer | bellard | 2003-03-07 00:23:54 +0100 |
| commit | 7d13299d07a9c3c42277207ae7a691f0501a70b2 (patch) | |
| tree | 981b791299c674712bacc00292de4afc6cc436ec /linux-user/syscall.c | |
| parent | convert several x86 instructions at the same time (diff) | |
| download | qemu-7d13299d07a9c3c42277207ae7a691f0501a70b2.tar.gz qemu-7d13299d07a9c3c42277207ae7a691f0501a70b2.tar.xz qemu-7d13299d07a9c3c42277207ae7a691f0501a70b2.zip | |
added translation cache
git-svn-id: svn://svn.savannah.nongnu.org/qemu/trunk@25 c046a42c-6fe2-441c-8c8c-71466251a162
Diffstat (limited to 'linux-user/syscall.c')
| -rw-r--r-- | linux-user/syscall.c | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/linux-user/syscall.c b/linux-user/syscall.c index f800fa219e..ac40cf19ef 100644 --- a/linux-user/syscall.c +++ b/linux-user/syscall.c @@ -628,6 +628,9 @@ long do_syscall(int num, long arg1, long arg2, long arg3, #endif switch(num) { case TARGET_NR_exit: +#ifdef HAVE_GPROF + _mcleanup(); +#endif _exit(arg1); ret = 0; /* avoid warning */ break; |
