ObjFW  Check-in [d4555b9c1a]

Overview
Comment:OFRunLoop: Tiny documentation improvement
Downloads: Tarball | ZIP archive | SQL archive
Timelines: family | ancestors | descendants | both | trunk
Files: files | file ages | folders
SHA3-256: d4555b9c1af7a65ef9edcef784c8d76117351cdcf1110057a133b42b388659f5
User & Date: js on 2016-03-13 12:39:29
Other Links: manifest | tags
Context
2016-03-13
13:16
of_string_utf8_decode(): Check all surrogate bytes check-in: a83b261f72 user: js tags: trunk
12:39
OFRunLoop: Tiny documentation improvement check-in: d4555b9c1a user: js tags: trunk
11:19
Change of_string_utf8_decode() API check-in: 5e2ef97c35 user: js tags: trunk
Changes

Modified src/OFRunLoop.h from [aef9b14152] to [567e4b9a96].

53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
#elif defined(OF_HAVE_THREADS)
	OFCondition *_condition;
#endif
	volatile bool _stop;
}

/*!
 * @brief Returns the main run loop.
 *
 * @return The main run loop
 */
+ (OFRunLoop*)mainRunLoop;

/*!
 * @brief Returns the run loop for the current thread.
 *
 * @return The run loop for the current thread







|

|







53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
#elif defined(OF_HAVE_THREADS)
	OFCondition *_condition;
#endif
	volatile bool _stop;
}

/*!
 * @brief Returns the run loop for the main thread.
 *
 * @return The run loop for the main thread
 */
+ (OFRunLoop*)mainRunLoop;

/*!
 * @brief Returns the run loop for the current thread.
 *
 * @return The run loop for the current thread