目錄表

*Signals

0x00 Outline

0x01 Introduction

introduction

signal concepts


0x02 The signal function

signal function

#include <signal.h>

void (*signal(int signo, void (*func)(int)))(int);
/* Returns: previous disposition of signal (see following) if OK, SIG_ERR on error */

signal setup


0x03 Interrupted system calls