summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorbje <bje>1998-10-04 23:01:58 +0000
committerbje <bje>1998-10-04 23:01:58 +0000
commit2363e35bd8151df977e1451f741c2fe48e64304c (patch)
treebdddf08ebe58888997f29c1fe876322108b2876b
parent46f41765e5df9e8c77e54c7e13e46796080920e2 (diff)
1998-10-05 Ben Elliston <bje@cygnus.com>
* pthread.def: Update. Some functions aren't available yet, others are macros in <pthread.h>. * tests/join.c: Remove; useless.
-rw-r--r--ChangeLog7
-rw-r--r--pthread.def20
-rw-r--r--tests/join.c12
3 files changed, 17 insertions, 22 deletions
diff --git a/ChangeLog b/ChangeLog
index ca4d371..966a130 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,10 @@
+1998-10-05 Ben Elliston <bje@cygnus.com>
+
+ * pthread.def: Update. Some functions aren't available yet, others
+ are macros in <pthread.h>.
+
+ * tests/join.c: Remove; useless.
+
Mon Oct 5 14:25:08 1998 Ross Johnson <rpj@ixobrychus.canberra.edu.au>
* pthread.def: New file for building the DLL.
diff --git a/pthread.def b/pthread.def
index 2d28ac3..63687f5 100644
--- a/pthread.def
+++ b/pthread.def
@@ -1,11 +1,11 @@
; pthread.def
-; Last updated: $Date: 1998/10/04 22:12:52 $
+; Last updated: $Date: 1998/10/04 23:01:59 $
; Currently unimplemented functions are commented out.
LIBRARY pthread
-EXPORT
+EXPORTS
pthread_atfork
pthread_attr_destroy
pthread_attr_getdetachstate
@@ -13,7 +13,7 @@ pthread_attr_getdetachstate
pthread_attr_getschedparam
;pthread_attr_getschedpolicy
;pthread_attr_getscope
-pthread_attr_getstackaddr
+;pthread_attr_getstackaddr
pthread_attr_getstacksize
pthread_attr_init
pthread_attr_setdetachstate
@@ -21,11 +21,11 @@ pthread_attr_setdetachstate
pthread_attr_setschedparam
;pthread_attr_setschedpolicy
;pthread_attr_setscope
-pthread_attr_setstackaddr
+;pthread_attr_setstackaddr
pthread_attr_setstacksize
pthread_cancel
-pthread_cleanup_pop
-pthread_cleanup_push
+;pthread_cleanup_pop
+;pthread_cleanup_push
pthread_condattr_destroy
pthread_condattr_getpshared
pthread_condattr_init
@@ -45,15 +45,15 @@ pthread_getspecific
pthread_join
pthread_key_create
pthread_key_delete
-pthread_kill
+;pthread_kill
pthread_mutexattr_destroy
;pthread_mutexattr_getprioceiling
;pthread_mutexattr_getprotocol
-phtread_mutexattr_getpshared
+;phtread_mutexattr_getpshared
pthread_mutexattr_init
;pthread_mutexattr_setprioceiling
;pthread_mutexattr_setprotocol
-pthread_mutexattr_setpshared
+;pthread_mutexattr_setpshared
pthread_mutexattr_destroy
pthread_mutex_init
pthread_mutex_lock
@@ -65,5 +65,5 @@ pthread_setcancelstate
pthread_setcanceltype
pthread_setschedparam
pthread_setspecific
-pthread_sigmask
+;pthread_sigmask
pthread_testcancel
diff --git a/tests/join.c b/tests/join.c
deleted file mode 100644
index a353eae..0000000
--- a/tests/join.c
+++ /dev/null
@@ -1,12 +0,0 @@
-/*
- * Test for pthread_join().
- *
- * Depends on API functions: pthread_create().
- */
-
-#include <pthread.h>
-
-int
-main(int argc, char * argv[])
-{
-}