c linux 进程挂起,如何在C(linux)中挂起/重启进程

嗨,我必须为系统调用编写2个函数,这些函数将管理操作系统中的任务执行.我找不到暂停/重启进程的方法.我找到了一个信号列表,我知道kill函数,这里是我的代码:

#include

#include

typedef struct File

{

int pid;

struct File *pids;

} *file;

file file1 = NULL;

//this fonction is to suspend a process using its pid number

int V(int pid_num)

{

//does the kill fonction just kill the process or will it take into account the signal argument?

kill(pid_num, SIGSTOP);

file1 = ajouter(file1, pid_num);

return 0;

}

//this is to restart the process

int C()

{

if (file1 != NULL)

{

//I know the kill fonction is not the right one but I just don't know any other to take as argument the pid of a process to restart it

kill(file1->pid, SIGCONT);

}

return 0;

}

//this fontion adds pid number to our structure

file ajouter(file file_n, int pid)

{

file nouveau = malloc(sizeof(file));

nouveau->pid = pid;

nouveau->pids = file_n;

return nouveau;

}

评论:这段代码不应该真正起作用,这只是一点点模拟,非常感谢

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值