16 lines
216 B
C++
16 lines
216 B
C++
|
|
#include <iostream>
|
|
#include <string>
|
|
#include <unistd.h>
|
|
#include <sys/types.h>
|
|
|
|
int main()
|
|
{
|
|
pid_t pid = getpid();
|
|
std::cout << "Pid: " << pid << std::endl;
|
|
|
|
while(true)
|
|
{
|
|
sleep(0);
|
|
}
|
|
} |