| 783 | setup_rlim(const char *res_name, int res, rlim_t limit) |
| 784 | { |
| 785 | struct rlimit rl = { .rlim_cur = limit, .rlim_max = limit }; |
| 786 | if (setrlimit(res, &rl) < 0) |
| 787 | die("setrlimit(%s, %jd)", res_name, (intmax_t) limit); |
| 788 | } |
nothing calls this directly
no outgoing calls
no test coverage detected
searching dependent graphs…