Understanding System Calls and Process Management

0.0(0)
learnLearn
examPractice Test
spaced repetitionSpaced Repetition
heart puzzleMatch
flashcardsFlashcards
Card Sorting

1/11

encourage image

There's no tags or description

Looks like no tags are added yet.

Study Analytics
Name
Mastery
Learn
Test
Matching
Spaced

No study sessions yet.

12 Terms

1
New cards

signal()

Assigns a response to a signal

2
New cards

SIG_IGN

Signal handler that ignores the signal.

3
New cards

SIG_DFL

Default system response to a signal.

4
New cards

PID

Unique identifier for a process.

5
New cards

pipe()

Communication channel between two processes.

6
New cards

dup2()

Redirects one file descriptor to another.

7
New cards

exec()

Replaces current process with a new one.

8
New cards

fork()

Creates a new child process.

9
New cards

open()

Opens a file, returning a file descriptor.

10
New cards

close()

Closes a file descriptor to free memory.

11
New cards

read()

Reads data from a file descriptor into a buffer.

12
New cards

write()

Writes data to a file descriptor from a buffer.