aboutsummaryrefslogtreecommitdiff
path: root/miscutils/taskset.c
diff options
context:
space:
mode:
authorDenys Vlasenko <vda.linux@googlemail.com>2015-10-13 17:17:34 +0200
committerDenys Vlasenko <vda.linux@googlemail.com>2015-10-13 17:17:34 +0200
commit7b85ec30b5941f0b90c48a990f2f6840aca87bce (patch)
tree3565032bf3f34eeea195258d9d4edc9f01480e6e /miscutils/taskset.c
parent4d0c1ea4784c9844f8468d97ca5c26d3c70f9921 (diff)
downloadbusybox-w32-7b85ec30b5941f0b90c48a990f2f6840aca87bce.tar.gz
busybox-w32-7b85ec30b5941f0b90c48a990f2f6840aca87bce.tar.bz2
busybox-w32-7b85ec30b5941f0b90c48a990f2f6840aca87bce.zip
*: more BUILD_BUG_ON conversions
Signed-off-by: Denys Vlasenko <vda.linux@googlemail.com>
Diffstat (limited to 'miscutils/taskset.c')
-rw-r--r--miscutils/taskset.c6
1 files changed, 2 insertions, 4 deletions
diff --git a/miscutils/taskset.c b/miscutils/taskset.c
index 2646e1dab..100b1d926 100644
--- a/miscutils/taskset.c
+++ b/miscutils/taskset.c
@@ -75,12 +75,10 @@ static char *from_cpuset(cpu_set_t *mask)
75#define TASKSET_PRINTF_MASK "%llx" 75#define TASKSET_PRINTF_MASK "%llx"
76static unsigned long long from_cpuset(cpu_set_t *mask) 76static unsigned long long from_cpuset(cpu_set_t *mask)
77{ 77{
78 struct BUG_CPU_SETSIZE_is_too_small {
79 char BUG_CPU_SETSIZE_is_too_small[
80 CPU_SETSIZE < sizeof(int) ? -1 : 1];
81 };
82 char *p = (void*)mask; 78 char *p = (void*)mask;
83 79
80 BUILD_BUG_ON(CPU_SETSIZE < sizeof(int));
81
84 /* Take the least significant bits. Careful! 82 /* Take the least significant bits. Careful!
85 * Consider both CPU_SETSIZE=4 and CPU_SETSIZE=1024 cases 83 * Consider both CPU_SETSIZE=4 and CPU_SETSIZE=1024 cases
86 */ 84 */