summaryrefslogtreecommitdiff
path: root/sysdeps/unix/sysv/linux/x86_64/sched_setaffinity.c
blob: d1101c56f5246297cd14a25f5f3f08dcbd5ab016 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
#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 "../sched_setaffinity.c"