淺談linux模擬多線程崩潰和多進(jìn)程崩潰
結(jié)論是:
多線程下如果其中一個(gè)線程崩潰了會(huì)導(dǎo)致其他線程(整個(gè)進(jìn)程)都崩潰;
多進(jìn)程下如果其中一個(gè)進(jìn)程崩潰了對(duì)其余進(jìn)程沒有影響;
多線程
#include <stdio.h>
#include <string.h>
#include <stdlib.h>
#include <pthread.h>
#include <assert.h>
void *fun1(void *arg)
{
printf("fun1 enter\n");
while(1)
{
printf("%s\n", __FUNCTION__);
usleep(1000 * 1000);
}
printf("fun1 exit\n");
return ((void *)1);
}
void *fun2(void *arg)
{
printf("fun1 enter\n");
usleep(1000 * 3000);
char * ptr = (char *)malloc(sizeof(char));
printf("ptr1: 0x%x\n", ptr);
ptr = NULL;
printf("ptr2: 0x%x\n", ptr);
free(ptr);
memcpy(ptr, "123", 3);
printf("ptr3: 0x%x\n", ptr);
printf("fun2 exit\n");
return ((void *)2);
}
int main(void)
{
pthread_t tid1, tid2;
int err;
err = pthread_create(&tid1, NULL, fun1, NULL);
assert(0 == err);
err = pthread_create(&tid2, NULL, fun2, NULL);
assert(0 == err);
printf("main join ...\n");
// getchar();
pthread_join(tid1, NULL);
pthread_join(tid2, NULL);
return 0;
}
多進(jìn)程
#include <stdio.h>
#include <string.h>
#include <stdlib.h>
#include <pthread.h>
#include <assert.h>
void fun(void *arg)
{
printf("fun1 enter\n");
usleep(1000 * 3000);
char * ptr = (char *)malloc(sizeof(char));
printf("ptr1: 0x%x\n", ptr);
ptr = NULL;
printf("ptr2: 0x%x\n", ptr);
free(ptr);
memcpy(ptr, "123", 3);
printf("ptr3: 0x%x\n", ptr);
printf("fun2 exit\n");
return ;
}
int main(int argc, char *argv[])
{
assert(2 == argc);
pid_t pid;
int i;
for(i=0; i<atoi(argv[1]); i++)
{
pid = fork();
if(0 > pid)
{
printf("fork error");
exit(1);
}
else if(0 == pid)
{
printf("child pid is %lu\n", (unsigned long)getpid());
fun(NULL);
exit(0);
}
}
printf("parent pid is %lu\n", (unsigned long)getpid());
while(-1 != wait(NULL)); //等待所有子進(jìn)程結(jié)束
printf("main return\n");
getchar();
return 0;
}
到此這篇關(guān)于淺談linux模擬多線程崩潰和多進(jìn)程崩潰 的文章就介紹到這了,更多相關(guān)linux模擬多線程崩潰和多進(jìn)程崩潰 內(nèi)容請搜索腳本之家以前的文章或繼續(xù)瀏覽下面的相關(guān)文章希望大家以后多多支持腳本之家!
相關(guān)文章
Apache?APISIX?Dashboard?未授權(quán)訪問漏洞分析(CVE-2021-45232)
Apache?APISIX?是一個(gè)動(dòng)態(tài)、實(shí)時(shí)、高性能的?API?網(wǎng)關(guān),?提供負(fù)載均衡、動(dòng)態(tài)上游、灰度發(fā)布、服務(wù)熔斷、身份認(rèn)證、可觀測性等豐富的流量管理功能,這篇文章主要介紹了Apache?APISIX?Dashboard?未授權(quán)訪問漏洞(CVE-2021-45232),需要的朋友可以參考下2023-03-03
Apache之AllowOverride參數(shù)使用說明
通常利用Apache的rewrite模塊對(duì) URL 進(jìn)行重寫的時(shí)候, rewrite規(guī)則會(huì)寫在 .htaccess 文件里。但要使 apache 能夠正常的讀取.htaccess 文件的內(nèi)容,就必須對(duì).htaccess 所在目錄進(jìn)行配置。2011-01-01
linux使用tcpdump命令監(jiān)視指定網(wǎng)絡(luò)數(shù)據(jù)包的方法
linux使用tcpdump命令監(jiān)視指定網(wǎng)絡(luò)數(shù)據(jù)包的方法,大家參考使用吧2013-12-12
用DNSPod和Squid打造自己的CDN (五) 安裝Squid的前期準(zhǔn)備
從本章開始,大家將會(huì)學(xué)到如何在Linux下面安裝、編譯程序,還會(huì)學(xué)到程序編譯的優(yōu)化方法,最后會(huì)通過源代碼編譯的方式把Squid安裝上2013-04-04

