indexing: use PRIO_PROCESS not PRIO_PGRP for setting recollindex nice value

This commit is contained in:
Jean-Francois Dockes 2011-03-02 17:26:35 +01:00
parent c79f856f28
commit c4106ae0d9

View File

@ -276,7 +276,7 @@ int main(int argc, const char **argv)
bool rezero(op_flags & OPT_z); bool rezero(op_flags & OPT_z);
Pidfile pidfile(config->getPidfile()); Pidfile pidfile(config->getPidfile());
if (setpriority(PRIO_PGRP, 0, 20) != 0) { if (setpriority(PRIO_PROCESS, 0, 20) != 0) {
LOGINFO(("recollindex: can't setpriority(), errno %d\n", errno)); LOGINFO(("recollindex: can't setpriority(), errno %d\n", errno));
} }
@ -333,7 +333,7 @@ int main(int argc, const char **argv)
} }
// Not too sure if I have to redo the nice thing after daemon(), // Not too sure if I have to redo the nice thing after daemon(),
// can't hurt anyway (easier than testing on all platforms...) // can't hurt anyway (easier than testing on all platforms...)
if (setpriority(PRIO_PGRP, 0, 20) != 0) { if (setpriority(PRIO_PROCESS, 0, 20) != 0) {
LOGINFO(("recollindex: can't setpriority(), errno %d\n", errno)); LOGINFO(("recollindex: can't setpriority(), errno %d\n", errno));
} }
pidfile.write_pid(); pidfile.write_pid();