-
-
Notifications
You must be signed in to change notification settings - Fork 1.6k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Handle SIGWINCH in main thread #2921
Conversation
For the SIGWINCH signal to be caught, it needs to be set in sigaction on the main thread. Previously, this was broken, and updateWindowSize was never being called. Tested on macOS 10.14.
How does this interact with the signal handler thread, which is supposed to handle SIGWINCH? It's also not clear to me how installing a signal handler that does nothing causes |
Ah it looks like this only matter in macOS. On Linux the behavior is correct. I'll need to investigate what is actually going on. I suspect something is broken on macOS pthread_sigmask. |
This example program works on Linux but not macOS: #include <stdio.h>
#include <stdlib.h>
#include <pthread.h>
#include <signal.h>
#include <string.h>
#include <errno.h>
static sigset_t signal_mask;
void *signal_thread(void *arg) {
int sig_caught;
while (1) {
sigwait(&signal_mask, &sig_caught);
if (sig_caught == SIGWINCH)
fprintf(stdout, "SIGWINCH\n");
}
return NULL;
}
int main(int argc, char *argv[]) {
pthread_t sig_thr_id;
sigemptyset(&signal_mask);
sigaddset(&signal_mask, SIGWINCH);
sigprocmask(SIG_BLOCK, &signal_mask, NULL);
pthread_create(&sig_thr_id, NULL, signal_thread, NULL);
while(1);
return 0;
} while this works on macOS: #include <stdio.h>
#include <stdlib.h>
#include <pthread.h>
#include <signal.h>
#include <string.h>
#include <errno.h>
static sigset_t signal_mask;
void *signal_thread(void *arg) {
int sig_caught;
while(1) {
sigwait(&signal_mask, &sig_caught);
if (sig_caught == SIGWINCH)
fprintf(stdout, "SIGWINCH\n");
}
return NULL;
}
static void sigHandler(int signo) { }
int main(int argc, char *argv[]) {
pthread_t sig_thr_id;
struct sigaction sa;
sa.sa_handler = sigHandler;
sigaction(SIGWINCH, &sa, 0);
sigemptyset(&signal_mask);
sigaddset(&signal_mask, SIGWINCH);
sigprocmask(SIG_BLOCK, &signal_mask, NULL);
pthread_create(&sig_thr_id, NULL, signal_thread, NULL);
while(1);
return 0;
} |
This is not needed on linux at all! Tried to explain as much as I understand with the problem.
9b78766
to
5011a52
Compare
I've put an ifdef to just do it on macOS. it looks like it has nothing to do with pthread. This program also doesn't work: #include <stdio.h>
#include <signal.h>
static sigset_t signal_mask;
int main (int argc, char *argv[]) {
sigemptyset(&signal_mask);
sigaddset(&signal_mask, SIGWINCH);
sigprocmask(SIG_BLOCK, &signal_mask, NULL);
int sig_caught;
while (1) {
sigwait(&signal_mask, &sig_caught);
if (sig_caught == SIGWINCH)
fprintf(stdout, "SIGWINCH\n");
}
return 0;
} While this does: #include <stdio.h>
#include <signal.h>
static sigset_t signal_mask;
static void sigHandler(int signo) { }
int main (int argc, char *argv[]) {
struct sigaction sa;
sa.sa_handler = sigHandler;
sigaction(SIGWINCH, &sa, 0);
sigemptyset(&signal_mask);
sigaddset(&signal_mask, SIGWINCH);
sigprocmask(SIG_BLOCK, &signal_mask, NULL);
int sig_caught;
while (1) {
sigwait(&signal_mask, &sig_caught);
if (sig_caught == SIGWINCH)
fprintf(stdout, "SIGWINCH\n");
}
return 0;
} |
Thanks! |
For the SIGWINCH signal to be caught, it needs to be set in sigaction
on the main thread. Previously, this was broken, and updateWindowSize
was never being called. Tested on macOS 10.14.