`
jiagou
  • 浏览: 2525250 次
文章分类
社区版块
存档分类
最新评论

linux C语言 杀死进程方式

 
阅读更多

1) 读取进程运行时文件,文件内为进程Pid号
2) 读取进程号,调用系统调用kill,给进程发SIGTERM 信号。


代码:
static int kill_spider_backgroud()
{
char path[MAX_PATH];
FILE *f;
int pid = 0; /* pid number from pid file */

/* set global dirs */

spd_snprintf(path, sizeof(path),"%s/%s", spd_global_dirs_PID_DIR, pfile);

if((f = fopen(path, "r")) == 0) {
fprintf(stderr, "Can't open pid file %s", path);
return -1;
}
if(fscanf(f, "d", &pid)!= 1) {
spd_log(LOG_ERROR, "unenble to get pid !\n");
}

/* send signal SIGTERM to kill */
if(pid > 0) {
spd_log(LOG_DEBUG, "Killing %d\n", pid);
kill(pid, SIGTERM);
}

fclose(f);


return 0;
}
分享到:
评论

相关推荐

Global site tag (gtag.js) - Google Analytics