1
0
mirror of https://sourceware.org/git/glibc.git synced 2025-04-20 12:27:47 +03:00
glibc/sysdeps/unix/sysv/linux/x86_64/pthread_setaffinity.c

15 lines
434 B
C

#include <tls.h>
#define RESET_VGETCPU_CACHE() \
do { \
asm volatile ("movl %0, %%fs:%P1\n\t" \
"movl %0, %%fs:%P2" \
: \
: "ir" (0), "i" (offsetof (struct pthread, \
header.vgetcpu_cache[0])), \
"i" (offsetof (struct pthread, \
header.vgetcpu_cache[1]))); \
} while (0)
#include <sysdeps/unix/sysv/linux/pthread_setaffinity.c>