Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/mono/mono.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
Diffstat (limited to 'mono/mini/mini-posix.c')
-rw-r--r--mono/mini/mini-posix.c6
1 files changed, 2 insertions, 4 deletions
diff --git a/mono/mini/mini-posix.c b/mono/mini/mini-posix.c
index d336e35ffa1..f58606ddb86 100644
--- a/mono/mini/mini-posix.c
+++ b/mono/mini/mini-posix.c
@@ -635,7 +635,7 @@ mono_runtime_syscall_fork ()
#endif
}
-gboolean
+void
mono_gdb_render_native_backtraces (pid_t crashed_pid)
{
const char *argv [9];
@@ -643,7 +643,7 @@ mono_gdb_render_native_backtraces (pid_t crashed_pid)
argv [0] = g_find_program_in_path ("gdb");
if (argv [0] == NULL) {
- return FALSE;
+ return;
}
argv [1] = "-ex";
@@ -657,8 +657,6 @@ mono_gdb_render_native_backtraces (pid_t crashed_pid)
argv [8] = 0;
execv (argv [0], (char**)argv);
-
- return TRUE;
}
#endif
#endif /* __native_client__ */