|
|
@ -280,10 +280,10 @@ int main(int argc, char *argv[]) { |
|
|
|
|
|
|
|
|
|
|
|
if (appconfig.nice != 0) { |
|
|
|
if (appconfig.nice != 0) { |
|
|
|
errno = 0; |
|
|
|
errno = 0; |
|
|
|
nice(appconfig.nice); |
|
|
|
if (nice(appconfig.nice) == -1 && errno) { |
|
|
|
if (errno) |
|
|
|
|
|
|
|
f2b_log_msg(log_warn, "can't set process priority: %s", strerror(errno)); |
|
|
|
f2b_log_msg(log_warn, "can't set process priority: %s", strerror(errno)); |
|
|
|
} |
|
|
|
} |
|
|
|
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
|
|
if (appconfig.coredumps) { |
|
|
|
if (appconfig.coredumps) { |
|
|
|
struct rlimit rl; |
|
|
|
struct rlimit rl; |
|
|
|