This commit is contained in:
2025-07-02 00:07:49 -07:00
commit c208c6b35d
114 changed files with 71862 additions and 0 deletions

13
c/sig.c Normal file
View File

@ -0,0 +1,13 @@
#include <stdio.h>
#include <signal.h>
//#include <unistd.h>
void handlesig36(int sig) {
printf("received signal %d\n", sig);
}
int main() {
signal(SIGRTMIN+2, handlesig36);
//while (1);
return 0;
}