...

Source file src/github.com/shirou/gopsutil/host/types_darwin.go

Documentation: github.com/shirou/gopsutil/host

     1  // +build ignore
     2  // plus hand editing about timeval
     3  
     4  /*
     5  Input to cgo -godefs.
     6  */
     7  
     8  package host
     9  
    10  /*
    11  #include <sys/time.h>
    12  #include <utmpx.h>
    13  */
    14  import "C"
    15  
    16  type Utmpx C.struct_utmpx
    17  type Timeval C.struct_timeval
    18  

View as plain text