Path: blob/main/contrib/llvm-project/libc/include/llvm-libc-macros/linux/sys-resource-macros.h
213799 views
//===-- Macros defined in sys/resource.h header file ----------------------===//1//2// Part of the LLVM Project, under the Apache License v2.0 with LLVM Exceptions.3// See https://llvm.org/LICENSE.txt for license information.4// SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception5//6//===----------------------------------------------------------------------===//78#ifndef LLVM_LIBC_MACROS_LINUX_SYS_RESOURCE_MACROS_H9#define LLVM_LIBC_MACROS_LINUX_SYS_RESOURCE_MACROS_H1011#define RLIMIT_CPU 012#define RLIMIT_FSIZE 113#define RLIMIT_DATA 214#define RLIMIT_STACK 315#define RLIMIT_CORE 416#define RLIMIT_RSS 517#define RLIMIT_NPROC 618#define RLIMIT_NOFILE 719#define RLIMIT_MEMLOCK 820#define RLIMIT_AS 921#define RLIMIT_LOCKS 1022#define RLIMIT_SIGPENDING 1123#define RLIMIT_MSGQUEUE 1224#define RLIMIT_NICE 1325#define RLIMIT_RTPRIO 1426#define RLIMIT_RTTIME 152728#define RLIM_INFINITY (~0UL)2930#endif // LLVM_LIBC_MACROS_LINUX_SYS_RESOURCE_MACROS_H313233