rbb 99/06/08 10:30:04
Modified: apr/test testfile.c
Added: apr/threadproc/win32 threadproc.def
Log:
Two minor changes. 1) HAve testfile.c return a value, so windows doesn't
complain. No other platform should be affected. 2) Include a .def file
for threadproc dll.
Revision Changes Path
1.29 +1 -1 apache-apr/apr/test/testfile.c
Index: testfile.c
===================================================================
RCS file: /home/cvs/apache-apr/apr/test/testfile.c,v
retrieving revision 1.28
retrieving revision 1.29
diff -u -r1.28 -r1.29
--- testfile.c 1999/06/08 15:52:14 1.28
+++ testfile.c 1999/06/08 17:30:02 1.29
@@ -179,7 +179,7 @@
testdirs(context);
test_filedel(context);
- exit(1);
+ return 1;
}
int test_filedel(ap_context_t *context)
1.1 apache-apr/apr/threadproc/win32/threadproc.def
Index: threadproc.def
===================================================================
; threadproc.def :
LIBRARY threadproc
DESCRIPTION ''
EXPORTS
; Add new API calls to the end of this list.
ap_createprocattr_init @1
ap_setprocattr_io @2
ap_setprocattr_dir @3
ap_setprocattr_cmdtype @4
ap_setprocattr_detach @5
ap_create_process @6
ap_get_childin @7
ap_get_childout @8
ap_get_childerr @9
ap_wait_proc @10
ap_kill @11
ap_create_threadattr @12
ap_setthreadattr_detach @13
ap_getthreadattr_detach @14
ap_create_thread @15
ap_thread_exit @16
ap_thread_join @17
ap_thread_detach @18
ap_cancel_thread @19
ap_create_thread_private @20
ap_get_thread_private @21
ap_set_thread_private @22
ap_delete_thread_private @23