diff options
-rw-r--r-- | util-linux/taskset.c | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/util-linux/taskset.c b/util-linux/taskset.c index d2ef9b98f..8b410f369 100644 --- a/util-linux/taskset.c +++ b/util-linux/taskset.c | |||
@@ -55,7 +55,6 @@ | |||
55 | * Not yet implemented: | 55 | * Not yet implemented: |
56 | * -a/--all-tasks (affect all threads) | 56 | * -a/--all-tasks (affect all threads) |
57 | * needs to get TIDs from /proc/PID/task/ and use _them_ as "pid" in sched_setaffinity(pid) | 57 | * needs to get TIDs from /proc/PID/task/ and use _them_ as "pid" in sched_setaffinity(pid) |
58 | * -c/--cpu-list (specify CPUs via "1,3,5-7") | ||
59 | */ | 58 | */ |
60 | 59 | ||
61 | #include <sched.h> | 60 | #include <sched.h> |
@@ -91,7 +90,7 @@ static char *from_mask(const ul *mask, unsigned sz_in_bytes) | |||
91 | } | 90 | } |
92 | #else | 91 | #else |
93 | #define TASKSET_PRINTF_MASK "%lx" | 92 | #define TASKSET_PRINTF_MASK "%lx" |
94 | static unsigned long long from_mask(ul *mask, unsigned sz_in_bytes UNUSED_PARAM) | 93 | static unsigned long from_mask(ul *mask, unsigned sz_in_bytes UNUSED_PARAM) |
95 | { | 94 | { |
96 | return *mask; | 95 | return *mask; |
97 | } | 96 | } |