00001
00002
00003
00004
00005
00006
00007 #import "NSObject.h"
00008
00009 #import "NSLockingProtocol.h"
00010
00011 @interface NSCondition : NSObject <NSLocking>
00012 {
00013 void *_priv;
00014 }
00015
00016 + (id)allocWithZone:(struct _NSZone *)fp8;
00017 - (id)init;
00018 - (void)dealloc;
00019 - (void)finalize;
00020 - (void)lock;
00021 - (void)unlock;
00022 - (void)wait;
00023 - (BOOL)waitUntilDate:(id)fp8;
00024 - (void)signal;
00025 - (void)broadcast;
00026 - (id)description;
00027
00028 @end
00029