host_linux_mipsle.go 687 B

12345678910111213141516171819202122232425262728293031323334353637383940414243
  1. // Created by cgo -godefs - DO NOT EDIT
  2. // cgo -godefs types_linux.go
  3. package host
  4. const (
  5. sizeofPtr = 0x4
  6. sizeofShort = 0x2
  7. sizeofInt = 0x4
  8. sizeofLong = 0x4
  9. sizeofLongLong = 0x8
  10. sizeOfUtmp = 0x180
  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. Type int16
  20. Pad_cgo_0 [2]byte
  21. Pid int32
  22. Line [32]int8
  23. Id [4]int8
  24. User [32]int8
  25. Host [256]int8
  26. Exit exit_status
  27. Session int32
  28. Tv timeval
  29. Addr_v6 [4]int32
  30. X__unused [20]int8
  31. }
  32. type exit_status struct {
  33. Termination int16
  34. Exit int16
  35. }
  36. type timeval struct {
  37. Sec int32
  38. Usec int32
  39. }