host_freebsd_386.go 628 B

12345678910111213141516171819202122232425262728293031323334353637383940414243
  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 = 0x4
  9. sizeofLongLong = 0x8
  10. sizeOfUtmpx = 197 // TODO why should 197
  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. // X__ut_spare [64]int8
  33. }
  34. type Timeval struct {
  35. Sec [4]byte
  36. Usec [3]byte
  37. }