博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
Linux多线程实例 定时重启httpd和mysqld
阅读量:5099 次
发布时间:2019-06-13

本文共 746 字,大约阅读时间需要 2 分钟。

#include 
#include
void *start_routine(void *arg){ while(1) { system("service httpd restart"); system("service mysqld restart"); sleep(60*60*6); } int retvalue = 0; pthread_exit((void*)&retvalue);}int main(){ pthread_t pt; int ret; ret = pthread_create(&pt,NULL,(void*)start_routine,0); if(ret != 0) { printf("create thread error"); return 0; } int *ret_join = NULL; pthread_join(pt,(void*)&ret_join); printf("retvalue: %d\n",*ret_join); return 0;}

 gcc test.c -o test -lpthread

转载于:https://www.cnblogs.com/wanghuaijun/p/6054788.html

你可能感兴趣的文章
SCP命令
查看>>
使用Flash Builder建SDK为3系列的项目默认为中文的修改方法
查看>>
SQL优化
查看>>
Luogu P1463 [HAOI2007]反素数ant:数学 + dfs【反素数】
查看>>
C#中建立treeView
查看>>
hadoop的安装和配置
查看>>
spinnaker
查看>>
hdu 1599 find the mincost route(无向图的最小环)
查看>>
转载:解读CSS布局之-水平垂直居中(2)
查看>>
第十八章 30限制数组越界
查看>>
浅谈unique列上插入重复值的MySQL解决方案
查看>>
hdu 4859(思路题)
查看>>
11.2.0.4 sql*loader/oci direct load导致kpodplck wait before retrying ORA-54
查看>>
sql server 2008空间释放
查看>>
团队-科学计算器-最终总结
查看>>
树的遍历 TJUACM 3988 Password
查看>>
UVA 725 - Division
查看>>
bzoj1798: [Ahoi2009]Seq 维护序列seq(线段树)
查看>>
day5
查看>>
Palindrome
查看>>