Thread updates

git-svn-id: svn+ssh://svn.gna.org/svn/gnustep/libs/base/trunk@6484 72102866-910b-0410-8b05-ffd578937521
This commit is contained in:
Richard Frith-MacDonald 2000-04-19 12:32:38 +00:00
parent dc9403d316
commit 66657e7e66
2 changed files with 14 additions and 5 deletions

View file

@ -1,3 +1,9 @@
2000-04-19 Richard Frith-Macdonald <rfm@gnu.org>
* Source/NSThread.m: rewrite
* Source/NSCountedSet.m: minor fix in new unique method
* Source/NSGCountedSet.m: ditto
2000-04-18 Adam Fedor <fedor@gnu.org>
* base/configure.in: add a test to see whether a symlink

View file

@ -41,12 +41,15 @@ typedef enum
@interface NSThread : NSObject
{
id _target;
id _arg;
SEL _selector;
BOOL _active;
@public
objc_thread_t _thread_id;
NSHandler *_exception_handler;
NSMutableDictionary *_thread_dictionary;
struct autorelease_thread_vars _autorelease_vars;
id _gcontext;
NSHandler *_exception_handler;
NSMutableDictionary *_thread_dictionary;
struct autorelease_thread_vars _autorelease_vars;
id _gcontext;
}
+ (NSThread*) currentThread;