Book a Demo!
CoCalc Logo Icon
StoreFeaturesDocsShareSupportNewsAboutPoliciesSign UpSign In
torvalds
GitHub Repository: torvalds/linux
Path: blob/master/rust/kernel/interop.rs
170838 views
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
9
pub mod list;
10
11