clockvector: fix 'happens_before', change name to 'synchronized_since'
[c11tester.git] / threads.cc
index 80957adf7b1709c015b4a30bc82deacc98767b92..37b0f1a87ee6fb9ac975a84c8df9adf018d808c5 100644 (file)
@@ -9,12 +9,12 @@
 
 static void * stack_allocate(size_t size)
 {
-       return userMalloc(size);
+       return malloc(size);
 }
 
 static void stack_free(void *stack)
 {
-       userFree(stack);
+       free(stack);
 }
 
 Thread * thread_current(void)
@@ -25,7 +25,7 @@ Thread * thread_current(void)
 /* This method just gets around makecontext not being 64-bit clean */
 
 void thread_startup() {
-       Thread * curr_thread=thread_current();
+       Thread * curr_thread = thread_current();
        curr_thread->start_routine(curr_thread->arg);
 }