host_freebsd_arm.go 660 B

1234567891011121314151617181920212223242526272829303132333435363738394041424344
  1. // Created by cgo -godefs - DO NOT EDIT
  2. // cgo -godefs types_freebsd.go
  3. package host
  4. const (
  5. sizeofPtr = 0x4
  6. sizeofShort = 0x2
  7. sizeofInt = 0x4
  8. sizeofLong = 0x8
  9. sizeofLongLong = 0x8
  10. sizeOfUtmpx = 197 // TODO: why should 197, not 0x118
  11. )
  12. type (
  13. _C_short int16
  14. _C_int int32
  15. _C_long int32
  16. _C_long_long int64
  17. )
  18. type Utmp struct {
  19. Line [8]int8
  20. Name [16]int8
  21. Host [16]int8
  22. Time int32
  23. }
  24. type Utmpx struct {
  25. Type int16
  26. Tv Timeval
  27. Id [8]int8
  28. Pid int32
  29. User [32]int8
  30. Line [16]int8
  31. Host [125]int8
  32. // Host [128]int8
  33. // X__ut_spare [64]int8
  34. }
  35. type Timeval struct {
  36. Sec [4]byte
  37. Usec [3]byte
  38. }