We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 4c3c1b3 commit b462492Copy full SHA for b462492
2 files changed
src/env/executable.rs
@@ -1,3 +1,8 @@
1
+//! Information about the executable.
2
+//!
3
+//! This module provides information about the currently running loaded
4
+//! executable image through different reserved linker symbols.
5
+
6
use core::ops::Range;
7
8
pub fn executable_ptr_range() -> Range<*mut ()> {
src/env/mod.rs
@@ -1,4 +1,4 @@
-//! Central parsing of the command-line parameters.
+//! Inspection and manipulation of the kernel's environment.
mod executable;
0 commit comments