diff options
author | Ulrich Drepper <drepper@redhat.com> | 2007-07-19 17:22:27 +0000 |
---|---|---|
committer | Ulrich Drepper <drepper@redhat.com> | 2007-07-19 17:22:27 +0000 |
commit | 8381e467deb672e8adb48cc44011e98431360963 (patch) | |
tree | add21a1007ecb9c6683d6cf8221680986fadb317 /bits/sched.h | |
parent | 50e16f851971fa313a0ab870e3874a3df9314666 (diff) | |
download | glibc-8381e467deb672e8adb48cc44011e98431360963.zip glibc-8381e467deb672e8adb48cc44011e98431360963.tar.gz glibc-8381e467deb672e8adb48cc44011e98431360963.tar.bz2 |
* sysdeps/unix/sysv/linux/bits/sched.h (__sched_cpucount): Add
__BEGIN_DECLS/__END_DECLS around the prototype.
* bits/sched.h (__sched_cpucount): Likewise. Make second argument
pointer to const cpu_set_t.
Diffstat (limited to 'bits/sched.h')
-rw-r--r-- | bits/sched.h | 9 |
1 files changed, 8 insertions, 1 deletions
diff --git a/bits/sched.h b/bits/sched.h index 32434a3..af92dbc 100644 --- a/bits/sched.h +++ b/bits/sched.h @@ -68,7 +68,14 @@ typedef struct ((cpusetp)->__bits[__CPUELT (cpu)] &= ~__CPUMASK (cpu)) # define __CPU_ISSET(cpu, cpusetp) \ (((cpusetp)->__bits[__CPUELT (cpu)] & __CPUMASK (cpu)) != 0) -extern int __sched_cpucount (size_t __setsize, cpu_set_t *__setp) __THROW; + +__BEGIN_DECLS + +extern int __sched_cpucount (size_t __setsize, const cpu_set_t *__setp) + __THROW; + +__END_DECLS + # define __CPU_COUNT(cpusetp) \ __sched_cpucount (sizeof (cpu_set_t), cpusetp) #endif |