repo.or.cz
/
linux
/
fpc-iii.git
/
blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
log
|
graphiclog1
|
graphiclog2
|
commit
|
commitdiff
|
tree
|
refs
|
edit
|
fork
blame
|
history
|
raw
|
HEAD
mm, oom: do not rely on TIF_MEMDIE for memory reserves access
[linux/fpc-iii.git]
/
tools
/
build
/
feature
/
test-pthread-attr-setaffinity-np.c
blob
fdada5e8d454c549e4cb57059f52ebb8a1825c8e
1
#include <stdint.h>
2
#include <pthread.h>
3
#include <sched.h>
4
5
int
main
(
void
)
6
{
7
int
ret
=
0
;
8
pthread_attr_t thread_attr
;
9
cpu_set_t cs
;
10
11
pthread_attr_init
(&
thread_attr
);
12
CPU_ZERO
(&
cs
);
13
14
ret
=
pthread_attr_setaffinity_np
(&
thread_attr
,
sizeof
(
cs
), &
cs
);
15
16
return
ret
;
17
}