]> git.sur5r.net Git - openldap/commitdiff
Note mutex protection requirements
authorHoward Chu <hyc@openldap.org>
Sun, 11 Feb 2007 13:45:39 +0000 (13:45 +0000)
committerHoward Chu <hyc@openldap.org>
Sun, 11 Feb 2007 13:45:39 +0000 (13:45 +0000)
libraries/liblutil/csn.c
libraries/liblutil/utils.c

index 4c3213f741880da44bff783ec5b87a538efe26f6..4eb29bcce2aa14d85ebb41c4a987956914e2ed64 100644 (file)
@@ -48,6 +48,7 @@
 
 #include <lutil.h>
 
+/* Must be mutex-protected, because lutil_gettime needs mutex protection */
 size_t
 lutil_csnstr(char *buf, size_t len, unsigned int replica, unsigned int mod)
 {
index 3891cfacf17060273cb8c8821da5a21705ac273b..2cd105ed92cf6dd4ddbb4f1c6ea1a7713b24a0dc 100644 (file)
@@ -272,7 +272,9 @@ int lutil_parsetime( char *atm, struct lutil_tm *tm )
        return -1;
 }
 
-/* return a broken out time, with microseconds */
+/* return a broken out time, with microseconds
+ * Must be mutex-protected.
+ */
 #ifdef _WIN32
 /* Windows SYSTEMTIME only has 10 millisecond resolution, so we
  * also need to use a high resolution timer to get microseconds.