主頁(yè) > 知識(shí)庫(kù) > 淺談linux模擬多線程崩潰和多進(jìn)程崩潰

淺談linux模擬多線程崩潰和多進(jìn)程崩潰

熱門標(biāo)簽:工廠位置地圖標(biāo)注 重慶營(yíng)銷外呼系統(tǒng)排名 網(wǎng)站上插入地圖標(biāo)注內(nèi)容 企業(yè)400電話辦理哪正規(guī) 繽客網(wǎng)注冊(cè)時(shí)地圖標(biāo)注出不來(lái) 地圖標(biāo)注企業(yè)名稱侵權(quán)案件 地圖標(biāo)注需要現(xiàn)場(chǎng)嗎 400電話辦理哪家好廠商 鶴壁電銷外呼系統(tǒng)怎么安裝

結(jié)論是:
多線程下如果其中一個(gè)線程崩潰了會(huì)導(dǎo)致其他線程(整個(gè)進(jìn)程)都崩潰;
多進(jìn)程下如果其中一個(gè)進(jìn)程崩潰了對(duì)其余進(jìn)程沒(méi)有影響;

多線程

#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)容請(qǐng)搜索腳本之家以前的文章或繼續(xù)瀏覽下面的相關(guān)文章希望大家以后多多支持腳本之家!

標(biāo)簽:東莞 克拉瑪依 渭南 常州 日照 棗莊 96 鹽城

巨人網(wǎng)絡(luò)通訊聲明:本文標(biāo)題《淺談linux模擬多線程崩潰和多進(jìn)程崩潰》,本文關(guān)鍵詞  淺談,linux,模擬,多,線程,;如發(fā)現(xiàn)本文內(nèi)容存在版權(quán)問(wèn)題,煩請(qǐng)?zhí)峁┫嚓P(guān)信息告之我們,我們將及時(shí)溝通與處理。本站內(nèi)容系統(tǒng)采集于網(wǎng)絡(luò),涉及言論、版權(quán)與本站無(wú)關(guān)。
  • 相關(guān)文章
  • 下面列出與本文章《淺談linux模擬多線程崩潰和多進(jìn)程崩潰》相關(guān)的同類信息!
  • 本頁(yè)收集關(guān)于淺談linux模擬多線程崩潰和多進(jìn)程崩潰的相關(guān)信息資訊供網(wǎng)民參考!
  • 推薦文章