trawick 02/02/18 05:06:43
Modified: locks/beos global_mutex.c
locks/netware global_mutex.c
locks/os2 global_mutex.c
locks/unix global_mutex.c
locks/win32 global_mutex.c
Log:
get rid of a stray ';' after APR_IMPLEMENT_POOL_ACCESSOR()
AIX xlc really got upset, though I didn't unravel the macro
to see what the fuss was about
> "global_mutex.c", line 177.42: 1506-137 (E) Declaration
> must declare at least one declarator, tag, or the members
> of an enumeration.
I changed the other new invocations to match the normal
pattern.
Revision Changes Path
1.2 +1 -1 apr/locks/beos/global_mutex.c
Index: global_mutex.c
===================================================================
RCS file: /home/cvs/apr/locks/beos/global_mutex.c,v
retrieving revision 1.1
retrieving revision 1.2
diff -u -r1.1 -r1.2
--- global_mutex.c 18 Feb 2002 01:16:03 -0000 1.1
+++ global_mutex.c 18 Feb 2002 13:06:42 -0000 1.2
@@ -91,5 +91,5 @@
return APR_ENOTIMPL;
}
-APR_POOL_IMPLEMENT_ACCESSOR(global_mutex);
+APR_POOL_IMPLEMENT_ACCESSOR(global_mutex)
1.2 +1 -1 apr/locks/netware/global_mutex.c
Index: global_mutex.c
===================================================================
RCS file: /home/cvs/apr/locks/netware/global_mutex.c,v
retrieving revision 1.1
retrieving revision 1.2
diff -u -r1.1 -r1.2
--- global_mutex.c 18 Feb 2002 01:16:04 -0000 1.1
+++ global_mutex.c 18 Feb 2002 13:06:43 -0000 1.2
@@ -91,5 +91,5 @@
return APR_ENOTIMPL;
}
-APR_POOL_IMPLEMENT_ACCESSOR(global_mutex);
+APR_POOL_IMPLEMENT_ACCESSOR(global_mutex)
1.2 +1 -1 apr/locks/os2/global_mutex.c
Index: global_mutex.c
===================================================================
RCS file: /home/cvs/apr/locks/os2/global_mutex.c,v
retrieving revision 1.1
retrieving revision 1.2
diff -u -r1.1 -r1.2
--- global_mutex.c 18 Feb 2002 01:16:04 -0000 1.1
+++ global_mutex.c 18 Feb 2002 13:06:43 -0000 1.2
@@ -91,5 +91,5 @@
return APR_ENOTIMPL;
}
-APR_POOL_IMPLEMENT_ACCESSOR(global_mutex);
+APR_POOL_IMPLEMENT_ACCESSOR(global_mutex)
1.3 +1 -1 apr/locks/unix/global_mutex.c
Index: global_mutex.c
===================================================================
RCS file: /home/cvs/apr/locks/unix/global_mutex.c,v
retrieving revision 1.2
retrieving revision 1.3
diff -u -r1.2 -r1.3
--- global_mutex.c 18 Feb 2002 02:20:07 -0000 1.2
+++ global_mutex.c 18 Feb 2002 13:06:43 -0000 1.3
@@ -183,4 +183,4 @@
return apr_pool_cleanup_run(mutex->pool, mutex, global_mutex_cleanup);
}
-APR_POOL_IMPLEMENT_ACCESSOR(global_mutex);
+APR_POOL_IMPLEMENT_ACCESSOR(global_mutex)
1.2 +1 -1 apr/locks/win32/global_mutex.c
Index: global_mutex.c
===================================================================
RCS file: /home/cvs/apr/locks/win32/global_mutex.c,v
retrieving revision 1.1
retrieving revision 1.2
diff -u -r1.1 -r1.2
--- global_mutex.c 18 Feb 2002 01:16:04 -0000 1.1
+++ global_mutex.c 18 Feb 2002 13:06:43 -0000 1.2
@@ -91,5 +91,5 @@
return APR_ENOTIMPL;
}
-APR_POOL_IMPLEMENT_ACCESSOR(global_mutex);
+APR_POOL_IMPLEMENT_ACCESSOR(global_mutex)