]> git.ipfire.org Git - thirdparty/gcc.git/commitdiff
runtime: Fix prototype and one use of runtime_traceback.
authorIan Lance Taylor <ian@gcc.gnu.org>
Tue, 3 Dec 2013 14:51:07 +0000 (14:51 +0000)
committerIan Lance Taylor <ian@gcc.gnu.org>
Tue, 3 Dec 2013 14:51:07 +0000 (14:51 +0000)
From Richard Biener.

From-SVN: r205634

libgo/runtime/go-signal.c
libgo/runtime/runtime.h

index 4f0dcc78c1786ccc9de4f956e9058fd923cfb488..73bd8371b8f7a7a8abd92b1b0418907042ac4a09 100644 (file)
@@ -218,7 +218,7 @@ runtime_sighandler (int sig, Siginfo *info,
          G *g;
 
          g = runtime_g ();
-         runtime_traceback (g);
+         runtime_traceback ();
          runtime_tracebackothers (g);
 
          /* The gc library calls runtime_dumpregs here, and provides
index b9a1686d385c4a6c8fdf75784649c01b67073c6c..da2416335ec2805ac8770417eb9386736aab1b11 100644 (file)
@@ -453,7 +453,7 @@ enum {
 };
 void   runtime_hashinit(void);
 
-void   runtime_traceback();
+void   runtime_traceback(void);
 void   runtime_tracebackothers(G*);
 
 /*