gstein 02/01/31 17:15:01
Modified: test testprocmutex.c
Log:
get rid of the apr_shmem.h include file -- it messes up dependencies.
some minor tweaks to make it compile a bit better, but the use of
shared memory in here is just borken. needs to be updated to the
latest shm APIs.
Revision Changes Path
1.7 +2 -2 apr/test/testprocmutex.c
Index: testprocmutex.c
===================================================================
RCS file: /home/cvs/apr/test/testprocmutex.c,v
retrieving revision 1.6
retrieving revision 1.7
diff -u -r1.6 -r1.7
--- testprocmutex.c 29 Dec 2001 23:14:22 -0000 1.6
+++ testprocmutex.c 1 Feb 2002 01:15:01 -0000 1.7
@@ -52,7 +52,7 @@
* <http://www.apache.org/>.
*/
-#include "apr_shmem.h"
+#include "apr_shm.h"
#include "apr_thread_proc.h"
#include "apr_file_io.h"
#include "apr_lock.h"
@@ -151,7 +151,7 @@
apr_getopt_t *opt;
char optchar;
const char *optarg;
- apr_shmem_t *shm;
+ apr_shm_t *shm;
printf("APR Proc Mutex Test\n==============\n\n");