使用linux编写C语言程序,如何才能得到进程信息和父进程信息?

日期:2017-09-08 20:18:29 人气:2

使用linux编写C语言程序,如何才能得到进程信息和父进程信息?

1、getpid()得到当前进程的pid, getppid()是得到父进程的pid 2、写成语句就是 printf ( "My process ID is%d\n", getpid()); printf ( "My parent's process ID is%d\n", getppid());
    A+
热门评论