mirror of
https://github.com/ziglang/zig.git
synced 2026-01-21 23:05:24 +00:00
std.os.linux: Fix rlimit_resource for mips64; move out of arch bits.
It is usually generic, so no point having it in arch bits.
This commit is contained in:
parent
d4973c9922
commit
ed9a502dff
@ -6817,53 +6817,166 @@ pub const ifreq = extern struct {
|
||||
};
|
||||
|
||||
// doc comments copied from musl
|
||||
pub const rlimit_resource = if (native_arch.isMIPS() or native_arch.isSPARC())
|
||||
arch_bits.rlimit_resource
|
||||
else
|
||||
enum(c_int) {
|
||||
/// Per-process CPU limit, in seconds.
|
||||
CPU,
|
||||
/// Largest file that can be created, in bytes.
|
||||
FSIZE,
|
||||
/// Maximum size of data segment, in bytes.
|
||||
DATA,
|
||||
/// Maximum size of stack segment, in bytes.
|
||||
STACK,
|
||||
/// Largest core file that can be created, in bytes.
|
||||
CORE,
|
||||
/// Largest resident set size, in bytes.
|
||||
/// This affects swapping; processes that are exceeding their
|
||||
/// resident set size will be more likely to have physical memory
|
||||
/// taken from them.
|
||||
RSS,
|
||||
/// Number of processes.
|
||||
NPROC,
|
||||
/// Number of open files.
|
||||
NOFILE,
|
||||
/// Locked-in-memory address space.
|
||||
MEMLOCK,
|
||||
/// Address space limit.
|
||||
AS,
|
||||
/// Maximum number of file locks.
|
||||
LOCKS,
|
||||
/// Maximum number of pending signals.
|
||||
SIGPENDING,
|
||||
/// Maximum bytes in POSIX message queues.
|
||||
MSGQUEUE,
|
||||
/// Maximum nice priority allowed to raise to.
|
||||
/// Nice levels 19 .. -20 correspond to 0 .. 39
|
||||
/// values of this resource limit.
|
||||
NICE,
|
||||
/// Maximum realtime priority allowed for non-privileged
|
||||
/// processes.
|
||||
RTPRIO,
|
||||
/// Maximum CPU time in µs that a process scheduled under a real-time
|
||||
/// scheduling policy may consume without making a blocking system
|
||||
/// call before being forcibly descheduled.
|
||||
RTTIME,
|
||||
pub const rlimit_resource = if (native_arch.isMIPS()) enum(c_int) {
|
||||
/// Per-process CPU limit, in seconds.
|
||||
CPU = 0,
|
||||
|
||||
_,
|
||||
};
|
||||
/// Largest file that can be created, in bytes.
|
||||
FSIZE = 1,
|
||||
|
||||
/// Maximum size of data segment, in bytes.
|
||||
DATA = 2,
|
||||
|
||||
/// Maximum size of stack segment, in bytes.
|
||||
STACK = 3,
|
||||
|
||||
/// Largest core file that can be created, in bytes.
|
||||
CORE = 4,
|
||||
|
||||
/// Number of open files.
|
||||
NOFILE = 5,
|
||||
|
||||
/// Address space limit.
|
||||
AS = 6,
|
||||
|
||||
/// Largest resident set size, in bytes.
|
||||
/// This affects swapping; processes that are exceeding their
|
||||
/// resident set size will be more likely to have physical memory
|
||||
/// taken from them.
|
||||
RSS = 7,
|
||||
|
||||
/// Number of processes.
|
||||
NPROC = 8,
|
||||
|
||||
/// Locked-in-memory address space.
|
||||
MEMLOCK = 9,
|
||||
|
||||
/// Maximum number of file locks.
|
||||
LOCKS = 10,
|
||||
|
||||
/// Maximum number of pending signals.
|
||||
SIGPENDING = 11,
|
||||
|
||||
/// Maximum bytes in POSIX message queues.
|
||||
MSGQUEUE = 12,
|
||||
|
||||
/// Maximum nice priority allowed to raise to.
|
||||
/// Nice levels 19 .. -20 correspond to 0 .. 39
|
||||
/// values of this resource limit.
|
||||
NICE = 13,
|
||||
|
||||
/// Maximum realtime priority allowed for non-privileged
|
||||
/// processes.
|
||||
RTPRIO = 14,
|
||||
|
||||
/// Maximum CPU time in µs that a process scheduled under a real-time
|
||||
/// scheduling policy may consume without making a blocking system
|
||||
/// call before being forcibly descheduled.
|
||||
RTTIME = 15,
|
||||
|
||||
_,
|
||||
} else if (native_arch.isSPARC()) enum(c_int) {
|
||||
/// Per-process CPU limit, in seconds.
|
||||
CPU = 0,
|
||||
|
||||
/// Largest file that can be created, in bytes.
|
||||
FSIZE = 1,
|
||||
|
||||
/// Maximum size of data segment, in bytes.
|
||||
DATA = 2,
|
||||
|
||||
/// Maximum size of stack segment, in bytes.
|
||||
STACK = 3,
|
||||
|
||||
/// Largest core file that can be created, in bytes.
|
||||
CORE = 4,
|
||||
|
||||
/// Largest resident set size, in bytes.
|
||||
/// This affects swapping; processes that are exceeding their
|
||||
/// resident set size will be more likely to have physical memory
|
||||
/// taken from them.
|
||||
RSS = 5,
|
||||
|
||||
/// Number of open files.
|
||||
NOFILE = 6,
|
||||
|
||||
/// Number of processes.
|
||||
NPROC = 7,
|
||||
|
||||
/// Locked-in-memory address space.
|
||||
MEMLOCK = 8,
|
||||
|
||||
/// Address space limit.
|
||||
AS = 9,
|
||||
|
||||
/// Maximum number of file locks.
|
||||
LOCKS = 10,
|
||||
|
||||
/// Maximum number of pending signals.
|
||||
SIGPENDING = 11,
|
||||
|
||||
/// Maximum bytes in POSIX message queues.
|
||||
MSGQUEUE = 12,
|
||||
|
||||
/// Maximum nice priority allowed to raise to.
|
||||
/// Nice levels 19 .. -20 correspond to 0 .. 39
|
||||
/// values of this resource limit.
|
||||
NICE = 13,
|
||||
|
||||
/// Maximum realtime priority allowed for non-privileged
|
||||
/// processes.
|
||||
RTPRIO = 14,
|
||||
|
||||
/// Maximum CPU time in µs that a process scheduled under a real-time
|
||||
/// scheduling policy may consume without making a blocking system
|
||||
/// call before being forcibly descheduled.
|
||||
RTTIME = 15,
|
||||
|
||||
_,
|
||||
} else enum(c_int) {
|
||||
/// Per-process CPU limit, in seconds.
|
||||
CPU = 0,
|
||||
/// Largest file that can be created, in bytes.
|
||||
FSIZE = 1,
|
||||
/// Maximum size of data segment, in bytes.
|
||||
DATA = 2,
|
||||
/// Maximum size of stack segment, in bytes.
|
||||
STACK = 3,
|
||||
/// Largest core file that can be created, in bytes.
|
||||
CORE = 4,
|
||||
/// Largest resident set size, in bytes.
|
||||
/// This affects swapping; processes that are exceeding their
|
||||
/// resident set size will be more likely to have physical memory
|
||||
/// taken from them.
|
||||
RSS = 5,
|
||||
/// Number of processes.
|
||||
NPROC = 6,
|
||||
/// Number of open files.
|
||||
NOFILE = 7,
|
||||
/// Locked-in-memory address space.
|
||||
MEMLOCK = 8,
|
||||
/// Address space limit.
|
||||
AS = 9,
|
||||
/// Maximum number of file locks.
|
||||
LOCKS = 10,
|
||||
/// Maximum number of pending signals.
|
||||
SIGPENDING = 11,
|
||||
/// Maximum bytes in POSIX message queues.
|
||||
MSGQUEUE = 12,
|
||||
/// Maximum nice priority allowed to raise to.
|
||||
/// Nice levels 19 .. -20 correspond to 0 .. 39
|
||||
/// values of this resource limit.
|
||||
NICE = 13,
|
||||
/// Maximum realtime priority allowed for non-privileged
|
||||
/// processes.
|
||||
RTPRIO = 14,
|
||||
/// Maximum CPU time in µs that a process scheduled under a real-time
|
||||
/// scheduling policy may consume without making a blocking system
|
||||
/// call before being forcibly descheduled.
|
||||
RTTIME = 15,
|
||||
|
||||
_,
|
||||
};
|
||||
|
||||
pub const rlim_t = u64;
|
||||
|
||||
|
||||
@ -376,66 +376,6 @@ pub const timezone = extern struct {
|
||||
|
||||
pub const Elf_Symndx = u32;
|
||||
|
||||
pub const rlimit_resource = enum(c_int) {
|
||||
/// Per-process CPU limit, in seconds.
|
||||
CPU,
|
||||
|
||||
/// Largest file that can be created, in bytes.
|
||||
FSIZE,
|
||||
|
||||
/// Maximum size of data segment, in bytes.
|
||||
DATA,
|
||||
|
||||
/// Maximum size of stack segment, in bytes.
|
||||
STACK,
|
||||
|
||||
/// Largest core file that can be created, in bytes.
|
||||
CORE,
|
||||
|
||||
/// Number of open files.
|
||||
NOFILE,
|
||||
|
||||
/// Address space limit.
|
||||
AS,
|
||||
|
||||
/// Largest resident set size, in bytes.
|
||||
/// This affects swapping; processes that are exceeding their
|
||||
/// resident set size will be more likely to have physical memory
|
||||
/// taken from them.
|
||||
RSS,
|
||||
|
||||
/// Number of processes.
|
||||
NPROC,
|
||||
|
||||
/// Locked-in-memory address space.
|
||||
MEMLOCK,
|
||||
|
||||
/// Maximum number of file locks.
|
||||
LOCKS,
|
||||
|
||||
/// Maximum number of pending signals.
|
||||
SIGPENDING,
|
||||
|
||||
/// Maximum bytes in POSIX message queues.
|
||||
MSGQUEUE,
|
||||
|
||||
/// Maximum nice priority allowed to raise to.
|
||||
/// Nice levels 19 .. -20 correspond to 0 .. 39
|
||||
/// values of this resource limit.
|
||||
NICE,
|
||||
|
||||
/// Maximum realtime priority allowed for non-privileged
|
||||
/// processes.
|
||||
RTPRIO,
|
||||
|
||||
/// Maximum CPU time in µs that a process scheduled under a real-time
|
||||
/// scheduling policy may consume without making a blocking system
|
||||
/// call before being forcibly descheduled.
|
||||
RTTIME,
|
||||
|
||||
_,
|
||||
};
|
||||
|
||||
/// TODO
|
||||
pub const ucontext_t = void;
|
||||
|
||||
|
||||
@ -355,66 +355,6 @@ pub const timezone = extern struct {
|
||||
|
||||
pub const Elf_Symndx = u32;
|
||||
|
||||
pub const rlimit_resource = enum(c_int) {
|
||||
/// Per-process CPU limit, in seconds.
|
||||
CPU,
|
||||
|
||||
/// Largest file that can be created, in bytes.
|
||||
FSIZE,
|
||||
|
||||
/// Maximum size of data segment, in bytes.
|
||||
DATA,
|
||||
|
||||
/// Maximum size of stack segment, in bytes.
|
||||
STACK,
|
||||
|
||||
/// Largest core file that can be created, in bytes.
|
||||
CORE,
|
||||
|
||||
/// Number of open files.
|
||||
NOFILE,
|
||||
|
||||
/// Address space limit.
|
||||
AS,
|
||||
|
||||
/// Largest resident set size, in bytes.
|
||||
/// This affects swapping; processes that are exceeding their
|
||||
/// resident set size will be more likely to have physical memory
|
||||
/// taken from them.
|
||||
RSS,
|
||||
|
||||
/// Number of processes.
|
||||
NPROC,
|
||||
|
||||
/// Locked-in-memory address space.
|
||||
MEMLOCK,
|
||||
|
||||
/// Maximum number of file locks.
|
||||
LOCKS,
|
||||
|
||||
/// Maximum number of pending signals.
|
||||
SIGPENDING,
|
||||
|
||||
/// Maximum bytes in POSIX message queues.
|
||||
MSGQUEUE,
|
||||
|
||||
/// Maximum nice priority allowed to raise to.
|
||||
/// Nice levels 19 .. -20 correspond to 0 .. 39
|
||||
/// values of this resource limit.
|
||||
NICE,
|
||||
|
||||
/// Maximum realtime priority allowed for non-privileged
|
||||
/// processes.
|
||||
RTPRIO,
|
||||
|
||||
/// Maximum CPU time in µs that a process scheduled under a real-time
|
||||
/// scheduling policy may consume without making a blocking system
|
||||
/// call before being forcibly descheduled.
|
||||
RTTIME,
|
||||
|
||||
_,
|
||||
};
|
||||
|
||||
/// TODO
|
||||
pub const ucontext_t = void;
|
||||
|
||||
|
||||
@ -448,63 +448,3 @@ pub const ucontext_t = extern struct {
|
||||
|
||||
/// TODO
|
||||
pub const getcontext = {};
|
||||
|
||||
pub const rlimit_resource = enum(c_int) {
|
||||
/// Per-process CPU limit, in seconds.
|
||||
CPU,
|
||||
|
||||
/// Largest file that can be created, in bytes.
|
||||
FSIZE,
|
||||
|
||||
/// Maximum size of data segment, in bytes.
|
||||
DATA,
|
||||
|
||||
/// Maximum size of stack segment, in bytes.
|
||||
STACK,
|
||||
|
||||
/// Largest core file that can be created, in bytes.
|
||||
CORE,
|
||||
|
||||
/// Largest resident set size, in bytes.
|
||||
/// This affects swapping; processes that are exceeding their
|
||||
/// resident set size will be more likely to have physical memory
|
||||
/// taken from them.
|
||||
RSS,
|
||||
|
||||
/// Number of open files.
|
||||
NOFILE,
|
||||
|
||||
/// Number of processes.
|
||||
NPROC,
|
||||
|
||||
/// Locked-in-memory address space.
|
||||
MEMLOCK,
|
||||
|
||||
/// Address space limit.
|
||||
AS,
|
||||
|
||||
/// Maximum number of file locks.
|
||||
LOCKS,
|
||||
|
||||
/// Maximum number of pending signals.
|
||||
SIGPENDING,
|
||||
|
||||
/// Maximum bytes in POSIX message queues.
|
||||
MSGQUEUE,
|
||||
|
||||
/// Maximum nice priority allowed to raise to.
|
||||
/// Nice levels 19 .. -20 correspond to 0 .. 39
|
||||
/// values of this resource limit.
|
||||
NICE,
|
||||
|
||||
/// Maximum realtime priority allowed for non-privileged
|
||||
/// processes.
|
||||
RTPRIO,
|
||||
|
||||
/// Maximum CPU time in µs that a process scheduled under a real-time
|
||||
/// scheduling policy may consume without making a blocking system
|
||||
/// call before being forcibly descheduled.
|
||||
RTTIME,
|
||||
|
||||
_,
|
||||
};
|
||||
|
||||
Loading…
x
Reference in New Issue
Block a user