/** Copyright 2023, JΓ©rΓ΄me Duval, jerome.duval@gmail.com. All rights reserved.* Distributed under the terms of the MIT License.*/#include <sched.h>#include <stdio.h>intmain(int argc, char** argv){int cpu = sched_getcpu();printf("cpu: %d\n", cpu);return 0;}