@@ -41,14 +41,10 @@ @try { _queueActions = [[OFDataArray alloc] initWithItemSize: sizeof(int)]; _queueFDs = [[OFDataArray alloc] initWithItemSize: sizeof(int)]; _queueObjects = [[OFMutableArray alloc] init]; - -#ifdef OF_HAVE_THREADS - _mutex = [[OFMutex alloc] init]; -#endif } @catch (id e) { @throw [OFInitializationFailedException exceptionWithClass: [self class]]; } @@ -58,13 +54,10 @@ - (void)dealloc { [_queueActions release]; [_queueFDs release]; [_queueObjects release]; -#ifdef OF_HAVE_THREADS - [_mutex release]; -#endif [super dealloc]; } - (void)addObjectForReading: (id )object