diff options
author | rpj <rpj> | 1998-07-23 14:55:59 +0000 |
---|---|---|
committer | rpj <rpj> | 1998-07-23 14:55:59 +0000 |
commit | a7d20a157ab17cd479c2a4af62e67ac4f6349cb0 (patch) | |
tree | 008060c61e40cd31cd49619cc2cd168a983b1118 /ChangeLog | |
parent | 55d4602d22dc7d8fb274df3abeb19b2d16230ff1 (diff) |
Fri Jul 24 00:21:21 1998 Ross Johnson <rpj@ixobrychus.canberra.edu.au>
* create.c (pthread_create): Arg to _pthread_new_thread_entry()
changed. See next entry. Move mutex locks out. Changes made yesterday
and today allow us to start the new thread running rather than
temporarily suspended.
* private.c (_pthread_new_thread_entry): _pthread_thread_table
was changed back to a table of thread structures rather than pointers.
As such we're trading storage for increaded speed. This routine
was modified to work with the new table. Mutex lock put in around
global data accesses.
(_pthread_find_thread_entry): Ditto
(_pthread_delete_thread_entry): Ditto
Diffstat (limited to 'ChangeLog')
-rw-r--r-- | ChangeLog | 15 |
1 files changed, 15 insertions, 0 deletions
@@ -1,3 +1,18 @@ +Fri Jul 24 00:21:21 1998 Ross Johnson <rpj@ixobrychus.canberra.edu.au> + + * create.c (pthread_create): Arg to _pthread_new_thread_entry() + changed. See next entry. Move mutex locks out. Changes made yesterday + and today allow us to start the new thread running rather than + temporarily suspended. + + * private.c (_pthread_new_thread_entry): _pthread_thread_table + was changed back to a table of thread structures rather than pointers. + As such we're trading storage for increaded speed. This routine + was modified to work with the new table. Mutex lock put in around + global data accesses. + (_pthread_find_thread_entry): Ditto + (_pthread_delete_thread_entry): Ditto + Thu Jul 23 23:25:30 1998 Ross Johnson <rpj@ixobrychus.canberra.edu.au> * global.c: New. Global data objects declared here. These moved from |