Singnals Flashcards

1
Q

Signal 1

A

HUP

Hangup

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
2
Q

Signal 2

A

INT

Keyboard interrupt

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
3
Q

Signal 3

A

QUIT

Keyboard quit

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
4
Q

Signal 9

A

Kill

Kill, unblockable

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
5
Q

Signal 15

A

Terminate

Default

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
6
Q

Signal 18

A

CONT

Continue

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
7
Q

Signal 19

A

STOP

Stop, unblockable

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
8
Q

Signal 20

A

TSTP

Keyboard stop

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
9
Q

HUP

A

Used to report termination of the controlling process of a terminal. Also used to request process reinitialization without termination

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
10
Q

INT

A

Interrupt.

Causes program termination.

Can be blocked or handled.

Spent by sending the interrupt key combination(Ctrl+C)

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
11
Q

QUIT

A

Similar to AUSGIBT, but also produces a process dump at termination. Sent by pressing the QUIT key combination (Ctrl+)

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
12
Q

KILL

A

Causes abrupt program termination. Cannot be blocked, ignored, or handled. Always fatal.

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
13
Q

TERM

A

Terminate

Causes a program to terminate. It can be blocked, ignored, or handled.

The polite way to terminate a process, allows for self cleanup.

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
14
Q

CONT

A

Continue

Sent to a process to resume if stopped. Cannot be blocked. Even if handled, always resumes the porcess

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
15
Q

STOP

A

Stop, unblockable

Suspends the process. Cannot be blocked or handled

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
16
Q

TSTP

A

Keyboard Stop

Unlike SIGSTOP, can be blocked, ignored or handled. Sent by pressing SUSP key combination (Ctrl+z)