Sha256: cfc946280c55ac4c44aebd44c68ce9dca4083b586171d7c5d7cd1e78da65d998

Contents?: true

Size: 1.26 KB

Versions: 13

Compression:

Stored size: 1.26 KB

Contents

#![allow(non_camel_case_types)]
#![allow(non_upper_case_globals)]
#![deny(missing_debug_implementations)]
#![deny(missing_copy_implementations)]
#![allow(
    clippy::module_name_repetitions,
    clippy::cast_sign_loss,
    clippy::cast_possible_truncation,
    clippy::trivially_copy_pass_by_ref
)]
#![no_std]

#[cfg(not(any(target_os = "macos", target_os = "ios")))]
compile_error!("mach requires macOS or iOS");

extern crate libc;

#[allow(unused_imports)]
use core::{clone, cmp, default, fmt, hash, marker, mem, option};

pub mod boolean;
pub mod bootstrap;
pub mod clock;
pub mod clock_priv;
pub mod clock_reply;
pub mod clock_types; // TODO: test
pub mod dyld_kernel;
// pub mod error; // TODO
pub mod exc;
pub mod exception_types;
pub mod kern_return;
pub mod mach_init;
pub mod mach_port;
pub mod mach_time;
pub mod mach_types;
pub mod memory_object_types;
pub mod message;
pub mod ndr;
pub mod port;
pub mod semaphore;
pub mod structs;
pub mod sync_policy;
pub mod task;
pub mod task_info;
pub mod thread_act;
pub mod thread_policy;
pub mod thread_status;
pub mod traps;
pub mod vm;
pub mod vm_attributes;
pub mod vm_behavior;
pub mod vm_inherit;
pub mod vm_page_size;
pub mod vm_prot;
pub mod vm_purgable;
pub mod vm_region;
pub mod vm_statistics;
pub mod vm_sync;
pub mod vm_types;

Version data entries

13 entries across 13 versions & 1 rubygems

Version Path
wasmtime-29.0.0 ./ext/cargo-vendor/mach2-0.4.2/src/lib.rs
wasmtime-28.0.0 ./ext/cargo-vendor/mach2-0.4.2/src/lib.rs
wasmtime-27.0.0 ./ext/cargo-vendor/mach2-0.4.2/src/lib.rs
wasmtime-26.0.0 ./ext/cargo-vendor/mach2-0.4.2/src/lib.rs
wasmtime-25.0.2 ./ext/cargo-vendor/mach2-0.4.2/src/lib.rs
wasmtime-25.0.1 ./ext/cargo-vendor/mach2-0.4.2/src/lib.rs
wasmtime-25.0.0 ./ext/cargo-vendor/mach2-0.4.2/src/lib.rs
wasmtime-24.0.0 ./ext/cargo-vendor/mach2-0.4.2/src/lib.rs
wasmtime-23.0.2 ./ext/cargo-vendor/mach2-0.4.2/src/lib.rs
wasmtime-22.0.0 ./ext/cargo-vendor/mach2-0.4.2/src/lib.rs
wasmtime-21.0.1 ./ext/cargo-vendor/mach2-0.4.2/src/lib.rs
wasmtime-20.0.2 ./ext/cargo-vendor/mach2-0.4.2/src/lib.rs
wasmtime-20.0.0 ./ext/cargo-vendor/mach2-0.4.2/src/lib.rs