Skip to content
Snippets Groups Projects
  1. Oct 25, 2020
  2. Oct 19, 2020
  3. Oct 15, 2020
  4. Sep 13, 2020
    • Daniil Bondarev's avatar
      Use safe_f! consistently across platforms · 773f5562
      Daniil Bondarev authored
      The pr #1870 introduced safe_f! macro, which made some functions like
      WIFEXITED and WEXITSTATUS const and safe on linux_like platform only,
      which causes inconsistency when trying to use those functions in crates
      compiled across multiple platforms, as using unsafe on those functions
      will generate unused_unsafe warning on linux platforms and lack of
      unsafe block will fail compilation on non-linux platforms.
      
      To avoid the inconsistency, this commit applies the same macro for all
      the same functions on other platforms too.
      773f5562
  5. Aug 24, 2020
  6. Aug 23, 2020
  7. Aug 22, 2020
  8. Aug 10, 2020
  9. Jul 27, 2020
  10. Jul 19, 2020
  11. Jul 09, 2020
  12. Jul 07, 2020
  13. Jul 06, 2020
  14. Jun 22, 2020
  15. May 28, 2020
  16. May 21, 2020
    • Valdemar Erk's avatar
      [FreeBSD] Add missing getnameinfo() flag values. · 5fec4c36
      Valdemar Erk authored
      
      This patchs adds missing flag values for getnameinfo()
      on FreeBSD, the following flags have been added from
      the FreeBSD tree.
      
       /*
        * Flag values for getnameinfo()
        */
       #define	NI_NOFQDN	0x00000001
       #define	NI_NUMERICHOST	0x00000002
       #define	NI_NAMEREQD	0x00000004
       #define	NI_NUMERICSERV	0x00000008
       #define	NI_DGRAM	0x00000010
       #define	NI_NUMERICSCOPE	0x00000020
      
      Signed-off-by: default avatarValdemar Erk <valdemar@erk.io>
      5fec4c36
  17. May 07, 2020
  18. May 01, 2020
  19. Apr 15, 2020
  20. Apr 13, 2020
  21. Mar 29, 2020
  22. Mar 01, 2020
  23. Feb 19, 2020
    • Vickenty Fesunov's avatar
      Add memmem · 1c012aec
      Vickenty Fesunov authored
      memmem is a non-standard extension, first added in GNU libc and later
      ported to other systems. Support for it is non-uniform, thus it was only
      added to platforms that seem to support it.
      1c012aec
  24. Feb 12, 2020
  25. Sep 27, 2019
  26. Sep 25, 2019
  27. Sep 20, 2019
Loading