summaryrefslogtreecommitdiff
path: root/libpthread/nptl/sysdeps/unix/sysv/linux/pthread_setaffinity.c
diff options
context:
space:
mode:
authorMirko Vogt <dev@nanl.de>2010-06-21 20:23:14 +0200
committerAustin Foxley <austinf@cetoncorp.com>2010-06-21 11:28:07 -0700
commitef487a35f428da6240003dca23b9d29908e2285e (patch)
treed6c73a4f831fc6ca26dfd7fef2a60041e3cd54ff /libpthread/nptl/sysdeps/unix/sysv/linux/pthread_setaffinity.c
parent6306cfe1713ad02c9c3d4b7940191bc95d27b14f (diff)
avoid using c99 syntax
Signed-off-by: Mirko Vogt <dev@nanl.de> Signed-off-by: Austin Foxley <austinf@cetoncorp.com>
Diffstat (limited to 'libpthread/nptl/sysdeps/unix/sysv/linux/pthread_setaffinity.c')
-rw-r--r--libpthread/nptl/sysdeps/unix/sysv/linux/pthread_setaffinity.c3
1 files changed, 2 insertions, 1 deletions
diff --git a/libpthread/nptl/sysdeps/unix/sysv/linux/pthread_setaffinity.c b/libpthread/nptl/sysdeps/unix/sysv/linux/pthread_setaffinity.c
index 467e8ec70..73a21ed42 100644
--- a/libpthread/nptl/sysdeps/unix/sysv/linux/pthread_setaffinity.c
+++ b/libpthread/nptl/sysdeps/unix/sysv/linux/pthread_setaffinity.c
@@ -71,7 +71,8 @@ pthread_setaffinity_np (pthread_t th, size_t cpusetsize,
/* We now know the size of the kernel cpumask_t. Make sure the user
does not request to set a bit beyond that. */
- for (size_t cnt = __kernel_cpumask_size; cnt < cpusetsize; ++cnt)
+ size_t cnt;
+ for (cnt = __kernel_cpumask_size; cnt < cpusetsize; ++cnt)
if (((char *) cpuset)[cnt] != '\0')
/* Found a nonzero byte. This means the user request cannot be
fulfilled. */