rust/helpers/wait.c

Source file repositories/reference/linux-study-clean/rust/helpers/wait.c

File Facts

System
Linux kernel
Corpus path
rust/helpers/wait.c
Extension
.c
Size
164 bytes
Lines
9
Domain
Rust Kernel Layer
Bucket
Rust API Membrane
Inferred role
Rust Kernel Layer: implementation source
Status
source implementation candidate

Why This File Exists

Rust-side wrappers and abstractions around kernel C APIs, ownership contracts, allocation, synchronization, and module integration.

Dependency Surface

Detected Declarations

Annotated Snippet

// SPDX-License-Identifier: GPL-2.0

#include <linux/wait.h>

__rust_helper void rust_helper_init_wait(struct wait_queue_entry *wq_entry)
{
	init_wait(wq_entry);
}

Annotation

Implementation Notes