00001
00002
00003
00004
00005
00006
00007 #import "NSObject.h"
00008
00009 @interface NSThread : NSObject
00010 {
00011 id _private;
00012 unsigned char _bytes;
00013 }
00014
00015 + (BOOL)isMainThread;
00016 + (BOOL)isMultiThreaded;
00017 + (double)threadPriority;
00018 + (BOOL)setThreadPriority:(double)fp8;
00019 + (void)sleepUntilDate:(id)fp8;
00020 + (void)sleepForTimeInterval:(double)fp8;
00021 + (id)mainThread_FOUNDATION;
00022 + (id)mainThread;
00023 + (id)currentThread;
00024 + (void)exit;
00025 + (void)detachNewThreadSelector:(SEL)fp8 toTarget:(id)fp12 withObject:(id)fp16;
00026 - (id)init;
00027 - (id)initWithTarget:(id)fp8 selector:(SEL)fp12 object:(id)fp16;
00028 - (void)dealloc;
00029 - (id)threadDictionary;
00030 - (void)setName:(id)fp8;
00031 - (id)name;
00032 - (void)setStackSize:(unsigned int)fp8;
00033 - (unsigned int)stackSize;
00034 - (BOOL)isMainThread;
00035 - (BOOL)isExecuting;
00036 - (BOOL)isFinished;
00037 - (BOOL)isCancelled;
00038 - (void)cancel;
00039 - (void *)_ap;
00040 - (void)_setAP:(void *)fp8;
00041 - (void *)_exc;
00042 - (void)_setExc:(void *)fp8;
00043 - (id)_rl;
00044 - (id)runLoop;
00045 - (id)description;
00046 - (void)start;
00047 - (void)main;
00048 - (void)_nq:(id)fp8;
00049
00050 @end
00051