Browse Source

+ missing function

git-svn-id: trunk@774 -
florian 20 years ago
parent
commit
8eafc28238
1 changed files with 1 additions and 0 deletions
  1. 1 0
      packages/base/libc/pthreadh.inc

+ 1 - 0
packages/base/libc/pthreadh.inc

@@ -56,6 +56,7 @@ Type
   TInitOnceProc = Procedure;cdecl;
   TInitOnceProc = Procedure;cdecl;
   TForkHandler = procedure; cdecl;
   TForkHandler = procedure; cdecl;
 
 
+procedure __pthread_initialize;cdecl;external threadslib name '__pthread_initialize';
 function pthread_create(__thread:Ppthread_t; __attr:Ppthread_attr_t; __start_routine:TStartRoutine; __arg:pointer):longint;cdecl;external threadslib name 'pthread_create';
 function pthread_create(__thread:Ppthread_t; __attr:Ppthread_attr_t; __start_routine:TStartRoutine; __arg:pointer):longint;cdecl;external threadslib name 'pthread_create';
 function pthread_self:pthread_t;cdecl;external threadslib name 'pthread_self';
 function pthread_self:pthread_t;cdecl;external threadslib name 'pthread_self';
 function pthread_equal(__thread1:pthread_t; __thread2:pthread_t):longint;cdecl;external threadslib name 'pthread_equal';
 function pthread_equal(__thread1:pthread_t; __thread2:pthread_t):longint;cdecl;external threadslib name 'pthread_equal';