1. 08 Oct, 2008 1 commit
  2. 03 Jan, 2008 1 commit
    • Eric Wong's avatar
      Cleanup #includes of standard system headers and put them in one place · cb8f1af3
      Eric Wong authored
      This will make refactoring features easier, especially now that
      pthreads support and larger refactorings are on the horizon.
      
      Hopefully, this will make porting to other platforms (even
      non-UNIX-like ones for masochists) easier, too.
      
      os_compat.h will house all the #includes for system headers
      considered to be the "core" of MPD.  Headers for optional
      features will be left to individual source files.
      
      git-svn-id: https://svn.musicpd.org/mpd/trunk@7130 09075e82-0dd4-0310-85a5-a0d7c8717e4f
      cb8f1af3
  3. 27 Aug, 2007 1 commit
    • Eric Wong's avatar
      export FATAL() with noreturn attribute · 0f2e9ee6
      Eric Wong authored
      This attribute was set in log.c, but not exported to other
      modules in log.h
      
      This allows us to remove some unneccessary variable
      initializations that were added in r6277.  I did
      audioOutput_shout.c a bit differently, to avoid some
      jumps.
      
      before:
      $ size src/mpd
      text    data     bss     dec     hex filename
      225546    4040   14600  244186   3b9da src/mpd
      
      after:
      $ size src/mpd
      text    data     bss     dec     hex filename
      224698    4040   14600  243338   3b68a src/mpd
      
      git-svn-id: https://svn.musicpd.org/mpd/trunk@6821 09075e82-0dd4-0310-85a5-a0d7c8717e4f
      0f2e9ee6
  4. 05 Apr, 2007 1 commit
  5. 26 Aug, 2006 1 commit
    • Eric Wong's avatar
      Replace strdup and {c,re,m}alloc with x* variants to check for OOM errors · 90847fc8
      Eric Wong authored
      I'm checking for zero-size allocations and assert()-ing them,
      so we can more easily get backtraces and debug problems, but we'll
      also allow -DNDEBUG people to live on the edge if they wish.
      
      We do not rely on errno when checking for OOM errors because
      some implementations of malloc do not set it, and malloc
      is commonly overridden by userspace wrappers.
      
      I've spent some time looking through the source and didn't find any
      obvious places where we would explicitly allocate 0 bytes, so we
      shouldn't trip any of those assertions.
      
      We also avoid allocating zero bytes because C libraries don't
      handle this consistently (some return NULL, some not); and it's
      dangerous either way.
      
      git-svn-id: https://svn.musicpd.org/mpd/trunk@4690 09075e82-0dd4-0310-85a5-a0d7c8717e4f
      90847fc8
  6. 20 Aug, 2006 1 commit
  7. 12 Aug, 2006 1 commit
  8. 01 Aug, 2006 1 commit
    • Eric Wong's avatar
      logging cleanups · 89073cfb
      Eric Wong authored
      * Moved all logging-related stuff into log.c
      (and not myfprintf.c)
      
      * ISO C90-compliant strftime usage:
      %e and %R replaced with %d and %H:%M respectively
      
      * Got rid of variadic macros since some old-school compilers
      don't like them
      
      * compiling with -DNDEBUG disables the DEBUG() macro
      
      git-svn-id: https://svn.musicpd.org/mpd/trunk@4512 09075e82-0dd4-0310-85a5-a0d7c8717e4f
      89073cfb
  9. 30 Jul, 2006 1 commit
  10. 20 Jul, 2006 1 commit
  11. 14 Jul, 2006 1 commit
  12. 13 Jul, 2006 1 commit
  13. 12 Jun, 2004 1 commit
  14. 29 May, 2004 1 commit
  15. 14 Apr, 2004 1 commit
  16. 18 Mar, 2004 1 commit
  17. 25 Feb, 2004 2 commits
  18. 23 Feb, 2004 1 commit