2007-05-11 06:39:07 +00:00
|
|
|
#include <errno.h>
|
|
|
|
#include <stdio.h>
|
|
|
|
#include <sched.h>
|
2007-05-12 21:06:31 +00:00
|
|
|
#include <unistd.h>
|
2007-05-11 06:39:07 +00:00
|
|
|
|
|
|
|
|
|
|
|
static int
|
|
|
|
do_test (void)
|
|
|
|
{
|
|
|
|
cpu_set_t cs;
|
|
|
|
if (sched_getaffinity (getpid (), sizeof (cs), &cs) != 0)
|
|
|
|
{
|
|
|
|
printf ("getaffinity failed: %m\n");
|
|
|
|
return 1;
|
|
|
|
}
|
|
|
|
|
|
|
|
int result = 0;
|
|
|
|
int cpu = 0;
|
|
|
|
while (CPU_COUNT (&cs) != 0)
|
|
|
|
{
|
|
|
|
if (CPU_ISSET (cpu, &cs))
|
|
|
|
{
|
|
|
|
cpu_set_t cs2;
|
|
|
|
CPU_ZERO (&cs2);
|
|
|
|
CPU_SET (cpu, &cs2);
|
|
|
|
if (sched_setaffinity (getpid (), sizeof (cs2), &cs2) != 0)
|
|
|
|
{
|
|
|
|
printf ("setaffinity(%d) failed: %m\n", cpu);
|
|
|
|
result = 1;
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
int cpu2 = sched_getcpu ();
|
2012-05-06 22:30:15 +00:00
|
|
|
if (cpu2 == -1)
|
2007-05-11 06:39:07 +00:00
|
|
|
{
|
2012-05-06 22:30:15 +00:00
|
|
|
if (errno == ENOSYS)
|
|
|
|
{
|
|
|
|
puts ("getcpu syscall not implemented");
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
perror ("getcpu failed");
|
|
|
|
result = 1;
|
2007-05-11 06:39:07 +00:00
|
|
|
}
|
|
|
|
if (cpu2 != cpu)
|
|
|
|
{
|
|
|
|
printf ("getcpu results %d not possible\n", cpu2);
|
|
|
|
result = 1;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
CPU_CLR (cpu, &cs);
|
|
|
|
}
|
|
|
|
++cpu;
|
|
|
|
}
|
|
|
|
|
|
|
|
return result;
|
|
|
|
}
|
|
|
|
|
|
|
|
#define TEST_FUNCTION do_test ()
|
|
|
|
#include <test-skeleton.c>
|