Index: libcfa/src/concurrency/locks.cfa
===================================================================
--- libcfa/src/concurrency/locks.cfa	(revision c76bd3423f7b7fdfa3c5b8b2d451657555da4ca5)
+++ libcfa/src/concurrency/locks.cfa	(revision 848439f8d6e456a0269c3145cc6faa97e77d4637)
@@ -77,5 +77,5 @@
 	if ( owner == kernelTLS.this_thread && !multi_acquisition) {
 		fprintf(stderr, "A single acquisition lock holder attempted to reacquire the lock resulting in a deadlock."); // Possibly throw instead
-    	exit(EXIT_FAILURE);
+		exit(EXIT_FAILURE);
 	} else if ( owner != 0p && owner != kernelTLS.this_thread ) {
 		append( blocked_threads, kernelTLS.this_thread );
@@ -111,8 +111,8 @@
 	lock( lock __cfaabi_dbg_ctx2 );
 	if ( owner == 0p ){ // no owner implies lock isn't held
-		fprintf( stderr, "There was an attempt to release a lock that isn't held" ); 
+		fprintf( stderr, "There was an attempt to release a lock that isn't held" );
 		return;
 	} else if ( strict_owner && owner != kernelTLS.this_thread ) {
-		fprintf( stderr, "A thread other than the owner attempted to release an owner lock" ); 
+		fprintf( stderr, "A thread other than the owner attempted to release an owner lock" );
 		return;
 	}
@@ -158,7 +158,7 @@
     lock( lock __cfaabi_dbg_ctx2 );
 	if ( owner == 0p ){ // no owner implies lock isn't held
-		fprintf( stderr, "A lock that is not held was passed to a synchronization lock" ); 
+		fprintf( stderr, "A lock that is not held was passed to a synchronization lock" );
 	} else if ( strict_owner && owner != kernelTLS.this_thread ) {
-		fprintf( stderr, "A thread other than the owner of a lock passed it to a synchronization lock" ); 
+		fprintf( stderr, "A thread other than the owner of a lock passed it to a synchronization lock" );
 	} else {
 		$thread * thrd = pop_head( blocked_threads );
@@ -264,5 +264,5 @@
 		info_thread(L) * popped = pop_head( blocked_threads );
 		if(popped != 0p) {
-			if( reacquire_after_signal ){ 
+			if( reacquire_after_signal ){
 				add_(*popped->lock, popped->t);
 			} else {
@@ -282,5 +282,5 @@
 			info_thread(L) * popped = pop_head( blocked_threads );
 			if(popped != 0p){
-				if( reacquire_after_signal ){ 
+				if( reacquire_after_signal ){
 					add_(*popped->lock, popped->t);
 				} else {
@@ -332,5 +332,5 @@
 	}
 
-	bool wait( synchronization_lock(L) & this, uintptr_t info, Duration duration ) with(this) { 
+	bool wait( synchronization_lock(L) & this, uintptr_t info, Duration duration ) with(this) {
 		// TODO: ADD INFO
 		return wait( this, duration );
@@ -368,5 +368,5 @@
 		queue_info_thread_unlock( this, l, i );
 	}
-	
+
 	bool wait( synchronization_lock(L) & this, L & l, Duration duration ) with(this) {
 		timeval tv = { time(0) };
@@ -374,14 +374,14 @@
 		return wait( this, l, t + duration );
 	}
-	
+
 	bool wait( synchronization_lock(L) & this, L & l, uintptr_t info, Duration duration ) with(this) {
 		// TODO: ADD INFO
 		return wait( this, l, duration );
 	}
-	
+
 	bool wait( synchronization_lock(L) & this, L & l, Time time ) with(this) {
 		return false; //default
 	}
-	
+
 	bool wait( synchronization_lock(L) & this, L & l, uintptr_t info, Time time ) with(this) {
 		// TODO: ADD INFO
Index: libcfa/src/concurrency/locks.hfa
===================================================================
--- libcfa/src/concurrency/locks.hfa	(revision c76bd3423f7b7fdfa3c5b8b2d451657555da4ca5)
+++ libcfa/src/concurrency/locks.hfa	(revision 848439f8d6e456a0269c3145cc6faa97e77d4637)
