Index: libcfa/src/concurrency/locks.hfa
===================================================================
--- libcfa/src/concurrency/locks.hfa	(revision 9082d7e82d9a7493aed9e548946de1837caa325a)
+++ libcfa/src/concurrency/locks.hfa	(revision 1dfc3d0fceddb07634544841e73360351262ab77)
@@ -243,6 +243,4 @@
 }
 
-const int __go_mtx_spins = 4;
-const int __go_mtx_pauses = 30;
 // if this is called recursively IT WILL DEADLOCK!!!!!
 static inline void lock(go_mutex & this) with(this) {
@@ -254,10 +252,10 @@
     init_state = state;
     for (;;) {
-        for( int i = 0; i < __go_mtx_spins; i++ ) {
+        for( int i = 0; i < 4; i++ ) {
             while( !val ) { // lock unlocked
                 state = 0;
                 if (internal_try_lock(this, state, init_state)) return;
             }
-            for (int i = 0; i < __go_mtx_pauses; i++) Pause();
+            for (int i = 0; i < 30; i++) Pause();
         }
 
