1. In multiprocessor systems, failure of one processor will not halt the system, but only slow it down by sharing the work of the failed processor among the other surviving processors. This ability to continue functioning is called graceful degradation.
2. System calls are required for user processes to access operating system services.
3. Solutions to the critical section problem must satisfy three requirements: mutual exclusion, progress, and bounded waiting. Mutual exclusion means only one process in the critical section at a time. Progress means waiting processes can enter if the section is empty. Bounded waiting means a limit on wait times.