Removed the pthread_once() function because it doesn't actually do

what it's supposed to do.
Just leave this library as a dummy library for now until we have time to
port a real pthread library (or get glibc working).


git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@10368 91177308-0d34-0410-b5e6-96231b3b80d8
This commit is contained in:
John Criswell 2003-12-10 15:43:07 +00:00
parent 381bf79ae1
commit 5be28c59c6

View File

@ -1,8 +1 @@
#include <pthread.h>
int
pthread_once (pthread_once_t * control, void (*func) (void))
{
return 0;
}