Home | History | Annotate | Download | only in gdb.base

Lines Matching refs:action

50 	struct sigaction action;
51 memset (&action, 0, sizeof (action));
52 action.sa_handler = SIG_IGN;
53 sigaction (sig, &action, NULL);
83 struct sigaction action;
84 memset (&action, 0, sizeof (action));
85 action.sa_handler = handler;
86 sigaction (alarm[i], &action, NULL);