mirror of
https://github.com/torvalds/linux.git
synced 2024-11-10 22:21:40 +00:00
19096bce81
This is the traditional condition variable or monitor synchronisation primitive. It is implemented with C's `wait_queue_head_t`. It allows users to release a lock and go to sleep while guaranteeing that notifications won't be missed. This is achieved by enqueuing a wait entry before releasing the lock. Cc: Peter Zijlstra <peterz@infradead.org> Cc: Ingo Molnar <mingo@redhat.com> Cc: Will Deacon <will@kernel.org> Cc: Waiman Long <longman@redhat.com> Reviewed-by: Martin Rodriguez Reboredo <yakoyoku@gmail.com> Signed-off-by: Wedson Almeida Filho <walmeida@microsoft.com> Reviewed-by: Alice Ryhl <aliceryhl@google.com> Link: https://lore.kernel.org/r/20230411054543.21278-12-wedsonaf@gmail.com Signed-off-by: Miguel Ojeda <ojeda@kernel.org>
17 lines
442 B
C
17 lines
442 B
C
/* SPDX-License-Identifier: GPL-2.0 */
|
|
/*
|
|
* Header that contains the code (mostly headers) for which Rust bindings
|
|
* will be automatically generated by `bindgen`.
|
|
*
|
|
* Sorted alphabetically.
|
|
*/
|
|
|
|
#include <linux/slab.h>
|
|
#include <linux/refcount.h>
|
|
#include <linux/wait.h>
|
|
#include <linux/sched.h>
|
|
|
|
/* `bindgen` gets confused at certain things. */
|
|
const gfp_t BINDINGS_GFP_KERNEL = GFP_KERNEL;
|
|
const gfp_t BINDINGS___GFP_ZERO = __GFP_ZERO;
|