00001
00002
00003
00004
00005
00006
00007 #import "NSObject.h"
00008
00009 #import "NSLockingProtocol.h"
00010
00011 @interface NSConditionLock : NSObject <NSLocking>
00012 {
00013 void *_priv;
00014 }
00015
00016 + (id)allocWithZone:(struct _NSZone *)fp8;
00017 - (id)init;
00018 - (id)initWithCondition:(int)fp8;
00019 - (void)dealloc;
00020 - (void)finalize;
00021 - (int)condition;
00022 - (void)lock;
00023 - (BOOL)lockBeforeDate:(id)fp8;
00024 - (void)lockWhenCondition:(int)fp8;
00025 - (BOOL)lockWhenCondition:(int)fp8 beforeDate:(id)fp12;
00026 - (BOOL)tryLock;
00027 - (BOOL)tryLockWhenCondition:(int)fp8;
00028 - (void)unlock;
00029 - (void)unlockWithCondition:(int)fp8;
00030 - (id)description;
00031
00032 @end
00033