make scheduler choose fair schedules when threads with priority are sleeping...
[model-checker.git] / threads.cc
2012-10-09 Brian Norrismove libthreads.h -> include/threads.h
2012-10-09 Brian Norrisrename threads.h -> threads-model.h
2012-10-08 Brian Demskymerge massive speedup with release sequence support...
2012-10-08 Brian NorrisMerge branch 'norris'
2012-10-08 Brian Norristhreads: add constructor for model-checker thread
2012-10-08 Brian Norristhreads: add flag for a special type of "model-checker...
2012-10-04 Brian DemskyMerge branch 'master' of /home/git/model-checker
2012-10-04 Brian Norrisfixup more id vs. thread_id_t
2012-10-03 Brian DemskyMerge branch 'master' of /home/git/model-checker
2012-10-03 Brian Norrisreplace malloc/calloc/free with snapshot_{malloc/calloc...
2012-10-03 Brian Demskyrandom memory leak fixes and memory access fixes
2012-09-19 Brian Demskymerge stuff
2012-09-19 Brian Demskysupport for locks... untested, but doesn't break quick...
2012-09-07 Brian DemskyMerge branch 'master' of ssh://demsky.eecs.uci.edu...
2012-09-06 Brian NorrisMerge branch 'norris'
2012-09-06 Brian Norristhreads: add a wait_list
2012-09-06 Brian Norristhreads: add is_complete() helper function
2012-09-06 Brian Norrisaction: add THREAD_FINISH action
2012-08-16 Brian NorrisMerge branch 'norris'
2012-08-16 Brian Norristhreads: correct 'swap()' documentation
2012-08-16 Brian Norrisschedule, threads: update comments, const's
2012-08-16 Brian Norrismodel: make scheduler private
2012-08-11 Brian Norristhreads: trivial change
2012-08-08 Brian Norrismain, threads: improve comments regarding thread stepping
2012-08-02 Brian Norrisfixup whitespace
2012-08-02 Brian Demskymove more configurables and add documentation
2012-08-02 Brian Demskyfix my todo comments so they appear in documentation
2012-08-02 Brian Norrispull in most of atomic header file
2012-08-02 Brian Norrisupdate TODO's
2012-07-12 Brian NorrisMerge branch 'master' into brian
2012-07-11 Brian Norrisaction / threads: add THREAD_START action at start...
2012-07-11 Brian Norristhreads: use constructor initializer list
2012-07-07 Brian NorrisMerge branch 'datarace'
2012-07-07 Brian Norristhreads: add per-thread "return" values for 'model...
2012-07-06 Brian Norristrivial changes
2012-05-30 Subramanian GanapathyMerge branch 'master' of ssh://demsky.eecs.uci.edu...
2012-05-26 Brian Norristhreads: fixup stack allocation (snapshotting...)
2012-05-25 Brian Norrismore allocation fixes (use snapshotting)
2012-05-21 Brian Norrisfix indentation + spacing, esp. for MEMALLOC macro
2012-05-21 Brian NorrisMerge commit: branch 'work'
2012-05-21 Brian Demskyremove lines from other files
2012-05-21 Brian Demskyfix various problems with my 64-bit clean hack
2012-05-21 Brian Demskyfix code to be 64 bit clean
2012-05-18 Brian Demskymerging stuff...made need to clean up some stuff.....
2012-05-09 Subramanian GanapathyAdding STL stuff and operator news of snapshot to model...
2012-05-08 Brian Norrismain/threads: remove excess headers
2012-05-08 Brian Norrismain: split main() (and related functions) into main.cc
2012-05-03 Brian Norristhreads: add parent info + get_parent() method
2012-05-03 Brian Norrisreplace non-fatal error messages with ASSERT()'s
2012-05-02 Brian Norristhreads: don't call the userprogram interface for initi...
2012-04-27 Brian Norristhread: remove dead Thread code
2012-04-26 Brian Norrisdemote 'system_thread' to just 'system_context'
2012-04-26 Brian Norrismodel: bugfix - reset the "current_action" after it...
2012-04-24 Brian Norristhreads: allocate Threads in via userMalloc()
2012-04-24 Brian Norriscommon: introduce userMalloc() and userFree()
2012-04-24 Brian Norrismodel: rename print_trace() -> print_summary(), fixup...
2012-04-24 Brian Norristhreads: cleanup inconsistencies in memory management
2012-04-24 Brian Norristhreads: set up Thread to be freed properly
2012-04-24 Brian Norristhreads: don't make direct call into scheduler
2012-04-24 Brian Norristhreads: save id within class Thread
2012-04-24 Brian Norristhreads: initialized Thread member variables
2012-04-24 Brian Norrisunify style for returning pointers
2012-04-24 Brian Norristhreads: prepare system to loop over many executions
2012-04-17 Brian Norrisrename threads_internal.h -> threads.h
2012-04-17 Brian Norristhreads/model: move switch_to_master from class Thread...
2012-04-16 Brian Norrislibthreads: split into libthreads and threads