You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@subversion.apache.org by rh...@apache.org on 2013/09/07 12:40:42 UTC

svn commit: r1520754 - /subversion/trunk/subversion/bindings/javahl/native/JNIUtil.cpp

Author: rhuijben
Date: Sat Sep  7 10:40:41 2013
New Revision: 1520754

URL: http://svn.apache.org/r1520754
Log:
Revert 1520753 and 1520752 as they are not fixing the javahl build on the centos bot

Modified:
    subversion/trunk/subversion/bindings/javahl/native/JNIUtil.cpp

Modified: subversion/trunk/subversion/bindings/javahl/native/JNIUtil.cpp
URL: http://svn.apache.org/viewvc/subversion/trunk/subversion/bindings/javahl/native/JNIUtil.cpp?rev=1520754&r1=1520753&r2=1520754&view=diff
==============================================================================
--- subversion/trunk/subversion/bindings/javahl/native/JNIUtil.cpp (original)
+++ subversion/trunk/subversion/bindings/javahl/native/JNIUtil.cpp Sat Sep  7 10:40:41 2013
@@ -142,7 +142,7 @@ struct GlobalInitGuard
                m_state == state_init && shift < 8;
                ++shift)
             {
-              apr_sleep(apr_time_from_msec(1) << shift);
+              apr_sleep((APR_USEC_PER_SEC / 1000) << shift);
               m_state = InitState(svn_atomic_cas(&m_global_state,
                                                  state_null, state_null));
             }