/third_party/rust/libc/v0_2/crate/src/unix/newlib/espidf/mod.rs

https://github.com/chromium/chromium · Rust · 103 lines · 86 code · 17 blank · 0 comment · 0 complexity · d4653b5976e8ae9840fd51bf0e2846dc MD5 · raw file

  1. pub type clock_t = ::c_ulong;
  2. pub type c_char = i8;
  3. pub type wchar_t = u32;
  4. pub type c_long = i32;
  5. pub type c_ulong = u32;
  6. s! {
  7. pub struct cmsghdr {
  8. pub cmsg_len: ::socklen_t,
  9. pub cmsg_level: ::c_int,
  10. pub cmsg_type: ::c_int,
  11. }
  12. pub struct msghdr {
  13. pub msg_name: *mut ::c_void,
  14. pub msg_namelen: ::socklen_t,
  15. pub msg_iov: *mut ::iovec,
  16. pub msg_iovlen: ::c_int,
  17. pub msg_control: *mut ::c_void,
  18. pub msg_controllen: ::socklen_t,
  19. pub msg_flags: ::c_int,
  20. }
  21. pub struct sockaddr_un {
  22. pub sun_family: ::sa_family_t,
  23. pub sun_path: [::c_char; 108],
  24. }
  25. pub struct sockaddr {
  26. pub sa_len: u8,
  27. pub sa_family: ::sa_family_t,
  28. pub sa_data: [::c_char; 14],
  29. }
  30. pub struct sockaddr_in6 {
  31. pub sin6_len: u8,
  32. pub sin6_family: ::sa_family_t,
  33. pub sin6_port: ::in_port_t,
  34. pub sin6_flowinfo: u32,
  35. pub sin6_addr: ::in6_addr,
  36. pub sin6_scope_id: u32,
  37. }
  38. pub struct sockaddr_in {
  39. pub sin_len: u8,
  40. pub sin_family: ::sa_family_t,
  41. pub sin_port: ::in_port_t,
  42. pub sin_addr: ::in_addr,
  43. pub sin_zero: [::c_char; 8],
  44. }
  45. pub struct sockaddr_storage {
  46. pub s2_len: u8,
  47. pub ss_family: ::sa_family_t,
  48. pub s2_data1: [::c_char; 2],
  49. pub s2_data2: [u32; 3],
  50. pub s2_data3: [u32; 3],
  51. }
  52. }
  53. pub const AF_UNIX: ::c_int = 1;
  54. pub const AF_INET6: ::c_int = 10;
  55. pub const FIONBIO: ::c_ulong = 2147772030;
  56. pub const POLLIN: ::c_short = 1 << 0;
  57. pub const POLLRDNORM: ::c_short = 1 << 1;
  58. pub const POLLRDBAND: ::c_short = 1 << 2;
  59. pub const POLLPRI: ::c_short = POLLRDBAND;
  60. pub const POLLOUT: ::c_short = 1 << 3;
  61. pub const POLLWRNORM: ::c_short = POLLOUT;
  62. pub const POLLWRBAND: ::c_short = 1 << 4;
  63. pub const POLLERR: ::c_short = 1 << 5;
  64. pub const POLLHUP: ::c_short = 1 << 6;
  65. pub const SOL_SOCKET: ::c_int = 0xfff;
  66. pub const MSG_OOB: ::c_int = 0x04;
  67. pub const MSG_PEEK: ::c_int = 0x01;
  68. pub const MSG_DONTWAIT: ::c_int = 0x08;
  69. pub const MSG_DONTROUTE: ::c_int = 0x4;
  70. pub const MSG_WAITALL: ::c_int = 0x02;
  71. pub const MSG_MORE: ::c_int = 0x10;
  72. pub const MSG_NOSIGNAL: ::c_int = 0x20;
  73. pub const PTHREAD_STACK_MIN: ::size_t = 768;
  74. extern "C" {
  75. pub fn pthread_create(
  76. native: *mut ::pthread_t,
  77. attr: *const ::pthread_attr_t,
  78. f: extern "C" fn(_: *mut ::c_void) -> *mut ::c_void,
  79. value: *mut ::c_void,
  80. ) -> ::c_int;
  81. pub fn getrandom(buf: *mut ::c_void, buflen: ::size_t, flags: ::c_uint) -> ::ssize_t;
  82. #[link_name = "lwip_sendmsg"]
  83. pub fn sendmsg(s: ::c_int, msg: *const ::msghdr, flags: ::c_int) -> ::ssize_t;
  84. #[link_name = "lwip_recvmsg"]
  85. pub fn recvmsg(s: ::c_int, msg: *mut ::msghdr, flags: ::c_int) -> ::ssize_t;
  86. }