c11tester.git
2012-04-18 Brian Norristree: add class TreeNode
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 Norrisrename binary: libthreads -> model
2012-04-16 Brian Norrislibthreads: split into libthreads and threads
2012-04-16 Brian Norrismajor rewrite - 'struct thread' replaced with internal...
2012-04-16 Brian NorrisMakefile: add debug compilation flag
2012-04-10 Brian Norrisscheduler: kill 'replaceable' scheduler
2012-04-10 Brian Norrislibthreads: print out trace at end of execution
2012-04-10 Brian Norrismodel: add print_trace() function
2012-04-10 Brian Norrislibthreads: perform 'model checking' when moving to...
2012-04-10 Brian Norrisuserprog: use both atomic loads and stores
2012-04-10 Brian Norrismodel: add check_current_action() function
2012-04-10 Brian Norrislibthreads: thread_join: return 'int' as status
2012-04-10 Brian Norristhreads_internal: pass the current 'action' to the...
2012-04-10 Brian Norrismodel: add class ModelAction
2012-04-10 Brian Norristhreads_internal: add 'thread_switch_to_master()' inter...
2012-04-05 Brian Norrislibthreads: make typedef for 'thread_id_t'
2012-04-05 Brian Norrisuse my{Malloc,Free} in model-checking code
2012-04-05 Brian Norrismalloc: override 'new' and 'delete' globally
2012-04-05 Brian Norrismalloc: add myMalloc() and myFree()
2012-04-05 Brian Norriscommon: rename "CONFIG" to "COMMON"
2012-03-15 Brian Norrisschedule: use STL 'queue' instead of 'list'
2012-03-15 Brian Norrisremove unnecessary #includes
2012-03-15 Brian Norrisschedule: make 'current' a private member of the scheduler
2012-03-15 Brian Norrisschedule: use STL list class instead of custom queue
2012-03-14 Brian Norrisrename other *.c to *.cc
2012-03-14 Brian Norrisschedule: move schedule.c --> schedule.cc
2012-03-14 Brian Norrisschedule: create 'class Scheduler' with implementation...
2012-03-14 Brian Norrislibthreads: delete allocated object
2012-03-14 Brian Norrismodel: use 'this' uniformly
2012-03-14 Brian Norrismodel: move model.c --> model.cc
2012-03-14 Brian Norrismodel: change 'struct model_checker' to 'class ModelChe...
2012-03-14 Brian NorrisMakefile: switch to C++ builds
2012-03-13 Brian Norrisstricter typing of function pointers for makecontext()
2012-03-13 Brian NorrisC++: don't use C++ keywords as names (this, new, etc.)
2012-03-13 Brian NorrisC++: cast result of malloc
2012-03-13 Brian Norristerminology - use 'thread id' instead of 'thread index'
2012-03-13 Brian Norrislibthreads: use model-checker's thread ID assignment
2012-03-13 Brian Norrismodel: add thread ID assignment function
2012-03-13 Brian Norrislibthreads: separate private functions from user interface
2012-03-13 Brian Norrislibthreads: perform all scheduling/model-checking from...
2012-03-13 Brian Norrislibthreads: add THREAD_* states
2012-03-12 Brian Norrisschedule: exit if we run out of linked-list nodes
2012-03-12 Brian Norrismodel: move 'main_thread' to model_checker struct
2012-03-12 Brian Norrismove 'current thread' details
2012-03-12 Brian Norrislibthreads: utilize new model_checker framework
2012-03-12 Brian Norrismodel: add global model_checker initialization
2012-03-12 Brian Norrisschedule: add replaceable scheduler struct
2012-03-10 Brian Norrismodel: add stub model.[hc] files
2012-03-10 Brian Norrisuserprog: separate test 'program' out to userprog.c
2012-03-10 Brian Norrislibatomic: add stub atomic lib header/source
2012-03-10 Brian Norrislibthreads: use 'void' in argument list
2012-03-10 Brian Norrislibthreads: export thread_yield()
2012-03-10 Brian Norrisschedule: return next thread pointer directly
2012-03-10 Brian Norrisschedule: include libthreads.h
2012-03-10 Brian NorrisMakefile: turn on all warnings
2012-03-10 Brian Norrislibthreads: include schedule.h (previous mistake...)
2012-03-10 Brian NorrisMakefile: use ${CC} instead of hardcoding gcc
2012-03-10 Brian Norriscommon.h: move common code (non-user) to header
2012-03-10 Brian Norrislibthreads: add thread_current() function
2012-03-10 Brian Norrislibthreads: remove unused codepath
2012-03-10 Brian Norrislibthreads: cleanup startup/exit functions
2012-03-10 Brian Norrismodify "user program"
2012-03-10 Brian Norrisschedule: set thread to NULL when there is no next...
2012-03-09 Brian Norrisreformat DEBUG messages
2012-03-09 Brian Norrislibthreads: export thread_join() in header
2012-03-09 Brian Norrislibthreads: merge thread_create() and thread_start()
2012-03-09 Brian Norrisschedule: add scheduler, thread_yield(), etc.
2012-03-09 Brian Norrislibthreads: fixups
2012-03-09 Brian Norrislibthreads: cleanup main thread initialization
2012-03-09 Brian Norrisadd "make tags" (using `ctags`)
2012-03-08 Brian Norrislibthreads: create header file
2012-03-08 Brian Norrislibthreads: remove superfluous code
2012-03-08 Brian Norrisadd .gitignore
2012-03-08 Brian Norrisinitial commit