diff options
-rw-r--r-- | ChangeLog | 7 | ||||
-rw-r--r-- | process.h | 16 | ||||
-rw-r--r-- | pthread.h | 2 |
3 files changed, 8 insertions, 17 deletions
@@ -1,3 +1,10 @@ +1998-10-03 Ben Elliston <bje@cygnus.com> + + * process.h: Remove. This was a stand-in before we started doing + native compilation under Win32. + + * pthread.h (pthread_mutex_init): Make `attr' argument const. + 1998-10-02 Ben Elliston <bje@cygnus.com> * COPYING: Remove. diff --git a/process.h b/process.h deleted file mode 100644 index 7f0b5ea..0000000 --- a/process.h +++ /dev/null @@ -1,16 +0,0 @@ -/* - * process.h - * - * Temporary stand-in for Win32 process.h - * - */ - -HANDLE _beginthreadex(LPSECURITY_ATTRIBUTES security, - DWORD stack, - unsigned (* start_routine)(void *), - LPVOID param, - DWORD flags, - LPDWORD threadID); - -VOID _endthreadex(DWORD); - @@ -239,7 +239,7 @@ int pthread_cond_destroy(pthread_cond_t *cv); /* Primitives for mutexes. */ int pthread_mutex_init(pthread_mutex_t *mutex, - pthread_mutexattr_t *attr); + const pthread_mutexattr_t *attr); int pthread_mutex_destroy(pthread_mutex_t *mutex); |