|
NAMEcritical_enter , critical_exit
—
enter and exit a critical region
SYNOPSIS#include <sys/param.h>
#include <sys/systm.h>
void
void
DESCRIPTIONThese functions are used to prevent preemption in a critical region of code. All that is guaranteed is that the thread currently executing on a CPU will not be preempted. Specifically, a thread in a critical region will not migrate to another CPU while it is in a critical region. The current CPU may still trigger faults and exceptions during a critical section; however, these faults are usually fatal.The Note that these functions are not required to provide any inter-CPU synchronization, data protection, or memory ordering guarantees and thus should not be used to protect shared data structures. These functions should be used with care as an infinite loop within a critical region will deadlock the CPU. Also, they should not be interlocked with operations on mutexes, sx locks, semaphores, or other synchronization primitives. One exception to this is that spin mutexes include a critical section, so in certain cases critical sections may be interlocked with spin mutexes. HISTORYThese functions were introduced in FreeBSD 5.0.
Visit the GSP FreeBSD Man Page Interface. |