summaryrefslogtreecommitdiffstatshomepage
diff options
context:
space:
mode:
-rw-r--r--unix/mpthreadport.c2
1 files changed, 2 insertions, 0 deletions
diff --git a/unix/mpthreadport.c b/unix/mpthreadport.c
index e11a79b471..336db3aa92 100644
--- a/unix/mpthreadport.c
+++ b/unix/mpthreadport.c
@@ -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();