Linux kernel mirror (for testing) git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git
kernel os linux
1
fork

Configure Feed

Select the types of activity you want to include in your feed.

at master 9 lines 295 B view raw
1// SPDX-License-Identifier: GPL-2.0 2 3//! Infrastructure for interfacing Rust code with C kernel subsystems. 4//! 5//! This module is intended for low-level, unsafe Rust infrastructure code 6//! that interoperates between Rust and C. It is *not* for use directly in 7//! Rust drivers. 8 9pub mod list;