ObjFW  Check-in [c92627ff31]

Overview
Comment:Documentation fixes.
Downloads: Tarball | ZIP archive | SQL archive
Timelines: family | ancestors | descendants | both | 0.5
Files: files | file ages | folders
SHA3-256: c92627ff318b36d19d61938cebcf9d7fc877d8346798e82ecaebb6ce61882c1c
User & Date: js on 2011-07-06 22:40:48
Other Links: branch diff | manifest | tags
Context
2011-07-07
18:07
-framework has to be before -f* in objfw-compile. check-in: 4c6a978a19 user: js tags: 0.5
2011-07-06
22:40
Documentation fixes. check-in: c92627ff31 user: js tags: 0.5
2011-06-30
23:24
Update ChangeLog. check-in: 213442d810 user: js tags: 0.5, 0.5.3-release
Changes

Modified src/OFThread.h from [a4a4af59a1] to [8b6bb2dcce].

84
85
86
87
88
89
90
91
92
93
94
95
96
97
98

/**
 * \return A new, autoreleased thread
 */
+ thread;

/**
 * \param obj An object that is passed to the main method as a copy or nil
 * \return A new, autoreleased thread
 */
+ threadWithObject: (id)obj;

/**
 * Sets the Thread Local Storage for the specified key.
 *







|







84
85
86
87
88
89
90
91
92
93
94
95
96
97
98

/**
 * \return A new, autoreleased thread
 */
+ thread;

/**
 * \param obj An object which is passed for use in the main method or nil
 * \return A new, autoreleased thread
 */
+ threadWithObject: (id)obj;

/**
 * Sets the Thread Local Storage for the specified key.
 *
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
 * Terminates the current thread, letting it return the specified object.
 *
 * \param obj The object which the terminated thread will return
 */
+ (void)terminateWithObject: (id)obj;

/**
 * \param obj An object that is passed to the main method as a copy or nil
 * \return An initialized OFThread.
 */
- initWithObject: (id)obj;

/**
 * The main routine of the thread. You need to reimplement this!
 *







|







157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
 * Terminates the current thread, letting it return the specified object.
 *
 * \param obj The object which the terminated thread will return
 */
+ (void)terminateWithObject: (id)obj;

/**
 * \param obj An object which is passed for use in the main method or nil
 * \return An initialized OFThread.
 */
- initWithObject: (id)obj;

/**
 * The main routine of the thread. You need to reimplement this!
 *