linux.mx raw

   1  //go:build linux && !baremetal
   2  
   3  package task
   4  
   5  import "unsafe"
   6  
   7  // Musl uses a pointer (or unsigned long for C++) so unsafe.Pointer should be
   8  // fine.
   9  type threadID unsafe.Pointer
  10