ObjFW  Check-in [77092d1160]

Overview
Comment:Change type of object in OFThread to id.
Downloads: Tarball | ZIP archive | SQL archive
Timelines: family | ancestors | descendants | both | trunk
Files: files | file ages | folders
SHA3-256: 77092d1160d0254c9239a05dc9256ebc1d662ff010cb05520e3739dbd223dc51
User & Date: js on 2009-12-24 09:17:44
Other Links: manifest | tags
Context
2009-12-24
09:19
Added tag 0.1-release for changeset 9d5a0c42ccbf check-in: 6e1e487368 user: js tags: trunk
09:19
Merge latest changes from default branch to 0.1 branch. check-in: 80820d91b3 user: js tags: 0.1, 0.1-release
09:17
Change type of object in OFThread to id. check-in: 77092d1160 user: js tags: trunk
2009-12-23
22:38
Some minor build improvements. check-in: 66f00a133d user: js tags: trunk
Changes

Modified src/OFThread.h from [d9ac27e5a8] to [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;
}

Modified tests/objc_sync/Makefile from [b3c9a544b3] to [8a0c1d85a0].

20
21
22
23
24
25
26

	rm -f libobjfw.so.0 libobjfw.so.0.1 libobjfw.dll libobjfw.dylib; \
	exit $$EXIT

include ../../buildsys.mk

CPPFLAGS += -I../../src -I../..
LIBS := -L../../src -lobjfw ${LIBS}








>
20
21
22
23
24
25
26
27
	rm -f libobjfw.so.0 libobjfw.so.0.1 libobjfw.dll libobjfw.dylib; \
	exit $$EXIT

include ../../buildsys.mk

CPPFLAGS += -I../../src -I../..
LIBS := -L../../src -lobjfw ${LIBS}
LD = ${OBJC}