host_linux_ppc64le.go 817 B

123456789101112131415161718192021222324252627282930313233343536373839404142434445
  1. // +build linux
  2. // +build ppc64le
  3. // Created by cgo -godefs - DO NOT EDIT
  4. // cgo -godefs types_linux.go
  5. package host
  6. const (
  7. sizeofPtr = 0x8
  8. sizeofShort = 0x2
  9. sizeofInt = 0x4
  10. sizeofLong = 0x8
  11. sizeofLongLong = 0x8
  12. sizeOfUtmp = 0x180
  13. )
  14. type (
  15. _C_short int16
  16. _C_int int32
  17. _C_long int64
  18. _C_long_long int64
  19. )
  20. type utmp struct {
  21. Type int16
  22. Pad_cgo_0 [2]byte
  23. Pid int32
  24. Line [32]int8
  25. Id [4]int8
  26. User [32]int8
  27. Host [256]int8
  28. Exit exit_status
  29. Session int32
  30. Tv timeval
  31. Addr_v6 [4]int32
  32. X__glibc_reserved [20]int8
  33. }
  34. type exit_status struct {
  35. Termination int16
  36. Exit int16
  37. }
  38. type timeval struct {
  39. Sec int64
  40. Usec int64
  41. }