1. ► sigsuspend takes as input the inverse of the mask to be applied to the incoming signals.
2. ► setjmp and longjmp do not save the context before making the jump, they are analogus to a non-local go to.
3. ► General signals do not have a time-guarantee for delivery.
4. ► Threads can access all the data of their parent process.
5. ► A thread is a light-weight process.
6. ► Daemon processes must leave control of the terminal from which they were launched.
7. ► system function is identical to exec barring the way the arguments are passed to the underlying command.
8. ► Processes must acquire a lock before modifying a shared data-structure.
9. ► The maximum nice value which a process can have is 30.
10. ► dlsym function checks for type mismatch before assigning it to the function pointer and will fail if the types mismatch.
11. ► One cannot register a handler on the SIGKILL signal.
12. ► pthread_join will wait for all the threads to complete before returning.
13. ► It is not possible to pass arguments to the functions registered using atexit call.
14. ► One cannot register a handler on the SIGTERM signal.
15. ► It is possible to define a *payload data* for signals.
16. ► wait function can be used to wait on at most one child.
17. ► Init process on UNIX is only responsible for starting new processes.
18. ► Race conditions and deadlocks have due to same reason.
19. ► Zombie processes are those whose parents have died.
20. ► fork on Linux is not very efficient and hence vfork should be used.