X-Git-Url: http://demsky.eecs.uci.edu/git/?a=blobdiff_plain;f=libthreads.cc;h=05cca8646a3daf69db7c2992e70e540c893dccf2;hb=26d1dd1430da05b8da4b1250b299a620ecd52102;hp=2b2bf85ac374b2a57ab85b2ddfb82f184c6372ea;hpb=98952a7c75650993548c6fda82273e3460268a86;p=model-checker.git diff --git a/libthreads.cc b/libthreads.cc index 2b2bf85..05cca86 100644 --- a/libthreads.cc +++ b/libthreads.cc @@ -27,10 +27,10 @@ int thrd_join(thrd_t t) return 0; } -int thrd_yield(void) +/** A no-op, for now */ +void thrd_yield(void) { - /* seq_cst is just a 'don't care' parameter */ - return model->switch_to_master(new ModelAction(THREAD_YIELD, std::memory_order_seq_cst, NULL, VALUE_NONE)); + //model->switch_to_master(new ModelAction(THREAD_YIELD, std::memory_order_seq_cst, thread_current(), VALUE_NONE)); } thrd_t thrd_current(void)