summaryrefslogtreecommitdiffstats
path: root/runtime/staprun/mainloop.c
diff options
context:
space:
mode:
authorFrank Ch. Eigler <fche@elastic.org>2008-11-28 10:56:17 -0500
committerFrank Ch. Eigler <fche@elastic.org>2008-11-28 10:56:17 -0500
commit70514d65f670ac2160af4c282ebad1e7eb852341 (patch)
tree5556c9be3b6729b72dd86af476aa328167db0f9a /runtime/staprun/mainloop.c
parent84680f7eef6d7f0a30213ceb6cc254a230eb5eab (diff)
downloadsystemtap-steved-70514d65f670ac2160af4c282ebad1e7eb852341.tar.gz
systemtap-steved-70514d65f670ac2160af4c282ebad1e7eb852341.tar.xz
systemtap-steved-70514d65f670ac2160af4c282ebad1e7eb852341.zip
PR4783: remove traces of stap{run,io} self-renicing
Diffstat (limited to 'runtime/staprun/mainloop.c')
-rw-r--r--runtime/staprun/mainloop.c1
1 files changed, 0 insertions, 1 deletions
diff --git a/runtime/staprun/mainloop.c b/runtime/staprun/mainloop.c
index bc5244f5..2b044bdf 100644
--- a/runtime/staprun/mainloop.c
+++ b/runtime/staprun/mainloop.c
@@ -239,7 +239,6 @@ void system_cmd(char *cmd)
if ((pid = fork()) < 0) {
_perr("fork");
} else if (pid == 0) {
- setpriority(PRIO_PROCESS, 0, 0);
if (execl("/bin/sh", "sh", "-c", cmd, NULL) < 0)
perr("%s", cmd);
_exit(1);