Please enable JavaScript.
Coggle requires JavaScript to display documents.
Process Management - Coggle Diagram
Process Management
IPC
Pipes
FIFO
Message Queues
FIFO
Priority per message
Shared Memory
Full Duplex
Race Condition might be there, Explicit synchronization is required
Semaphores
Binary
Counting Semaphore
Signals
software interrupt
socket
Threads
Lightweight process
Synchronization
Mutex
pthread_mutex_lock
pthread_mutex_unlock
semaphore
sem_init
sem_wait
sem_post
sem_destroy
IPC
TLS
api
pthread_create
pthread_exit
pthread_join
pthread_cancel
attribute
schedule-policy
joinable/detached
set stack etc
Related Process ( Parent, Child )
UnRelated Processes ( Whoes pid are not known to each other)