unix/mpthreadport: Suppress compiler warning about unused arguments.

pull/2165/head
Damien George 2016-05-05 11:00:37 +00:00
rodzic f1dbd2909e
commit f443504f86
1 zmienionych plików z 2 dodań i 0 usunięć

Wyświetl plik

@ -57,6 +57,8 @@ STATIC volatile int thread_signal_done;
// this signal handler is used to scan the regs and stack of a thread
STATIC void mp_thread_gc(int signo, siginfo_t *info, void *context) {
(void)info; // unused
(void)context; // unused
if (signo == SIGUSR1) {
void gc_collect_regs_and_stack(void);
gc_collect_regs_and_stack();