mirror of
https://github.com/gnustep/libs-base.git
synced 2025-05-31 00:30:53 +00:00
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:
parent
dc9403d316
commit
66657e7e66
2 changed files with 14 additions and 5 deletions
|
@ -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>
|
2000-04-18 Adam Fedor <fedor@gnu.org>
|
||||||
|
|
||||||
* base/configure.in: add a test to see whether a symlink
|
* base/configure.in: add a test to see whether a symlink
|
||||||
|
|
|
@ -41,12 +41,15 @@ typedef enum
|
||||||
|
|
||||||
@interface NSThread : NSObject
|
@interface NSThread : NSObject
|
||||||
{
|
{
|
||||||
|
id _target;
|
||||||
|
id _arg;
|
||||||
|
SEL _selector;
|
||||||
|
BOOL _active;
|
||||||
@public
|
@public
|
||||||
objc_thread_t _thread_id;
|
NSHandler *_exception_handler;
|
||||||
NSHandler *_exception_handler;
|
NSMutableDictionary *_thread_dictionary;
|
||||||
NSMutableDictionary *_thread_dictionary;
|
struct autorelease_thread_vars _autorelease_vars;
|
||||||
struct autorelease_thread_vars _autorelease_vars;
|
id _gcontext;
|
||||||
id _gcontext;
|
|
||||||
}
|
}
|
||||||
|
|
||||||
+ (NSThread*) currentThread;
|
+ (NSThread*) currentThread;
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue