Last active
June 25, 2024 22:31
-
-
Save BitsByWill/cf766d3e1134644a02e04bf0fabf5f18 to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#include <signal.h> | |
#include <unistd.h> | |
#include <stdio.h> | |
int main(int argc, char *argv[]) | |
{ | |
sigset_t sigs; | |
sigemptyset(&sigs); | |
sigaddset(&sigs, SIGALRM); | |
sigprocmask(SIG_BLOCK, &sigs, 0); | |
if (argc > 1) | |
{ | |
execvp(argv[1], argv + 1); | |
perror("execv"); | |
} | |
else | |
{ | |
fprintf(stderr, "Usage: %s <command> [args...]\n", argv[0]); | |
} | |
return 1; | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment