clean up
authorweiyu <weiyuluo1232@gmail.com>
Wed, 29 May 2019 00:02:31 +0000 (17:02 -0700)
committerweiyu <weiyuluo1232@gmail.com>
Wed, 29 May 2019 00:02:31 +0000 (17:02 -0700)
pthread.cc

index 3f642951c1d848c470fe80e2df3c1230f164715a..dec0ddf7538ab481c237d2a53e1a8c4e2400dbde 100644 (file)
@@ -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");
-}
-
-