[feat] exp
This commit is contained in:
BIN
01/project-hbj/target
Executable file
BIN
01/project-hbj/target
Executable file
Binary file not shown.
16
01/project-hbj/target.cpp
Normal file
16
01/project-hbj/target.cpp
Normal file
@@ -0,0 +1,16 @@
|
||||
|
||||
#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);
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user