Contributors: 10
| Author |
Tokens |
Token Proportion |
Commits |
Commit Proportion |
| Miguel Ojeda Sandonis |
111 |
33.64% |
7 |
22.58% |
| Wedson Almeida Filho |
80 |
24.24% |
6 |
19.35% |
| Benno Lossin |
45 |
13.64% |
4 |
12.90% |
| Finn Behrens |
31 |
9.39% |
1 |
3.23% |
| Gary Guo |
21 |
6.36% |
3 |
9.68% |
| Danilo Krummrich |
15 |
4.55% |
4 |
12.90% |
| Alice Ryhl |
12 |
3.64% |
2 |
6.45% |
| Alexandre Courbot |
7 |
2.12% |
1 |
3.23% |
| Tamir Duberstein |
7 |
2.12% |
2 |
6.45% |
| Niklas Mohrin |
1 |
0.30% |
1 |
3.23% |
| Total |
330 |
|
31 |
|
// SPDX-License-Identifier: GPL-2.0
//! The `kernel` prelude.
//!
//! These are the most common items used by Rust code in the kernel,
//! intended to be imported by all Rust code, for convenience.
//!
//! # Examples
//!
//! ```
//! use kernel::prelude::*;
//! ```
#[doc(no_inline)]
pub use core::{
mem::{align_of, align_of_val, size_of, size_of_val},
pin::Pin,
};
pub use ::ffi::{
c_char, c_int, c_long, c_longlong, c_schar, c_short, c_uchar, c_uint, c_ulong, c_ulonglong,
c_ushort, c_void, CStr,
};
pub use crate::alloc::{flags::*, Box, KBox, KVBox, KVVec, KVec, VBox, VVec, Vec};
#[doc(no_inline)]
pub use macros::{export, fmt, kunit_tests, module, vtable};
pub use pin_init::{init, pin_data, pin_init, pinned_drop, InPlaceWrite, Init, PinInit, Zeroable};
pub use super::{build_assert, build_error};
// `super::std_vendor` is hidden, which makes the macro inline for some reason.
#[doc(no_inline)]
pub use super::dbg;
pub use super::{dev_alert, dev_crit, dev_dbg, dev_emerg, dev_err, dev_info, dev_notice, dev_warn};
pub use super::{pr_alert, pr_crit, pr_debug, pr_emerg, pr_err, pr_info, pr_notice, pr_warn};
pub use super::{try_init, try_pin_init};
pub use super::static_assert;
pub use super::error::{code::*, Error, Result};
pub use super::{str::CStrExt as _, ThisModule};
pub use super::init::InPlaceInit;
pub use super::current;
pub use super::uaccess::UserPtr;
#[cfg(not(CONFIG_RUSTC_HAS_SLICE_AS_FLATTENED))]
pub use super::slice::AsFlattened;