Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Fix all new clippy lints #25

Merged
merged 1 commit into from
Mar 12, 2025
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions rpmalloc-sys/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "rpmalloc-sys"
version = "0.2.3+b097fd0"
version = "0.2.3+d5c329e"
Copy link
Contributor Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Forgot this in #24 😬

description = "Unsafe FFI bindings to rpmalloc C library"
authors = ["Embark <[email protected]>", "Johan Andersson <[email protected]>"]
license = "MIT OR Apache-2.0"
Expand Down Expand Up @@ -31,4 +31,4 @@ unlimited_global_cache = [] # Compile with ENABLE_UNLIMITED_GLOBAL_CACHE=1
unlimited_thread_cache = [] # Compile with ENABLE_UNLIMITED_THREAD_CACHE=1
global_cache = [] # Compile with ENABLE_GLOBAL_CACHE=1
thread_cache = [] # Compile with ENABLE_THREAD_CACHE=1
adaptive_thread_cache = [] # Compile with ENABLE_ADAPTIVE_THREAD_CACHE=1
adaptive_thread_cache = [] # Compile with ENABLE_ADAPTIVE_THREAD_CACHE=1
22 changes: 11 additions & 11 deletions rpmalloc-sys/src/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -42,19 +42,19 @@ pub use libc::{c_int, c_uint, c_void, size_t};
#[repr(C)]
#[derive(Clone, Copy, Default, Debug)]
pub struct rpmalloc_global_statistics_t {
/// Current amount of virtual memory mapped, all of which might not have been committed (only if ENABLE_STATISTICS=1)
/// Current amount of virtual memory mapped, all of which might not have been committed (only if` ENABLE_STATISTICS=1`)
pub mapped: size_t,
/// Peak amount of virtual memory mapped, all of which might not have been committed (only if ENABLE_STATISTICS=1)
/// Peak amount of virtual memory mapped, all of which might not have been committed (only if` ENABLE_STATISTICS=1`)
pub mapped_peak: size_t,
/// Current amount of memory in global caches for small and medium sizes (<32KiB)
pub cached: size_t,
/// Current amount of memory allocated in huge allocations, i.e larger than LARGE_SIZE_LIMIT which is 2MiB by default (only if ENABLE_STATISTICS=1)
/// Current amount of memory allocated in huge allocations, i.e larger than `LARGE_SIZE_LIMIT `which is 2MiB by default (only if` ENABLE_STATISTICS=1`)
pub huge_alloc: size_t,
/// Peak amount of memory allocated in huge allocations, i.e larger than LARGE_SIZE_LIMIT which is 2MiB by default (only if ENABLE_STATISTICS=1)
/// Peak amount of memory allocated in huge allocations, i.e larger than `LARGE_SIZE_LIMIT `which is 2MiB by default (only if` ENABLE_STATISTICS=1`)
pub huge_alloc_peak: size_t,
/// Total amount of memory mapped since initialization (only if ENABLE_STATISTICS=1)
/// Total amount of memory mapped since initialization (only if` ENABLE_STATISTICS=1`)
pub mapped_total: size_t,
/// Total amount of memory unmapped since initialization (only if ENABLE_STATISTICS=1)
/// Total amount of memory unmapped since initialization (only if` ENABLE_STATISTICS=1`)
pub unmapped_total: size_t,
}

Expand Down Expand Up @@ -112,13 +112,13 @@ pub struct rpmalloc_thread_statistics_t {
pub sizecache: size_t,
/// Current number of bytes available in thread span caches for small and medium sizes (<32KiB)
pub spancache: size_t,
/// Total number of bytes transitioned from thread cache to global cache (only if ENABLE_STATISTICS=1)
/// Total number of bytes transitioned from thread cache to global cache (only if `ENABLE_STATISTICS=1`)
pub thread_to_global: size_t,
/// Total number of bytes transitioned from global cache to thread cache (only if ENABLE_STATISTICS=1)
/// Total number of bytes transitioned from global cache to thread cache (only if `ENABLE_STATISTICS=1`)
pub global_to_thread: size_t,
/// Per span count statistics (only if ENABLE_STATISTICS=1)
/// Per span count statistics (only if `ENABLE_STATISTICS=1`)
pub span_use: [rpmalloc_thread_span_statistics_t; 32],
/// Per size class statistics (only if ENABLE_STATISTICS=1)
/// Per size class statistics (only if `ENABLE_STATISTICS=1`)
pub size_use: [rpmalloc_thread_size_statistics_t; 128],
}

Expand Down Expand Up @@ -206,7 +206,7 @@ extern "C" {
pub fn rprealloc(ptr: *mut c_void, size: size_t) -> *mut c_void;

/// Reallocate the given block to at least the given size and alignment,
/// with optional control flags (see RPMALLOC_NO_PRESERVE).
/// with optional control flags (see `RPMALLOC_NO_PRESERVE`).
/// Alignment must be a power of two and a multiple of sizeof(void*),
/// and should ideally be less than memory page size. A caveat of rpmalloc
/// internals is that this must also be strictly less than the span size (default 64KiB)
Expand Down
1 change: 0 additions & 1 deletion src/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -106,7 +106,6 @@
clippy::match_same_arms,
clippy::match_wildcard_for_single_variants,
clippy::mem_forget,
clippy::mismatched_target_os,
clippy::needless_borrow,
clippy::needless_continue,
clippy::option_option,
Expand Down
Loading