在线观看不卡亚洲电影_亚洲妓女99综合网_91青青青亚洲娱乐在线观看_日韩无码高清综合久久

鍍金池/ 教程/ Linux/ 信號
命名管道
消息隊列
進程創(chuàng)建與終止
信號量
進程組,會話和作業(yè)控制
共享內(nèi)存
進程間通信簡介
子進程監(jiān)視
其他進程
覆蓋進程映像
進程信息
進程映像
內(nèi)存映射
相關(guān)系統(tǒng)調(diào)用(System V)
進程資源
System V & Posix
信號
進程間通信教程
管道

信號

信號是指示事件發(fā)生的進程的通知。 信號也被稱為軟件中斷,不可預測知道它的發(fā)生,因此它也被稱為異步事件。

信號可以用數(shù)字或名稱來指定,通常信號名稱以SIG開頭。 可用的信號可以用命令kill -l(l列出信號名稱)來檢查,如下所示 -
信號

無論何時發(fā)出信號(以編程方式或系統(tǒng)產(chǎn)生的信號),都會執(zhí)行默認操作。 如果您不想執(zhí)行默認操作但希望在接收信號時執(zhí)行自己的操作。 可以處理信號,但不能處理所有的信號。 如果你想忽略信號,這是可能的嗎? 這是可以忽略信號。 忽略信號意味著既不執(zhí)行默認操作也不處理信號。 可以忽略或處理幾乎所有的信號。 SIGSTOPSIGKILL不能被忽略或處理/捕獲的信號。

總之,對信號執(zhí)行的操作如下 -

  • 默認操作
  • 處理信號
  • 忽略信號

正如所討論的,信號可以被處理,改變默認行為的執(zhí)行。 信號處理可以通過系統(tǒng)調(diào)用,signal()sigaction()兩種方式完成。

#include <signal.h>

typedef void (*sighandler_t) (int);
sighandler_t signal(int signum, sighandler_t handler);

系統(tǒng)調(diào)用signal()將在符號中提到的信號產(chǎn)生時調(diào)用注冊的處理程序。 處理程序可以是SIG_IGN(忽略信號),SIG_DFL(將信號設(shè)置回默認機制)或用戶定義的信號處理程序或函數(shù)地址之一。

這個系統(tǒng)調(diào)用成功返回一個函數(shù)的地址,該函數(shù)接受一個整數(shù)參數(shù)并且沒有返回值。 這個調(diào)用在出錯的時候返回SIG_ERR。

雖然signal()可以調(diào)用用戶注冊的各自的信號處理程序,但是不可能進行微調(diào),例如掩蔽應(yīng)該被阻塞的信號,修改信號的行為以及其他功能。 這可以使用sigaction()系統(tǒng)調(diào)用。

#include <signal.h>

int sigaction(int signum, const struct sigaction *act, struct sigaction *oldact)

這個系統(tǒng)調(diào)用用于檢查或改變信號動作。 如果行為不為空,則從行為安裝信號的新行為。 如果oldact不為null,則以前的操作將保存在oldact中。

sigaction結(jié)構(gòu)包含以下字段 -

字段1 - 處理程序在sa_handlersa_sigaction中提到。

void (*sa_handler)(int);
void (*sa_sigaction)(int, siginfo_t *, void *);

sa_handler的處理程序指定要根據(jù)signumSIG_DFL指示默認操作執(zhí)行的操作,或者SIG_IGN忽略指向信號處理函數(shù)的信號或指針。
sa_sigaction的處理程序?qū)⑿盘柧幪栔付榈谝粋€參數(shù),將指向siginfo_t結(jié)構(gòu)體的指針指定為第二個參數(shù),并指定用戶上下文(有關(guān)詳細信息,請參閱getcontext()setcontext())作為第三個參數(shù)。

siginfo_t結(jié)構(gòu)包含信號信息,例如要傳遞的信號數(shù)量,信號值,進程ID,發(fā)送進程的真實用戶ID等。

字段2 - 要阻止的信號集。

int sa_mask;

這個變量指定了信號處理程序執(zhí)行期間應(yīng)該被阻塞的信號掩碼。

字段3 - 特殊標志。

int sa_flags;

該字段指定一組修改信號行為的標志。

字段4 - 恢復處理程序。

void (*sa_restorer) (void);

這個系統(tǒng)調(diào)用在成功時返回0,在失敗的情況下為-1。

讓我們考慮一些示例程序。

首先,從一個生成異常的示例程序開始。 在這個程序中,試圖執(zhí)行除零運算,這會使系統(tǒng)產(chǎn)生一個異常。

/* signal_fpe.c */
#include<stdio.h>

int main() {
   int result;
   int v1, v2;
   v1 = 121;
   v2 = 0;
   result = v1/v2;
   printf("Result of Divide by Zero is %d\n", result);
   return 0;
}

編譯和運行上面示例代碼,得到以下結(jié)果 -

Floating point exception (core dumped)

因此,當試圖執(zhí)行一個算術(shù)運算時,系統(tǒng)已經(jīng)產(chǎn)生了一個浮點異常,核心轉(zhuǎn)儲是信號的默認操作。

現(xiàn)在,修改代碼以使用signal()系統(tǒng)調(diào)用來處理這個特定的信號。

/* signal_fpe_handler.c */
#include<stdio.h>
#include<signal.h>
#include<stdlib.h>

void handler_dividebyzero(int signum);

int main() {
   int result;
   int v1, v2;
   void (*sigHandlerReturn)(int);
   sigHandlerReturn = signal(SIGFPE, handler_dividebyzero);
   if (sigHandlerReturn == SIG_ERR) {
      perror("Signal Error: ");
      return 1;
   }
   v1 = 121;
   v2 = 0;
   result = v1/v2;
   printf("Result of Divide by Zero is %d\n", result);
   return 0;
}

void handler_dividebyzero(int signum) {
   if (signum == SIGFPE) {
      printf("Received SIGFPE, Divide by Zero Exception\n");
      exit (0);
   } 
   else
      printf("Received %d Signal\n", signum);
      return;
}

執(zhí)行上面示例代碼,得到以下結(jié)果 -

Received SIGFPE, Divide by Zero Exception

正如所討論的那樣,信號是由系統(tǒng)產(chǎn)生的(在執(zhí)行某些操作(例如除以零等)時),或者用戶也可以以編程方式產(chǎn)生信號。 如果要以編程方式生成信號,請使用庫函數(shù)raise()。

現(xiàn)在,另外一個程序來演示處理和忽略信號。

假設(shè)用raise()發(fā)出了一個信號,那么會發(fā)生什么? 發(fā)出信號后,當前進程的執(zhí)行停止。 那么停止的過程會發(fā)生什么? 可以有兩種情況 - 首先,在需要時繼續(xù)執(zhí)行。 其次,終止(用kill命令)這個進程。

要繼續(xù)執(zhí)行已停止的進程,請將SIGCONT發(fā)送到該特定進程。 也可以發(fā)出fg(前景)或bg(后臺)命令來繼續(xù)執(zhí)行。 在這里,這些命令只會重新開始執(zhí)行最后一個進程。 如果多個進程停止,則只有最后一個進程被恢復。 如果想恢復先前停止的過程,請使用fg/bg和作業(yè)編號恢復作業(yè)。

下面的程序用于使用raise()函數(shù)來提升信號SIGSTOP。 信號SIGSTOP也可以由用戶按下CTRL + Z(Ctrl + Z)鍵生成。 發(fā)出此信號后,程序?qū)⑼V箞?zhí)行。 發(fā)送信號(SIGCONT)繼續(xù)執(zhí)行。

在下面的例子中,使用命令fg重新開始停止的進程。

/* signal_raising.c */
#include<stdio.h>
#include<signal.h>
#include<stdlib.h>

int main() {
   printf("Testing SIGSTOP\n");
   raise(SIGSTOP);
   return 0;
}

執(zhí)行上面示例代碼,得到以下結(jié)果 -

Testing SIGSTOP
[1]+ Stopped ./a.out
./a.out

現(xiàn)在,增強以前的程序,通過從另一個終端發(fā)出SIGCONT來繼續(xù)執(zhí)行停止的進程。

/* signal_stop_continue.c */
#include<stdio.h>
#include<signal.h>
#include <sys/types.h>
#include <unistd.h>

void handler_sigtstp(int signum);

int main() {
   pid_t pid;
   printf("Testing SIGSTOP\n");
   pid = getpid();
   printf("Open Another Terminal and issue following command\n");
   printf("kill -SIGCONT %d or kill -CONT %d or kill -18 %d\n", pid, pid, pid);
   raise(SIGSTOP);
   printf("Received signal SIGCONT\n");
   return 0;
}

執(zhí)行上面示例代碼,得到以下結(jié)果 -

Testing SIGSTOP
Open Another Terminal and issue following command
kill -SIGCONT 30379 or kill -CONT 30379 or kill -18 30379
[1]+ Stopped ./a.out

Received signal SIGCONT
[1]+ Done ./a.out

在另一個終端執(zhí)行 -

kill -SIGCONT 30379

到目前為止,我們已經(jīng)看到了處理系統(tǒng)產(chǎn)生的信號的程序。 現(xiàn)在讓我們看看通過程序產(chǎn)生的信號(使用raise()函數(shù)或者通過kill命令)。 該程序產(chǎn)生信號SIGTSTP(終端停止),其默認動作是停止執(zhí)行。 但是,由于現(xiàn)在正在處理信號,而不是默認的動作,它會來到定義的處理程序。 在這種情況下,只是打印消息并退出。

/* signal_raising_handling.c */
#include<stdio.h>
#include<signal.h>
#include<stdlib.h>

void handler_sigtstp(int signum);

int main() {
   void (*sigHandlerReturn)(int);
   sigHandlerReturn = signal(SIGTSTP, handler_sigtstp);
   if (sigHandlerReturn == SIG_ERR) {
      perror("Signal Error: ");
      return 1;
   }
   printf("Testing SIGTSTP\n");
   raise(SIGTSTP);
   return 0;
}

void handler_sigtstp(int signum) {
   if (signum == SIGTSTP) {
      printf("Received SIGTSTP\n");
      exit(0);
   }
   else
      printf("Received %d Signal\n", signum);
      return;
}

執(zhí)行上面示例代碼,得到以下結(jié)果 -

Testing SIGTSTP
Received SIGTSTP

已經(jīng)看到了執(zhí)行默認操作或處理信號的情況。 現(xiàn)在是時候忽略這個信號了。 在這個示例程序中,通過SIG_IGN注冊信號SIGTSTP忽略,然后發(fā)送信號SIGTSTP(終端停止)。 當信號SIGTSTP正在被生成,將被忽略。參考以下代碼 -

/* signal_raising_ignoring.c */
#include<stdio.h>
#include<signal.h>
#include<stdlib.h>

void handler_sigtstp(int signum);

int main() {
   void (*sigHandlerReturn)(int);
   sigHandlerReturn = signal(SIGTSTP, SIG_IGN);
   if (sigHandlerReturn == SIG_ERR) {
      perror("Signal Error: ");
      return 1;
   }
   printf("Testing SIGTSTP\n");
   raise(SIGTSTP);
   printf("Signal SIGTSTP is ignored\n");
   return 0;
}

執(zhí)行上面示例代碼,得到以下結(jié)果 -

Testing SIGTSTP
Signal SIGTSTP is ignored

到目前為止,我們已經(jīng)觀察到,一個信號處理程序用來處理一個信號。 那么一個信號可以處理多個信號嗎? 答案是肯定的 讓我們通過一個程序來實現(xiàn)。

以下程序執(zhí)行以下操作 -

第1步 - 注冊一個處理程序(handleSignals)來捕獲或處理信號SIGINT(CTRL + C)或SIGQUIT(CTRL + )

第2步 - 如果用戶產(chǎn)生信號SIGQUIT(或者通過kill命令或者用CTRL + \鍵盤控制),處理程序簡單地將消息打印為返回。

第3步 - 如果用戶第一次生成信號SIGINT(通過kill命令或者使用CTRL + C的鍵盤控制),則修改信號從下次開始執(zhí)行默認操作(使用SIG_DFL)。

第4步 - 如果用戶第二次生成信號SIGINT,則執(zhí)行默認操作,即程序終止。

/* Filename: sigHandler.c */
#include<stdio.h>
#include<unistd.h>
#include<signal.h>

void handleSignals(int signum);

int main(void) {
   void (*sigHandlerInterrupt)(int);
   void (*sigHandlerQuit)(int);
   void (*sigHandlerReturn)(int);
   sigHandlerInterrupt = sigHandlerQuit = handleSignals;
   sigHandlerReturn = signal(SIGINT, sigHandlerInterrupt);
   if (sigHandlerReturn == SIG_ERR) {
      perror("signal error: ");
      return 1;
   }
   sigHandlerReturn = signal(SIGQUIT, sigHandlerQuit);

   if (sigHandlerReturn == SIG_ERR) {
      perror("signal error: ");
      return 1;
   }
   while (1) {
      printf("\nTo terminate this program, perform the following: \n");
      printf("1. Open another terminal\n");
      printf("2. Issue command: kill %d or issue CTRL+C 2 times (second time it terminates)\n", getpid());
      sleep(10);
   }
   return 0;
}

void handleSignals(int signum) {
   switch(signum) {
      case SIGINT:
      printf("\nYou pressed CTRL+C \n");
      printf("Now reverting SIGINT signal to default action\n");
      signal(SIGINT, SIG_DFL);
      break;
      case SIGQUIT:
      printf("\nYou pressed CTRL+\\ \n");
      break;
      default:
      printf("\nReceived signal number %d\n", signum);
      break;
   }
   return;
}

編譯和執(zhí)行上面示例代碼,得到以下結(jié)果 -

To terminate this program, perform the following:
1. Open another terminal
2. Issue command: kill 74 or issue CTRL+C 2 times (second time it terminates)
^C
You pressed CTRL+C
Now reverting SIGINT signal to default action

To terminate this program, perform the following:
1. Open another terminal
2. Issue command: kill 74 or issue CTRL+C 2 times (second time it terminates)
^\You pressed CTRL+\
To terminate this program, perform the following:
1. Open another terminal
2. Issue command: kill 120
Terminated

在另一個終端中執(zhí)行 -

kill 71

第二種方法 -

To terminate this program, perform the following:
1. Open another terminal
2. Issue command: kill 71 or issue CTRL+C 2 times (second time it terminates)
^C
You pressed CTRL+C
Now reverting SIGINT signal to default action

To terminate this program, perform the following:
1. Open another terminal
2. Issue command: kill 71 or issue CTRL+C 2 times (second time it terminates)
^C

我們知道要處理一個信號,有兩個系統(tǒng)調(diào)用,即signal()sigaction()。 直到現(xiàn)在我們已經(jīng)看到了signal()系統(tǒng)調(diào)用,現(xiàn)在是時候進行sigaction()系統(tǒng)調(diào)用了。 讓我們修改上面的程序來執(zhí)行使用sigaction(),如下所示 -

/* Filename: sigHandlerSigAction.c */
#include<stdio.h>
#include<unistd.h>
#include<signal.h>

void handleSignals(int signum);

int main(void) {
   void (*sigHandlerReturn)(int);
   struct sigaction mysigaction;
   mysigaction.sa_handler = handleSignals;
   sigemptyset(&mysigaction.sa_mask);
   mysigaction.sa_flags = 0;
   sigaction(SIGINT, &mysigaction, NULL);

   if (mysigaction.sa_handler == SIG_ERR) {
      perror("signal error: ");
      return 1;
   }
   mysigaction.sa_handler = handleSignals;
   sigemptyset(&mysigaction.sa_mask);
   mysigaction.sa_flags = 0;
   sigaction(SIGQUIT, &mysigaction, NULL);

   if (mysigaction.sa_handler == SIG_ERR) {
      perror("signal error: ");
      return 1;
   }
   while (-1) {
      printf("\nTo terminate this program, perform either of the following: \n");
      printf("1. Open another terminal and issue command: kill %d\n", getpid());
      printf("2. Issue CTRL+C 2 times (second time it terminates)\n");
      sleep(10);
   }
   return 0;
}

void handleSignals(int signum) {
   switch(signum) {
      case SIGINT:
      printf("\nYou have entered CTRL+C \n");
      printf("Now reverting SIGINT signal to perform default action\n");
      signal(SIGINT, SIG_DFL);
      break;
      case SIGQUIT:
      printf("\nYou have entered CTRL+\\ \n");
      break;
      default:
      printf("\nReceived signal number %d\n", signum);
      break;
   }
   return;
}

讓我們編譯和執(zhí)行上面的代碼。 在執(zhí)行過程中,按CTRL + C兩次,其余的檢查/方式(如上)來嘗試執(zhí)行這個程序。

執(zhí)行上面示例代碼,得到以下結(jié)果 -

To terminate this program, perform either of the following:
1. Open another terminal and issue command: kill 3199
2. Issue CTRL+C 2 times (second time it terminates)
^C
You have entered CTRL+C
Now reverting SIGINT signal to perform default action
To terminate this program, perform either of the following:
1. Open another terminal and issue command: kill 3199
2. Issue CTRL+C 2 times (second time it terminates)
^C

上一篇:進程間通信簡介下一篇:進程映像