ObjFW  Check-in [b96e676256]

Overview
Comment:OFRunLoop: Make ivar "running" volatile.
Downloads: Tarball | ZIP archive | SQL archive
Timelines: family | ancestors | descendants | both | trunk
Files: files | file ages | folders
SHA3-256: b96e6762566b1742f3005d628119bb5d0511546319f3ceb18cb74e88127f5032
User & Date: js on 2013-01-16 14:31:48
Other Links: manifest | tags
Context
2013-01-17
23:15
Documentation improvements. check-in: 50b5ac3b27 user: js tags: trunk
2013-01-16
14:31
OFRunLoop: Make ivar "running" volatile. check-in: b96e676256 user: js tags: trunk
14:27
OFString: Add -[getCString:maxLength:encoding:]. check-in: 7694d37135 user: js tags: trunk
Changes

Modified src/OFRunLoop.h from [c69434c2e7] to [ce454681f1].

33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
{
	OFSortedList *timersQueue;
#ifdef OF_HAVE_THREADS
	OFMutex *timersQueueLock;
#endif
	OFStreamObserver *streamObserver;
	OFMutableDictionary *readQueues;
	BOOL running;
}

/*!
 * @brief Returns the main run loop.
 *
 * @return The main run loop
 */







|







33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
{
	OFSortedList *timersQueue;
#ifdef OF_HAVE_THREADS
	OFMutex *timersQueueLock;
#endif
	OFStreamObserver *streamObserver;
	OFMutableDictionary *readQueues;
	volatile BOOL running;
}

/*!
 * @brief Returns the main run loop.
 *
 * @return The main run loop
 */