Skip to content

Added ucontext_t for powerpc64-linux #3986

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

Draft
wants to merge 1 commit into
base: main
Choose a base branch
from
Draft
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
88 changes: 88 additions & 0 deletions src/unix/linux_like/linux/gnu/b64/powerpc64/mod.rs
Original file line number Diff line number Diff line change
Expand Up @@ -189,6 +189,21 @@ s! {
pub ss_flags: c_int,
pub ss_size: size_t,
}

#[repr(align(8))]
pub struct clone_args {
pub flags: c_ulonglong,
pub pidfd: c_ulonglong,
pub child_tid: c_ulonglong,
pub parent_tid: c_ulonglong,
pub exit_signal: c_ulonglong,
pub stack: c_ulonglong,
pub stack_size: c_ulonglong,
pub tls: c_ulonglong,
pub set_tid: c_ulonglong,
pub set_tid_size: c_ulonglong,
pub cgroup: c_ulonglong,
}
}

s_no_extra_traits! {
Expand All @@ -197,6 +212,70 @@ s_no_extra_traits! {
pub struct max_align_t {
priv_: [i64; 4],
}

#[allow(missing_debug_implementations)]
pub struct ucontext_t {
pub uc_flags: c_ulong,
pub uc_link: *mut ucontext_t,
pub uc_stack: crate::stack_t,
pub uc_sigmask: crate::sigset_t,
pub uc_mcontext: mcontext_t,
}

#[allow(missing_debug_implementations)]
pub struct pt_regs {
pub gpr: [c_ulong; 32],
pub nip: c_ulong,
pub msr: c_ulong,
pub orig_gpr3: c_ulong,
pub ctr: c_ulong,
pub link: c_ulong,
pub xer: c_ulong,
pub ccr: c_ulong,
pub softe: c_ulong,
pub trap: c_ulong,
pub dar: c_ulong,
pub dsisr: c_ulong,
pub result: c_ulong,
}

#[allow(missing_debug_implementations)]
#[repr(align(8))]
pub struct mcontext_t {
__glibc_reserved: [c_ulong; 4],
pub signal: c_int,
__pad0: c_int,
pub handler: c_ulong,
pub oldmask: c_ulong,
pub regs: *mut pt_regs,
pub gp_regs: [c_ulong; __NGREG],
pub fp_regs: [c_double; __NFPREG],
pub v_regs: *mut vrregset_t,
pub vmx_reserve: [c_long; __NVRREG + __NVRREG + 1],
}

#[allow(missing_debug_implementations)]
#[repr(align(16))]
pub struct vrregset_t {
pub vrregs: [[c_uint; 4]; 32],
pub vscr: vscr_t,
pub vrsave: c_uint,
__pad: [c_uint; 3],
}

#[allow(missing_debug_implementations)]
#[repr(align(4))]
pub struct vscr_t {
#[cfg(target_endian = "big")]
__pad: [c_uint; 3],
#[cfg(target_endian = "big")]
pub vscr_word: c_uint,

#[cfg(target_endian = "little")]
pub vscr_word: c_uint,
#[cfg(target_endian = "little")]
__pad: [c_uint; 3],
}
}

pub const POSIX_FADV_DONTNEED: c_int = 4;
Expand All @@ -209,6 +288,10 @@ pub const VEOF: usize = 4;
pub const __SIZEOF_PTHREAD_RWLOCK_T: usize = 56;
pub const __SIZEOF_PTHREAD_BARRIER_T: usize = 32;

pub const __NGREG: usize = 48;
pub const __NFPREG: usize = 33;
pub const __NVRREG: usize = 34;

pub const O_APPEND: c_int = 1024;
pub const O_CREAT: c_int = 64;
pub const O_EXCL: c_int = 128;
Expand Down Expand Up @@ -970,4 +1053,9 @@ extern "C" {
newp: *mut c_void,
newlen: size_t,
) -> c_int;

pub fn getcontext(ucp: *mut ucontext_t) -> c_int;
pub fn setcontext(ucp: *const ucontext_t) -> c_int;
pub fn makecontext(ucp: *mut ucontext_t, func: extern "C" fn(), argc: c_int, ...);
pub fn swapcontext(uocp: *mut ucontext_t, ucp: *const ucontext_t) -> c_int;
}
Loading