1. 18 Oct, 2008 6 commits
  2. 17 Oct, 2008 6 commits
  3. 13 Oct, 2008 1 commit
  4. 12 Oct, 2008 2 commits
  5. 11 Oct, 2008 1 commit
  6. 10 Oct, 2008 2 commits
  7. 27 Sep, 2008 1 commit
    • Jim Fulton's avatar
      We recently added estimated_size. We originally added it as a new · dc125607
      Jim Fulton authored
      unsigned long field after a signed char state field and a 3-character
      reserved field.  This didn't work because there are packages in the
      wild that have their own copies of cPersistence.h that didn't see the
      update.
      
      To get around this, we used the reserved space by making
      estimated_size a 24-bit bit field in the space occupied by the old
      3-character reserved field.  To fit in 24 bits, we made the units of
      estimated_size 64-character blocks.  This allows is to handle up to a
      GB.  We should never see that, but to be paranoid, we also truncate
      sizes greater than 1GB.  We also set the minimum size to 64 bytes.
      dc125607
  8. 26 Sep, 2008 1 commit
  9. 24 Sep, 2008 2 commits
  10. 23 Sep, 2008 5 commits
  11. 22 Sep, 2008 2 commits
  12. 18 Sep, 2008 5 commits
  13. 17 Sep, 2008 2 commits
  14. 11 Sep, 2008 1 commit
  15. 10 Sep, 2008 1 commit
  16. 06 Sep, 2008 1 commit
  17. 05 Sep, 2008 1 commit
    • Jim Fulton's avatar
      Fixed a possible problem with management of server connection · a8ab748f
      Jim Fulton authored
      triggers.  Now that server triggers are shared, it makes no sense to
      close them.  It's possible that the old logic in _pull_trigger got
      around the potential problem intriduced when I made the server trigger
      shared. I can't think of a good reason, otherwise, why tests weren't
      failing.
      
      Getting rid of close trigger simplified the code a bit. Also factored
      some common close behavior, allowing me to get rid of an override.
      a8ab748f