From: weiyu Date: Wed, 29 May 2019 00:02:31 +0000 (-0700) Subject: clean up X-Git-Url: http://plrg.eecs.uci.edu/git/?a=commitdiff_plain;h=df985eb69ed57df60c1ab58f157d6e53999bf173;p=c11tester.git clean up --- diff --git a/pthread.cc b/pthread.cc index 3f642951..dec0ddf7 100644 --- a/pthread.cc +++ b/pthread.cc @@ -218,14 +218,3 @@ int pthread_cond_signal(pthread_cond_t *p_cond) { v->notify_one(); return 0; } - -void pthread_cleanup_push(void (*routine)(void*), void *arg ) { - printf("pthrea cleanup push called\n"); -} - -int pthread_once (pthread_once_t *__once_control, - void (*__init_routine)) { - printf("pthread once is called\n"); -} - -