aboutsummaryrefslogtreecommitdiff
path: root/libgo/runtime
diff options
context:
space:
mode:
authorIan Lance Taylor <ian@gcc.gnu.org>2012-02-28 20:57:15 +0000
committerIan Lance Taylor <ian@gcc.gnu.org>2012-02-28 20:57:15 +0000
commit5c46e29317e5fbbd4e94222b96f0d01658cb76cf (patch)
treeae29b59cb1668e98a9b77b530ac9a6193ffa41df /libgo/runtime
parentfbd3340c7d23016059693696aa07c51bc1c22aae (diff)
downloadgcc-5c46e29317e5fbbd4e94222b96f0d01658cb76cf.zip
gcc-5c46e29317e5fbbd4e94222b96f0d01658cb76cf.tar.gz
gcc-5c46e29317e5fbbd4e94222b96f0d01658cb76cf.tar.bz2
runtime: Call exit rather than _exit.
This fixes --coverage and perhaps other things as well. From-SVN: r184642
Diffstat (limited to 'libgo/runtime')
-rw-r--r--libgo/runtime/runtime.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/libgo/runtime/runtime.h b/libgo/runtime/runtime.h
index 41b0ef5..5a64605 100644
--- a/libgo/runtime/runtime.h
+++ b/libgo/runtime/runtime.h
@@ -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;