riceset
GitHub
RSS
GitHub
RSS
Understanding signals in Linux
2022-08-12
— Written by Komeno
#C
#Linux
#UNIX
A process ID a.k.a. PID is literally what the name says, it is a number to uniquely identify a running process. You can print your program’s PID in C using the getpid() function included on the header file unistd.h.
Read more →