/// Set default NUMA memory policy for a thread and its children
pubunsafefnset_mempolicy(mode:i32, nmask:*constusize, maxnode:usize)->Result<(), Errno>{let mode = mode asusize;let nmask = nmask asusize;syscall3(SYS_SET_MEMPOLICY, mode, nmask, maxnode).map(drop)}