We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent f1dbd29 commit f443504Copy full SHA for f443504
unix/mpthreadport.c
@@ -57,6 +57,8 @@ STATIC volatile int thread_signal_done;
57
58
// this signal handler is used to scan the regs and stack of a thread
59
STATIC void mp_thread_gc(int signo, siginfo_t *info, void *context) {
60
+ (void)info; // unused
61
+ (void)context; // unused
62
if (signo == SIGUSR1) {
63
void gc_collect_regs_and_stack(void);
64
gc_collect_regs_and_stack();
0 commit comments