X-Git-Url: http://plrg.eecs.uci.edu/git/?a=blobdiff_plain;f=libthreads.cc;h=5ff106c8535982bd82835366a0444ce77c0f300e;hb=1f9c3f15084ce33069f8070cbad83270265d50ea;hp=ca69fdabdfcd6956086b4b424ab5a1956ea3757d;hpb=f186d74da258bf0a24b57b13a10b40641e09efd6;p=c11tester.git diff --git a/libthreads.cc b/libthreads.cc index ca69fdab..5ff106c8 100644 --- a/libthreads.cc +++ b/libthreads.cc @@ -12,7 +12,7 @@ */ int thrd_create(thrd_t *t, thrd_start_t start_routine, void *arg) { - struct thread_params params = { start_routine, arg }; + struct thread_params params = { start_routine, arg }; /* seq_cst is just a 'don't care' parameter */ model->switch_to_master(new ModelAction(THREAD_CREATE, std::memory_order_seq_cst, t, (uint64_t)¶ms)); return 0;