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