From df985eb69ed57df60c1ab58f157d6e53999bf173 Mon Sep 17 00:00:00 2001 From: weiyu Date: Tue, 28 May 2019 17:02:31 -0700 Subject: [PATCH] clean up --- pthread.cc | 11 ----------- 1 file changed, 11 deletions(-) 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"); -} - - -- 2.34.1