Skip to content

Commit

Permalink
Fixed signal handlig
Browse files Browse the repository at this point in the history
  • Loading branch information
markondej authored Oct 10, 2023
1 parent 67a283a commit f5d00d7
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion fm_transmitter.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -87,7 +87,7 @@ int main(int argc, char** argv)
int result = EXIT_SUCCESS;

std::signal(SIGINT, sigIntHandler);
std::signal(SIGTSTP, sigIntHandler);
std::signal(SIGTERM, sigIntHandler);

try {
transmitter = new Transmitter();
Expand Down

0 comments on commit f5d00d7

Please sign in to comment.