glibc/posix/tst-cpucount.c
Ulrich Drepper eab1bdfb8e * posix/Makefile (routines): Add sched_cpucount.
(tests): Add tst-cpucount.
	* posix/sched_cpucount.c: New file.
	* posix/tst-cpucount.c: New file.
	* posix/Versions: Export __sched_cpucount with version GLIBC_2.6.
2007-04-03 23:29:18 +00:00

28 lines
370 B
C

#include <sched.h>
#include <stdio.h>
static int
do_test (void)
{
cpu_set_t c;
CPU_ZERO (&c);
for (int cnt = 0; cnt < 130; ++cnt)
{
int n = CPU_COUNT (&c);
if (n != cnt)
{
printf ("expected %d, not %d\n", cnt, n);
return 1;
}
CPU_SET (cnt, &c);
}
return 0;
}
#define TEST_FUNCTION do_test ()
#include "../test-skeleton.c"