runtime: Call exit rather than _exit.

This fixes --coverage and perhaps other things as well.

From-SVN: r184642
This commit is contained in:
Ian Lance Taylor 2012-02-28 20:57:15 +00:00
parent fbd3340c7d
commit 5c46e29317
1 changed files with 1 additions and 1 deletions

View File

@ -348,7 +348,7 @@ void runtime_panic(Eface);
#define runtime_strcmp(s1, s2) __builtin_strcmp((s1), (s2))
#define runtime_mcmp(a, b, s) __builtin_memcmp((a), (b), (s))
#define runtime_memmove(a, b, s) __builtin_memmove((a), (b), (s))
#define runtime_exit(s) _exit(s)
#define runtime_exit(s) exit(s)
MCache* runtime_allocmcache(void);
void free(void *v);
struct __go_func_type;