mirror of
https://git.in.rschanz.org/ryan77627/guix.git
synced 2024-11-07 07:26:13 -05:00
10 lines
111 B
C++
10 lines
111 B
C++
|
#pragma once
|
||
|
|
||
|
namespace nix {
|
||
|
|
||
|
void setAffinityTo(int cpu);
|
||
|
int lockToCurrentCPU();
|
||
|
void restoreAffinity();
|
||
|
|
||
|
}
|