mirror of
https://github.com/Hizenberg469/Inter-Process-Communication-IPC-.git
synced 2026-04-19 18:02:24 +03:00
11 lines
124 B
C
11 lines
124 B
C
#include <stdio.h>
|
|
#include <signal.h>
|
|
|
|
|
|
int
|
|
main(int argc, char** argv) {
|
|
|
|
kill(5827, SIGUSR1);
|
|
scanf("\n");
|
|
return 0;
|
|
} |