1. 03 Jan, 2017 1 commit
  2. 01 Mar, 2016 1 commit
  3. 26 Feb, 2016 1 commit
  4. 16 Dec, 2015 1 commit
  5. 01 Jan, 2015 1 commit
  6. 01 Mar, 2014 1 commit
  7. 23 Jan, 2014 1 commit
  8. 13 Jan, 2014 1 commit
  9. 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
  10. 04 Sep, 2013 1 commit
  11. 07 Aug, 2013 1 commit
  12. 08 Apr, 2013 1 commit
  13. 10 Jan, 2013 1 commit
  14. 02 Aug, 2012 1 commit
  15. 09 Sep, 2011 2 commits
  16. 29 Jan, 2011 1 commit
  17. 23 Dec, 2010 1 commit
  18. 01 Jan, 2010 1 commit
  19. 08 Nov, 2009 1 commit
  20. 06 Nov, 2009 1 commit
  21. 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
  22. 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
  23. 03 Jan, 2009 3 commits
  24. 30 Dec, 2008 1 commit
  25. 28 Dec, 2008 2 commits
  26. 09 Dec, 2008 1 commit
  27. 02 Dec, 2008 1 commit
  28. 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
  29. 01 Nov, 2008 1 commit
  30. 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
  31. 29 Oct, 2008 1 commit
  32. 28 Oct, 2008 1 commit
  33. 15 Oct, 2008 1 commit
  34. 08 Oct, 2008 1 commit
  35. 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
  36. 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