(__pthread_attr_setaffinity_old): Remove const.

This commit is contained in:
Andreas Jaeger 2004-03-24 13:53:13 +00:00
parent 865e14d930
commit 63f78a3a9b
1 changed files with 1 additions and 1 deletions

View File

@ -85,7 +85,7 @@ versioned_symbol (libpthread, __pthread_attr_setaffinity_new,
#if SHLIB_COMPAT(libpthread, 2_3_3, 2_3_4)
int
__pthread_attr_setaffinity_old (const pthread_attr_t *attr, cpu_set_t *cpuset)
__pthread_attr_setaffinity_old (pthread_attr_t *attr, cpu_set_t *cpuset)
{
/* The old interface by default assumed a 1024 processor bitmap. */
return __pthread_attr_setaffinity_new (attr, 128, cpuset);