1. 02 Jan, 2013 2 commits
  2. 04 Dec, 2012 4 commits
  3. 22 Nov, 2012 1 commit
  4. 21 Nov, 2012 1 commit
  5. 17 Nov, 2012 1 commit
  6. 14 Nov, 2012 1 commit
  7. 09 Nov, 2012 4 commits
  8. 29 Oct, 2012 1 commit
  9. 24 Oct, 2012 1 commit
  10. 18 Oct, 2012 1 commit
  11. 21 Sep, 2012 1 commit
  12. 27 Aug, 2012 1 commit
    • Arthur O'Dwyer's avatar
      Silence all "unused parameter" warnings from Clang. · 3b984d40
      Arthur O'Dwyer authored
      Compiling without warnings is a good goal, because it makes
      new warnings (which probably indicate bugs) stand out rather
      than getting lost in the spam.
      
      My fixes fall into two categories:
      
          - Adding (void) casts of unused parameters, where their
            unusedness seems like a TODO (or in some cases a bug?).
      
          - Removing parameter names altogether, where the function
            is clearly a stub that will never use its parameters.
      
      Should be no change in behavior.
      3b984d40
  13. 26 Aug, 2012 2 commits
  14. 24 Aug, 2012 1 commit
    • Arthur O'Dwyer's avatar
      Fix monitor_event() to work at all. · 7fadd708
      Arthur O'Dwyer authored
      There are three versions of monitor_event(), all taking
      variadic arguments. The original code just has the first one
      creating a va_list and passing that va_list variadically to
      the second one... which creates a new va_list and passes it
      variadically to the third one... and of course everything
      blows up when we try to pull a non-va_list argument off the
      stack.
      
      The correct approach matches the C standard library's use
      of printf/vprintf, scanf/vscanf, and so on. Once you make
      a va_list, you must pass it only to functions which expect
      a va_list parameter.
      7fadd708
  15. 11 Aug, 2012 1 commit
  16. 17 Jul, 2012 1 commit
  17. 06 Jul, 2012 1 commit
  18. 12 Jun, 2012 11 commits
  19. 08 Jun, 2012 3 commits
  20. 04 Jun, 2012 1 commit
    • Ian Barber's avatar
      On the advice of Martin Hurton, removed the new command type and just terminated… · c13f1d52
      Ian Barber authored
      On the advice of Martin Hurton, removed the new command type and just terminated the pipe in a reconnect situation, and notified the socket of the same. This handles the blocking properly, but at the cost of potentially losing in flight messages. However, this is a reasonable trade off given how much simpler it makes the patch.
      c13f1d52