1. 23 Feb, 2008 2 commits
  2. 22 Feb, 2008 1 commit
  3. 21 Feb, 2008 3 commits
  4. 19 Feb, 2008 1 commit
    • vvaintroub@wva.'s avatar
      Bug#31745 - crash handler does not work on Windows · f5932c0d
      vvaintroub@wva. authored
      - Replace per-thread signal()'s with  SetUnhandledExceptionFilter(). 
        The only remaining signal() is for SIGABRT (default abort()
        handler in VS2005 is broken, i.e removes user exception filter)
      - remove MessageBox()'es  from error handling code
      - Windows port for print_stacktrace() and write_core() 
      - Cleanup, removed some unused functions
      f5932c0d
  5. 18 Feb, 2008 4 commits
  6. 14 Feb, 2008 1 commit
  7. 13 Feb, 2008 3 commits
  8. 12 Feb, 2008 2 commits
  9. 11 Feb, 2008 4 commits
  10. 08 Feb, 2008 2 commits
  11. 07 Feb, 2008 6 commits
  12. 06 Feb, 2008 9 commits
  13. 05 Feb, 2008 2 commits
    • tsmith@ramayana.hindu.god's avatar
      Merge ramayana.hindu.god:/home/tsmith/m/bk/50 · 6726c9e3
      tsmith@ramayana.hindu.god authored
      into  ramayana.hindu.god:/home/tsmith/m/bk/build/50
      6726c9e3
    • aelkin/elkin@koti.dsl.inet.fi's avatar
      Bug #34305 show slave status handling segfaults when slave io is about · 51b33ea3
      aelkin/elkin@koti.dsl.inet.fi authored
          to leave
      
      The artifact was caused by
      a flaw in concurrent accessing the slave's io thd by
      the io itself and a handling show slave status thread.
      Namely, show_master_info did not acquire mi->run_lock mutex that is
      specified for mi->io_thd member.
      
      Fixed with deploying the mutex locking and unlocking. The mutex is kept
      short time and without interleaving with mi->data_lock mutex.
      
      Todo: to report and fix an issue with 
          sys_var_slave_skip_counter::{methods} 
      seem to acquire incorrectly
           active_mi->rli.run_lock
      instead of the specified
           active_mi->rli.data_lock
      
      A test case is difficult to compose, so rpl_packet should continue serving
      as the indicator.
      51b33ea3