15 lines
281 B
C
15 lines
281 B
C
|
#include <stdio.h>
|
||
|
#include <signal.h>
|
||
|
#include <sys/types.h>
|
||
|
#include <sys/stat.h>
|
||
|
#include <unistd.h>
|
||
|
|
||
|
// kill 案例:组合搭配 t12 使用
|
||
|
int main()
|
||
|
{
|
||
|
fork();
|
||
|
printf("%d 组ID(%d) 努力工作中...\n", getpid(), getpgid(0));
|
||
|
while (1)
|
||
|
;
|
||
|
return 0;
|
||
|
}
|