| 12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061 |
- /**
- * Loco program runner core
- * Copyright (C) 2011 Lodevil(Du Jiong)
- *
- * This program is free software: you can redistribute it and/or modify
- * it under the terms of the GNU General Public License as published by
- * the Free Software Foundation, either version 3 of the License, or
- * (at your option) any later version.
- *
- * This program is distributed in the hope that it will be useful,
- * but WITHOUT ANY WARRANTY; without even the implied warranty of
- * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
- * GNU General Public License for more details.
- *
- * You should have received a copy of the GNU General Public License
- * along with this program. If not, see <http://www.gnu.org/licenses/>.
- */
- #include "limit.h"
- #include <sys/resource.h>
- #include <sys/time.h>
- const char *last_limit_err;
- int setResLimit(struct Runobj *runobj) {
- #define RAISE_EXIT(err) {last_limit_err = err;return -1;}
- struct rlimit rl;
- struct itimerval p_realt;
- rl.rlim_cur = runobj->time_limit / 1000 + 1;
- if (runobj->time_limit % 1000 > 800) {
- rl.rlim_cur += 1;
- }
- rl.rlim_max = rl.rlim_cur + 1;
- if (setrlimit(RLIMIT_CPU, &rl))
- RAISE_EXIT("set RLIMIT_CPU failure");
- /*rl.rlim_cur = runobj->memory_limit * 1024;
- rl.rlim_max = rl.rlim_cur + 1024;
- if (setrlimit(RLIMIT_DATA, &rl))
- RAISE_EXIT("set RLIMIT_DATA failure");
- rl.rlim_cur = runobj->memory_limit * 1024 * 2;
- rl.rlim_max = rl.rlim_cur + 1024;
- if (setrlimit(RLIMIT_AS, &rl))
- RAISE_EXIT("set RLIMIT_AS failure");*/
- rl.rlim_cur = 256 * 1024 * 1024;
- rl.rlim_max = rl.rlim_cur + 1024;
- if (setrlimit(RLIMIT_STACK, &rl))
- RAISE_EXIT("set RLIMIT_STACK failure");
- p_realt.it_interval.tv_sec = runobj->time_limit / 1000 + 3;
- p_realt.it_interval.tv_usec = 0;
- p_realt.it_value = p_realt.it_interval;
- if (setitimer(ITIMER_REAL, &p_realt, (struct itimerval *) 0) == -1)
- RAISE_EXIT("set ITIMER_REAL failure");
- return 0;
- }
|