Skip to content

Removes signal handler for signal 28 (terminal resize signal) #16

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

Open
wants to merge 1 commit into
base: master
Choose a base branch
from
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 6 additions & 0 deletions wspr.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -44,6 +44,7 @@
#include <algorithm>
#include <pthread.h>
#include <sys/timex.h>
#include <signal.h>

#ifdef __cplusplus
extern "C" {
Expand Down Expand Up @@ -1120,6 +1121,11 @@ void setup_peri_base_virt(
int main(const int argc, char * const argv[]) {
//catch all signals (like ctrl+c, ctrl+z, ...) to ensure DMA is disabled
for (int i = 0; i < 64; i++) {
// Do not set up a handler for signal 28 (SIGWINCH). This signal is used
// to signify a terminal window resize event and is NOT a reason for the
// process to terminate.
if (i == SIGWINCH)
continue;
struct sigaction sa;
memset(&sa, 0, sizeof(sa));
sa.sa_handler = cleanupAndExit;
Expand Down