OS Process Synchronization

    OS Process Synchronization
    Semaphores are mostly used to implement ____________
    OS Process Synchronization
    Serializable schedules are ones where ____________
    OS Process Synchronization
    In the bakery algorithm to solve the critical section problem ____________
    OS Process Synchronization
    situation :
    OS Process Synchronization
    A collection of instructions that performs a single logical function is called ____________
    OS Process Synchronization
    What is a mutex?
    OS Process Synchronization
    Concurrent access to shared data may result in ____________
    OS Process Synchronization
    The shrinking phase is a phase in which?
    OS Process Synchronization
    At a particular time of computation the value of a counting semaphore is 7.Then 20 P operations and 15 V operations were completed on this semaphore. The resulting value of the semaphore is? (GATE 1987)
    P represents Wait and V represents Signal. P operation will decrease the value by 1 every time and V operation will increase the value by 1 every time.
    OS Process Synchronization
    What are Spinlocks?