linux-surface/tools/build/feature/test-sched_getcpu.c

10 lines
110 B
C
Raw Normal View History

2017-08-10 13:25:24 +00:00
#ifndef _GNU_SOURCE
#define _GNU_SOURCE
#endif
#include <sched.h>
int main(void)
{
return sched_getcpu();
}