7 #include "model-assert.h"
16 /** Making CAS in steal() (w39) SC */
18 static void task(void * param) {
23 int user_main(int argc, char **argv)
31 thrd_create(&t1, task, 0);
33 printf("take: a=%d\n", a);
37 bool correct= b == 1 && c == 2 && a == 2 ;
38 MODEL_ASSERT(!correct);
41 if (a!=1 && a!=2 && a!=4 && a!= EMPTY)
43 if (b!=1 && b!=2 && b!=4 && b!= EMPTY)
45 if (c!=1 && c!=2 && c!=4 && a!= EMPTY)
47 if (a!=EMPTY && b!=EMPTY && c!=EMPTY && (a+b+c)!=7)
50 printf("a=%d b=%d c=%d\n",a,b,c);
51 MODEL_ASSERT(correct);