| tag | line | file | source code |
| resource | 145 | include/unistd.h | int setrlimit(int resource, struct rlimit *rlp); |
| resource | 146 | include/unistd.h | int getrlimit(int resource, struct rlimit *rlp); |
| resource | 483 | kernel/sys.c | int sys_getrlimit(int resource, struct rlimit *rlim) |
| resource | 485 | kernel/sys.c | if (resource >= RLIM_NLIMITS) |
| resource | 488 | kernel/sys.c | put_fs_long(current->rlim[resource].rlim_cur, |
| resource | 490 | kernel/sys.c | put_fs_long(current->rlim[resource].rlim_max, |
| resource | 495 | kernel/sys.c | int sys_setrlimit(int resource, struct rlimit *rlim) |
| resource | 499 | kernel/sys.c | if (resource >= RLIM_NLIMITS) |
| resource | 501 | kernel/sys.c | old = current->rlim + resource; |