ObjFW  Diff

Differences From Artifact [d9ac27e5a8]:

To Artifact [469fa957dd]:


55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
 * The OFThread class provides portable threads.
 *
 * To use it, you should create a new class derived from it and reimplement
 * main.
 */
@interface OFThread: OFObject
{
	OFObject <OFCopying> *object;
	of_thread_t thread;
	BOOL running;

@public
	id retval;
}








|







55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
 * The OFThread class provides portable threads.
 *
 * To use it, you should create a new class derived from it and reimplement
 * main.
 */
@interface OFThread: OFObject
{
	id object;
	of_thread_t thread;
	BOOL running;

@public
	id retval;
}