brintos

brintos / llvm-project-archived public Read only

0
0
Text · 940 B · c9d93c3 Raw
32 lines · c
1//===-- Macros defined in sys/resource.h header file ----------------------===//2//3// Part of the LLVM Project, under the Apache License v2.0 with LLVM Exceptions.4// See https://llvm.org/LICENSE.txt for license information.5// SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception6//7//===----------------------------------------------------------------------===//8 9#ifndef LLVM_LIBC_MACROS_LINUX_SYS_RESOURCE_MACROS_H10#define LLVM_LIBC_MACROS_LINUX_SYS_RESOURCE_MACROS_H11 12#define RLIMIT_CPU 013#define RLIMIT_FSIZE 114#define RLIMIT_DATA 215#define RLIMIT_STACK 316#define RLIMIT_CORE 417#define RLIMIT_RSS 518#define RLIMIT_NPROC 619#define RLIMIT_NOFILE 720#define RLIMIT_MEMLOCK 821#define RLIMIT_AS 922#define RLIMIT_LOCKS 1023#define RLIMIT_SIGPENDING 1124#define RLIMIT_MSGQUEUE 1225#define RLIMIT_NICE 1326#define RLIMIT_RTPRIO 1427#define RLIMIT_RTTIME 1528 29#define RLIM_INFINITY (~0UL)30 31#endif // LLVM_LIBC_MACROS_LINUX_SYS_RESOURCE_MACROS_H32