47 lines
1.3 KiB
Rust
47 lines
1.3 KiB
Rust
use crate::off_t;
|
|
use crate::prelude::*;
|
|
|
|
// From psABI Calling Convention for RV64
|
|
pub type __u64 = c_ulonglong;
|
|
pub type wchar_t = i32;
|
|
|
|
pub type nlink_t = c_ulong;
|
|
pub type blksize_t = c_long;
|
|
|
|
pub type stat64 = stat;
|
|
s! {
|
|
pub struct stat {
|
|
pub st_dev: crate::dev_t,
|
|
pub st_ino: crate::ino_t,
|
|
pub st_nlink: crate::nlink_t,
|
|
pub st_mode: crate::mode_t,
|
|
pub st_uid: crate::uid_t,
|
|
pub st_gid: crate::gid_t,
|
|
__pad0: Padding<c_int>,
|
|
pub st_rdev: crate::dev_t,
|
|
pub st_size: off_t,
|
|
pub st_blksize: crate::blksize_t,
|
|
pub st_blocks: crate::blkcnt_t,
|
|
pub st_atime: crate::time_t,
|
|
pub st_atime_nsec: c_long,
|
|
pub st_mtime: crate::time_t,
|
|
pub st_mtime_nsec: c_long,
|
|
pub st_ctime: crate::time_t,
|
|
pub st_ctime_nsec: c_long,
|
|
__unused: Padding<[c_long; 3]>,
|
|
}
|
|
|
|
// Not actually used, IPC calls just return ENOSYS
|
|
pub struct ipc_perm {
|
|
pub __ipc_perm_key: crate::key_t,
|
|
pub uid: crate::uid_t,
|
|
pub gid: crate::gid_t,
|
|
pub cuid: crate::uid_t,
|
|
pub cgid: crate::gid_t,
|
|
pub mode: crate::mode_t,
|
|
pub __seq: c_ushort,
|
|
__unused1: Padding<c_ulong>,
|
|
__unused2: Padding<c_ulong>,
|
|
}
|
|
}
|