SetThreadSelectedCpuSets method
Implementation
int SetThreadSelectedCpuSets(
ffi.Pointer<ffi.Void> Thread,
ffi.Pointer<ffi.Uint64> CpuSetIds,
int CpuSetIdCount,
) {
return (_SetThreadSelectedCpuSets ??= _dylib.lookupFunction<
_c_SetThreadSelectedCpuSets,
_dart_SetThreadSelectedCpuSets>('SetThreadSelectedCpuSets'))(
Thread,
CpuSetIds,
CpuSetIdCount,
);
}