libcopes 1.0.0

A library for efficiently monitoring process exec and exit events on Linux
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
// SPDX-License-Identifier: MPL-2.0
// Copyright 2025 Juan Palacios <jpalaciosdev@gmail.com>

//! Input / Output types and functions related to Linux processes and process events.

mod connector;
mod proc;
mod socket;

#[doc(inline)]
pub use self::connector::*;

#[doc(inline)]
pub use self::proc::*;