Skip to content
Snippets Groups Projects
  1. Aug 19, 2011
  2. Aug 15, 2011
  3. Aug 12, 2011
    • Robert Morris's avatar
      log write() data · 2e590463
      Robert Morris authored
      usertest for big write()s
      push begin_trans/commit_trans down into syscalls
      2e590463
  4. Aug 08, 2011
  5. Aug 07, 2011
  6. Feb 19, 2011
  7. Jan 11, 2011
    • Russ Cox's avatar
      make new code like old code · 1a81e38b
      Russ Cox authored
      Variable declarations at top of function,
      separate from initialization.
      
      Use == 0 instead of ! for checking pointers.
      
      Consistent spacing around {, *, casts.
      
      Declare 0-parameter functions as (void) not ().
      
      Integer valued functions return -1 on failure, 0 on success.
      1a81e38b
  8. Sep 27, 2010
  9. Sep 20, 2010
  10. Sep 19, 2010
  11. Sep 01, 2010
  12. Aug 31, 2010
  13. Aug 11, 2010
  14. Aug 10, 2010
  15. Aug 06, 2010
  16. Aug 05, 2010
  17. May 30, 2009
    • rsc's avatar
      · 34295f46
      rsc authored
      group locks into structs they protect.
      few naming nits.
      34295f46
  18. Sep 27, 2007
  19. Sep 26, 2007
    • rsc's avatar
      believe it or not, this was working · 666f58c7
      rsc authored
      the macro expansion of "char *cp;" turned into
      char *(curproc[cpu()]);  which declares a dynamically
      sized array of char* called curproc.
      
      so then &cp == &(curproc[cpu()]) was actually a
      stack variable as "expected".  it was one past the
      end of the array, but the implicit alloca allocated
      more than was necessary.
      
      do not tell me that making cp a #define was a bad idea.
      there are worse problems to fix.  more on that later.
      666f58c7
    • rsc's avatar
      debugging prints · 56c1a151
      rsc authored
      56c1a151
  20. Aug 24, 2007
  21. Aug 21, 2007
  22. Aug 20, 2007
  23. Aug 10, 2007
  24. Aug 08, 2007
  25. Sep 07, 2006
  26. Sep 06, 2006
  27. Aug 29, 2006
  28. Aug 24, 2006
Loading