1. 31 Oct, 2018 1 commit
  2. 03 Jan, 2017 1 commit
  3. 26 Feb, 2016 1 commit
  4. 01 Jan, 2015 1 commit
  5. 01 Mar, 2014 1 commit
  6. 23 Jan, 2014 1 commit
  7. 13 Jan, 2014 1 commit
  8. 17 Oct, 2013 1 commit
    • Max Kellermann's avatar
      fs/Path: rename to AllocatedPath · abfbd553
      Max Kellermann authored
      The new class Path only holds a string pointer without being
      responsible for allocation/deallocation.  The FileSystem.hxx library
      accepts Path arguments instead of AllocatedPath, to avoid forcing
      callers to allocate another string object.
      abfbd553
  9. 04 Sep, 2013 1 commit
  10. 07 Aug, 2013 1 commit
  11. 08 Apr, 2013 1 commit
  12. 10 Jan, 2013 1 commit
  13. 02 Aug, 2012 1 commit
  14. 09 Sep, 2011 2 commits
  15. 29 Jan, 2011 1 commit
  16. 23 Dec, 2010 1 commit
  17. 01 Jan, 2010 1 commit
  18. 08 Nov, 2009 1 commit
  19. 06 Nov, 2009 1 commit
  20. 13 Mar, 2009 1 commit
    • Avuton Olrich's avatar
      all: Update copyright header. · 0aee49bd
      Avuton Olrich authored
      This updates the copyright header to all be the same, which is
      pretty much an update of where to mail request for a copy of the GPL
      and the years of the MPD project. This also puts all committers under
      'The Music Player Project' umbrella. These entries should go
      individually in the AUTHORS file, for consistancy.
      0aee49bd
  21. 19 Feb, 2009 1 commit
    • Max Kellermann's avatar
      utils: use g_usleep() instead of my_usleep() · e7131b5d
      Max Kellermann authored
      Now that I've found this nice function in the GLib docs, we can
      finally remove our custom sleep function.  Still all those callers of
      g_usleep() have to be migrated one day to use events, instead of
      regular polling.
      e7131b5d
  22. 03 Jan, 2009 3 commits
  23. 30 Dec, 2008 1 commit
  24. 28 Dec, 2008 2 commits
  25. 09 Dec, 2008 1 commit
  26. 02 Dec, 2008 1 commit
  27. 22 Nov, 2008 1 commit
    • Laszlo Ashin's avatar
      utils: introduce assert_static() · 457a6f4b
      Laszlo Ashin authored
      assert_static() will help us to find false asserts in compile time. Of
      course it only works in case of expressions which can be evaluated
      compile time. It cannot be used in global scope.
      457a6f4b
  28. 01 Nov, 2008 1 commit
  29. 31 Oct, 2008 1 commit
    • Max Kellermann's avatar
      added prefix to header macros · ea515494
      Max Kellermann authored
      "LOG_H" is a macro which is also used by ffmpeg/log.h.  This is
      ffmpeg's fault, because short macros should be reserved for
      applications, but since it's always a good idea to choose prefixed
      macro names, even for applications, we are going to do that in MPD.
      ea515494
  30. 29 Oct, 2008 1 commit
  31. 28 Oct, 2008 1 commit
  32. 15 Oct, 2008 1 commit
  33. 08 Oct, 2008 1 commit
  34. 23 Sep, 2008 1 commit
    • Eric Wong's avatar
      Add prefixcmp() (stol^H^H^H^Hborrowed from git) · f5df13f8
      Eric Wong authored
      This allows us to avoid the nasty repetition in strncmp(foo,
      bar, strlen(foo)).  We'll miss out on the compiler optimizing
      strlen() into sizeof() - 1 for string literals for this; but we
      don't use this it for performance-critical functions anyways...
      f5df13f8
  35. 29 Aug, 2008 1 commit
    • Max Kellermann's avatar
      added xfree() which takes a const pointer · f42de62a
      Max Kellermann authored
      Unfortunately, the C standard postulates that the argument to free()
      must be non-const.  This does not makes sense, and virtually prevents
      every pointer which must be freed at some time to be non-const.  Use
      the deconst hack (sorry for that) to allow us to free constant
      pointers.
      f42de62a
  36. 30 Jun, 2008 1 commit