Changes in uspace/srv/taskmon/taskmon.c [8820544:1c635d6] in mainline
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
uspace/srv/taskmon/taskmon.c
r8820544 r1c635d6 82 82 83 83 printf(NAME ": Executing %s -c %s -t %s\n", fname, dump_fname, s_taskid); 84 rc = task_spawnl(NULL, fname, fname, "-c", dump_fname, "-t", s_taskid,84 rc = task_spawnl(NULL, NULL, fname, fname, "-c", dump_fname, "-t", s_taskid, 85 85 NULL); 86 86 } else { 87 87 printf(NAME ": Executing %s -t %s\n", fname, s_taskid); 88 rc = task_spawnl(NULL, fname, fname, "-t", s_taskid, NULL);88 rc = task_spawnl(NULL, NULL, fname, fname, "-t", s_taskid, NULL); 89 89 } 90 90
Note:
See TracChangeset
for help on using the changeset viewer.