diff options
author | Denys Vlasenko | 2017-01-29 18:59:38 +0100 |
---|---|---|
committer | Denys Vlasenko | 2017-01-29 18:59:38 +0100 |
commit | 86663910babe4684fe4ac7cead2fab6f4aa576d7 (patch) | |
tree | fbe1e5972e0d86b6c55b33120458a16a7d237b8a /miscutils | |
parent | b181ca75528ece1a16f36bd7fdabe6916d9e5aac (diff) | |
download | busybox-86663910babe4684fe4ac7cead2fab6f4aa576d7.zip busybox-86663910babe4684fe4ac7cead2fab6f4aa576d7.tar.gz |
taskset: separate "current" and "new" strings
Better for constant sharing:
text data bss dec hex filename
912997 485 6856 920338 e0b12 busybox_old
912988 485 6856 920329 e0b09 busybox_unstripped
Signed-off-by: Denys Vlasenko <vda.linux@googlemail.com>
Diffstat (limited to 'miscutils')
-rw-r--r-- | miscutils/taskset.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/miscutils/taskset.c b/miscutils/taskset.c index a87b9bd..68b0fa6 100644 --- a/miscutils/taskset.c +++ b/miscutils/taskset.c @@ -143,7 +143,7 @@ int taskset_main(int argc UNUSED_PARAM, char **argv) mask_size_in_bytes = SZOF_UL; mask = NULL; - current_new = "current\0new"; + current_new = "current"; print_aff: mask = get_aff(pid, &mask_size_in_bytes); if (opt_p) { @@ -156,7 +156,7 @@ int taskset_main(int argc UNUSED_PARAM, char **argv) return EXIT_SUCCESS; } *argv = NULL; - current_new += 8; /* "new" */ + current_new = "new"; } memset(mask, 0, mask_size_in_bytes); |