summaryrefslogtreecommitdiffstats
path: root/package/busybox/busybox-1.10.1-taskset.patch
diff options
context:
space:
mode:
authorPeter Korsgaard <jacmet@sunsite.dk>2008-05-09 10:00:59 +0000
committerPeter Korsgaard <jacmet@sunsite.dk>2008-05-09 10:00:59 +0000
commit63c97a8c8b2492e7d24ecb9354110ef988d20c42 (patch)
tree1cd6ba926408b4d138b050efce573552ec35714b /package/busybox/busybox-1.10.1-taskset.patch
parent85df60a8ecb6c5003c3e713caae7482b27d38d04 (diff)
downloadbuildroot-novena-63c97a8c8b2492e7d24ecb9354110ef988d20c42.tar.gz
buildroot-novena-63c97a8c8b2492e7d24ecb9354110ef988d20c42.zip
busybox: bump version
Diffstat (limited to 'package/busybox/busybox-1.10.1-taskset.patch')
-rw-r--r--package/busybox/busybox-1.10.1-taskset.patch14
1 files changed, 0 insertions, 14 deletions
diff --git a/package/busybox/busybox-1.10.1-taskset.patch b/package/busybox/busybox-1.10.1-taskset.patch
deleted file mode 100644
index 0860586b7..000000000
--- a/package/busybox/busybox-1.10.1-taskset.patch
+++ /dev/null
@@ -1,14 +0,0 @@
---- busybox-1.10.1/miscutils/taskset.c Sat Apr 19 06:03:13 2008
-+++ busybox-1.10.1-taskset/miscutils/taskset.c Fri Apr 25 18:58:53 2008
-@@ -94,8 +94,10 @@
- unsigned i;
- /* Do not allow zero mask: */
- unsigned long long m = xstrtoull_range(aff, 0, 1, ULLONG_MAX);
-+ enum { CNT_BIT = CPU_SETSIZE < sizeof(m)*8 ? CPU_SETSIZE : sizeof(m)*8 };
-+
- CPU_ZERO(&mask);
-- for (i = 0; i < CPU_SETSIZE; i++) {
-+ for (i = 0; i < CNT_BIT; i++) {
- unsigned long long bit = (1ULL << i);
- if (bit & m)
- CPU_SET(i, &mask);