blob: 0ea7d4185a41aa86217a7205a0265c7469185b83 [file] [log] [blame]
@@
expression RV;
expression RVF;
expression RVFA;
@@
-sleep(RV, RVF, RVFA);
+rendez_sleep(RV, RVF, RVFA);
// i'm assuming this one runs first, matches all the return0s, which really
// just want to delay in place (I think).
@@
expression RV;
expression RVTO;
@@
-tsleep(RV, return0, 0, RVTO);
+kthread_usleep(RVTO * 1000);
// and then this one catches all real usage of rendez_sleep_timeout
@@
expression RV;
expression RVF;
expression RVFA;
expression RVTO;
@@
-tsleep(RV, RVF, RVFA, RVTO);
+rendez_sleep_timeout(RV, RVF, RVFA, RVTO * 1000);
@@
expression RV;
@@
-wakeup(RV);
+rendez_wakeup(RV);