Eine aufbereitete Darstellung der Quelle

 
     
 
 
Anforderungen  |   Konzepte  |   Entwurf  |   Entwicklung  |   Qualitätssicherung  |   Lebenszyklus  |   Steuerung
 
 
 
 

Benutzer

Quelle  mod.rs

  Sprache: Rust
 

//! The linux_raw backend.
//!
//! This makes Linux syscalls directly, without going through libc.
//!
//! # Safety
//!
//! These files performs raw system calls, and sometimes passes them
//! uninitialized memory buffers. The signatures in this file are currently
//! manually maintained and must correspond with the signatures of the actual
//! Linux syscalls.
//!
//! Some of this could be auto-generated from the Linux header file
//! <linux/syscalls.h>, but we often need more information than it provides,
//! such as which pointers are array slices, out parameters, or in-out
//! parameters, which integers are owned or borrowed file descriptors, etc.

#[macro_use]
mod arch;
mod conv;
mod reg;
#[cfg(any(feature = "time", feature = "process", target_arch = "x86"))]
mod vdso;
#[cfg(any(feature = "time", feature = "process", target_arch = "x86"))]
mod vdso_wrappers;

#[cfg(feature = "event")]
pub(cratemod event;
#[cfg(any(
    feature = "fs",
    all(
        not(feature = "use-libc-auxv"),
        not(feature = "use-explicitly-provided-auxv"),
        any(
            feature = "param",
            feature = "process",
            feature = "runtime",
            feature = "time",
            target_arch = "x86",
        )
    )
))]
pub(cratemod fs;
pub(cratemod io;
#[cfg(feature = "io_uring")]
pub(cratemod io_uring;
#[cfg(feature = "mm")]
pub(cratemod mm;
#[cfg(feature = "mount")]
pub(cratemod mount;
#[cfg(all(feature = "fs", not(feature = "mount")))]
pub(cratemod mount; // for deprecated mount functions in "fs"
#[cfg(feature = "net")]
pub(cratemod net;
#[cfg(any(
    feature = "param",
    feature = "process",
    feature = "runtime",
    feature = "time",
    target_arch = "x86",
))]
pub(cratemod param;
#[cfg(feature = "pipe")]
pub(cratemod pipe;
#[cfg(feature = "process")]
pub(cratemod process;
#[cfg(feature = "pty")]
pub(cratemod pty;
#[cfg(feature = "rand")]
pub(cratemod rand;
#[cfg(feature = "runtime")]
pub(cratemod runtime;
#[cfg(feature = "shm")]
pub(cratemod shm;
#[cfg(feature = "system")]
pub(cratemod system;
#[cfg(feature = "termios")]
pub(cratemod termios;
#[cfg(feature = "thread")]
pub(cratemod thread;
#[cfg(feature = "time")]
pub(cratemod time;

pub(cratemod fd {
    pub use crate::maybe_polyfill::os::fd::{
        AsFd, AsRawFd, BorrowedFd, FromRawFd, IntoRawFd, OwnedFd, RawFd,
    };
}

// The linux_raw backend doesn't use actual libc, so we define selected
// libc-like definitions in a module called `c`.
pub(cratemod c;

// Private modules used by multiple public modules.
#[cfg(any(feature = "procfs", feature = "process", feature = "runtime"))]
pub(cratemod pid;
#[cfg(any(feature = "process", feature = "thread"))]
pub(cratemod prctl;
#[cfg(any(
    feature = "fs",
    feature = "process",
    feature = "thread",
    all(
        not(feature = "use-libc-auxv"),
        not(feature = "use-explicitly-provided-auxv"),
        any(
            feature = "param",
            feature = "runtime",
            feature = "time",
            target_arch = "x86",
        )
    )
))]
pub(cratemod ugid;

/// The maximum number of buffers that can be passed into a vectored I/O system
/// call on the current platform.
const MAX_IOV: usize = linux_raw_sys::general::UIO_MAXIOV as usize;

Messung V0.5 in Prozent
C=91 H=97 G=93

¤ Dauer der Verarbeitung: 0.10 Sekunden  (vorverarbeitet am  2026-06-22) ¤

*© Formatika GbR, Deutschland






Wurzel

Suchen

PVS Prover

Isabelle Prover

NIST Cobol Testsuite

Cephes Mathematical Library

Vienna Development Method

Haftungshinweis

Die Informationen auf dieser Webseite wurden nach bestem Wissen sorgfältig zusammengestellt. Es wird jedoch weder Vollständigkeit, noch Richtigkeit, noch Qualität der bereit gestellten Informationen zugesichert.

Bemerkung:

Die farbliche Syntaxdarstellung und die Messung sind noch experimentell.






                                                                                                                                                                                                                                                                                                                                                                                                     


Neuigkeiten

     Aktuelles
     Motto des Tages

Software

     Quellcodebibliothek
     Eigene Quellcodes
     Fremde Quellcodes
     Suchen

Aktivitäten

     Artikel über Sicherheit
     Anleitung zur Aktivierung von SSL

Muße

     Gedichte
     Musik
     Bilder

Jenseits des Üblichen ....
    

Besucherstatistik

Besucherstatistik