ObjFW  Diff

Differences From Artifact [8a5ecd213c]:

To Artifact [ac1a8ee7d6]:


230
231
232
233
234
235
236

237
238
239
240
241
242
243
244
245
246

	if (thread != nil) {
		thread->_returnValue = [object retain];

		[thread handleTermination];

		thread->_running = OF_THREAD_WAITING_FOR_JOIN;

	}

	objc_autoreleasePoolPop(thread->_pool);
	[OFAutoreleasePool OF_handleThreadTermination];

	[thread release];

	of_thread_exit();
}








>


<







230
231
232
233
234
235
236
237
238
239

240
241
242
243
244
245
246

	if (thread != nil) {
		thread->_returnValue = [object retain];

		[thread handleTermination];

		thread->_running = OF_THREAD_WAITING_FOR_JOIN;
		objc_autoreleasePoolPop(thread->_pool);
	}


	[OFAutoreleasePool OF_handleThreadTermination];

	[thread release];

	of_thread_exit();
}