1a67e4de6620b570dabe0f92985228af0d0204f2cNick Kralevich/****************************************************************************
2a67e4de6620b570dabe0f92985228af0d0204f2cNick Kralevich ****************************************************************************
3a67e4de6620b570dabe0f92985228af0d0204f2cNick Kralevich ***
4a67e4de6620b570dabe0f92985228af0d0204f2cNick Kralevich ***   This header was automatically generated from a Linux kernel header
5a67e4de6620b570dabe0f92985228af0d0204f2cNick Kralevich ***   of the same name, to make information necessary for userspace to
6a67e4de6620b570dabe0f92985228af0d0204f2cNick Kralevich ***   call into the kernel available to libc.  It contains only constants,
7a67e4de6620b570dabe0f92985228af0d0204f2cNick Kralevich ***   structures, and macros generated from the original header, and thus,
8a67e4de6620b570dabe0f92985228af0d0204f2cNick Kralevich ***   contains no copyrightable information.
9a67e4de6620b570dabe0f92985228af0d0204f2cNick Kralevich ***
10a67e4de6620b570dabe0f92985228af0d0204f2cNick Kralevich ***   To edit the content of this header, modify the corresponding
11a67e4de6620b570dabe0f92985228af0d0204f2cNick Kralevich ***   source file (e.g. under external/kernel-headers/original/) then
12a67e4de6620b570dabe0f92985228af0d0204f2cNick Kralevich ***   run bionic/libc/kernel/tools/update_all.py
13a67e4de6620b570dabe0f92985228af0d0204f2cNick Kralevich ***
14a67e4de6620b570dabe0f92985228af0d0204f2cNick Kralevich ***   Any manual change here will be lost the next time this script will
15a67e4de6620b570dabe0f92985228af0d0204f2cNick Kralevich ***   be run. You've been warned!
16a67e4de6620b570dabe0f92985228af0d0204f2cNick Kralevich ***
17a67e4de6620b570dabe0f92985228af0d0204f2cNick Kralevich ****************************************************************************
18a67e4de6620b570dabe0f92985228af0d0204f2cNick Kralevich ****************************************************************************/
19655a7c081f83b8351ed5f11a6c6accd9458293a8Ben Cheng#ifndef _UAPI_LINUX_RESOURCE_H
20655a7c081f83b8351ed5f11a6c6accd9458293a8Ben Cheng#define _UAPI_LINUX_RESOURCE_H
21655a7c081f83b8351ed5f11a6c6accd9458293a8Ben Cheng#include <linux/time.h>
22655a7c081f83b8351ed5f11a6c6accd9458293a8Ben Cheng#include <linux/types.h>
23655a7c081f83b8351ed5f11a6c6accd9458293a8Ben Cheng/* WARNING: DO NOT EDIT, AUTO-GENERATED CODE - SEE TOP FOR INSTRUCTIONS */
24655a7c081f83b8351ed5f11a6c6accd9458293a8Ben Cheng#define RUSAGE_SELF 0
25d7db594b8d1dab36b711bd887a9dd21675c87243Tao Bao#define RUSAGE_CHILDREN (- 1)
26d7db594b8d1dab36b711bd887a9dd21675c87243Tao Bao#define RUSAGE_BOTH (- 2)
27655a7c081f83b8351ed5f11a6c6accd9458293a8Ben Cheng#define RUSAGE_THREAD 1
28655a7c081f83b8351ed5f11a6c6accd9458293a8Ben Cheng/* WARNING: DO NOT EDIT, AUTO-GENERATED CODE - SEE TOP FOR INSTRUCTIONS */
29655a7c081f83b8351ed5f11a6c6accd9458293a8Ben Chengstruct rusage {
30d7db594b8d1dab36b711bd887a9dd21675c87243Tao Bao  struct timeval ru_utime;
31d7db594b8d1dab36b711bd887a9dd21675c87243Tao Bao  struct timeval ru_stime;
32d7db594b8d1dab36b711bd887a9dd21675c87243Tao Bao  __kernel_long_t ru_maxrss;
33655a7c081f83b8351ed5f11a6c6accd9458293a8Ben Cheng/* WARNING: DO NOT EDIT, AUTO-GENERATED CODE - SEE TOP FOR INSTRUCTIONS */
34d7db594b8d1dab36b711bd887a9dd21675c87243Tao Bao  __kernel_long_t ru_ixrss;
35d7db594b8d1dab36b711bd887a9dd21675c87243Tao Bao  __kernel_long_t ru_idrss;
36d7db594b8d1dab36b711bd887a9dd21675c87243Tao Bao  __kernel_long_t ru_isrss;
37d7db594b8d1dab36b711bd887a9dd21675c87243Tao Bao  __kernel_long_t ru_minflt;
38655a7c081f83b8351ed5f11a6c6accd9458293a8Ben Cheng/* WARNING: DO NOT EDIT, AUTO-GENERATED CODE - SEE TOP FOR INSTRUCTIONS */
39d7db594b8d1dab36b711bd887a9dd21675c87243Tao Bao  __kernel_long_t ru_majflt;
40d7db594b8d1dab36b711bd887a9dd21675c87243Tao Bao  __kernel_long_t ru_nswap;
41d7db594b8d1dab36b711bd887a9dd21675c87243Tao Bao  __kernel_long_t ru_inblock;
42d7db594b8d1dab36b711bd887a9dd21675c87243Tao Bao  __kernel_long_t ru_oublock;
43655a7c081f83b8351ed5f11a6c6accd9458293a8Ben Cheng/* WARNING: DO NOT EDIT, AUTO-GENERATED CODE - SEE TOP FOR INSTRUCTIONS */
44d7db594b8d1dab36b711bd887a9dd21675c87243Tao Bao  __kernel_long_t ru_msgsnd;
45d7db594b8d1dab36b711bd887a9dd21675c87243Tao Bao  __kernel_long_t ru_msgrcv;
46d7db594b8d1dab36b711bd887a9dd21675c87243Tao Bao  __kernel_long_t ru_nsignals;
47d7db594b8d1dab36b711bd887a9dd21675c87243Tao Bao  __kernel_long_t ru_nvcsw;
48655a7c081f83b8351ed5f11a6c6accd9458293a8Ben Cheng/* WARNING: DO NOT EDIT, AUTO-GENERATED CODE - SEE TOP FOR INSTRUCTIONS */
49d7db594b8d1dab36b711bd887a9dd21675c87243Tao Bao  __kernel_long_t ru_nivcsw;
50655a7c081f83b8351ed5f11a6c6accd9458293a8Ben Cheng};
51655a7c081f83b8351ed5f11a6c6accd9458293a8Ben Chengstruct rlimit {
52d7db594b8d1dab36b711bd887a9dd21675c87243Tao Bao  __kernel_ulong_t rlim_cur;
53655a7c081f83b8351ed5f11a6c6accd9458293a8Ben Cheng/* WARNING: DO NOT EDIT, AUTO-GENERATED CODE - SEE TOP FOR INSTRUCTIONS */
54d7db594b8d1dab36b711bd887a9dd21675c87243Tao Bao  __kernel_ulong_t rlim_max;
55655a7c081f83b8351ed5f11a6c6accd9458293a8Ben Cheng};
56655a7c081f83b8351ed5f11a6c6accd9458293a8Ben Cheng#define RLIM64_INFINITY (~0ULL)
57655a7c081f83b8351ed5f11a6c6accd9458293a8Ben Chengstruct rlimit64 {
58655a7c081f83b8351ed5f11a6c6accd9458293a8Ben Cheng/* WARNING: DO NOT EDIT, AUTO-GENERATED CODE - SEE TOP FOR INSTRUCTIONS */
59d7db594b8d1dab36b711bd887a9dd21675c87243Tao Bao  __u64 rlim_cur;
60d7db594b8d1dab36b711bd887a9dd21675c87243Tao Bao  __u64 rlim_max;
61655a7c081f83b8351ed5f11a6c6accd9458293a8Ben Cheng};
62d7db594b8d1dab36b711bd887a9dd21675c87243Tao Bao#define PRIO_MIN (- 20)
63655a7c081f83b8351ed5f11a6c6accd9458293a8Ben Cheng/* WARNING: DO NOT EDIT, AUTO-GENERATED CODE - SEE TOP FOR INSTRUCTIONS */
64655a7c081f83b8351ed5f11a6c6accd9458293a8Ben Cheng#define PRIO_MAX 20
65655a7c081f83b8351ed5f11a6c6accd9458293a8Ben Cheng#define PRIO_PROCESS 0
66655a7c081f83b8351ed5f11a6c6accd9458293a8Ben Cheng#define PRIO_PGRP 1
67655a7c081f83b8351ed5f11a6c6accd9458293a8Ben Cheng#define PRIO_USER 2
68655a7c081f83b8351ed5f11a6c6accd9458293a8Ben Cheng/* WARNING: DO NOT EDIT, AUTO-GENERATED CODE - SEE TOP FOR INSTRUCTIONS */
69d7db594b8d1dab36b711bd887a9dd21675c87243Tao Bao#define _STK_LIM (8 * 1024 * 1024)
70d7db594b8d1dab36b711bd887a9dd21675c87243Tao Bao#define MLOCK_LIMIT ((PAGE_SIZE > 64 * 1024) ? PAGE_SIZE : 64 * 1024)
71655a7c081f83b8351ed5f11a6c6accd9458293a8Ben Cheng#include <asm/resource.h>
72a67e4de6620b570dabe0f92985228af0d0204f2cNick Kralevich#endif
73655a7c081f83b8351ed5f11a6c6accd9458293a8Ben Cheng/* WARNING: DO NOT EDIT, AUTO-GENERATED CODE - SEE TOP FOR INSTRUCTIONS */
74