10 lines
115 B
C
10 lines
115 B
C
#define _GNU_SOURCE
|
|
#include <stdio.h>
|
|
#include <sched.h>
|
|
|
|
int
|
|
main (void)
|
|
{
|
|
printf ("%d\n", sched_getcpu ());
|
|
}
|