Index: src/libcfa/concurrency/kernel
===================================================================
--- src/libcfa/concurrency/kernel	(revision 8fc45b762b4e8374629230668423504c051c14e7)
+++ src/libcfa/concurrency/kernel	(revision 96fc67b1d78be4a46077b51a6bbc0f0547cbf5f5)
@@ -26,8 +26,15 @@
 //-----------------------------------------------------------------------------
 // Locks
-void lock      ( spinlock * DEBUG_CTX_PARAM2 );       // Lock the spinlock, spin if already acquired
-void lock_yield( spinlock * DEBUG_CTX_PARAM2 );       // Lock the spinlock, yield repeatedly if already acquired
-bool try_lock  ( spinlock * DEBUG_CTX_PARAM2 );       // Lock the spinlock, return false if already acquired
-void unlock    ( spinlock * );                        // Unlock the spinlock
+// Lock the spinlock, spin if already acquired
+void lock      ( spinlock * DEBUG_CTX_PARAM2 );
+
+// Lock the spinlock, yield repeatedly if already acquired
+void lock_yield( spinlock * DEBUG_CTX_PARAM2 );
+
+// Lock the spinlock, return false if already acquired
+bool try_lock  ( spinlock * DEBUG_CTX_PARAM2 );
+
+// Unlock the spinlock
+void unlock    ( spinlock * );
 
 struct semaphore {
@@ -46,7 +53,12 @@
 // Cluster
 struct cluster {
-	spinlock ready_queue_lock;                      // Ready queue locks
-	__thread_queue_t ready_queue;                   // Ready queue for threads
-	unsigned long long int preemption;              // Preemption rate on this cluster
+	// Ready queue locks
+	spinlock ready_queue_lock;
+
+	// Ready queue for threads
+	__thread_queue_t ready_queue;
+
+	// Preemption rate on this cluster
+	unsigned long long int preemption;
 };
 
@@ -79,21 +91,34 @@
 struct processor {
 	// Main state
-	struct processorCtx_t * runner;                 // Coroutine ctx who does keeps the state of the processor
-	cluster * cltr;                                 // Cluster from which to get threads
-	pthread_t kernel_thread;                        // Handle to pthreads
+	// Coroutine ctx who does keeps the state of the processor
+	struct processorCtx_t * runner;
+
+	// Cluster from which to get threads
+	cluster * cltr;
+
+	// Handle to pthreads
+	pthread_t kernel_thread;
 
 	// Termination
-	volatile bool do_terminate;                     // Set to true to notify the processor should terminate
-	semaphore terminated;                           // Termination synchronisation
+	// Set to true to notify the processor should terminate
+	volatile bool do_terminate;
+
+	// Termination synchronisation
+	semaphore terminated;
 
 	// RunThread data
-	struct FinishAction finish;                     // Action to do after a thread is ran
+	// Action to do after a thread is ran
+	struct FinishAction finish;
 
 	// Preemption data
-	struct alarm_node_t * preemption_alarm;         // Node which is added in the discrete event simulaiton
-	bool pending_preemption;                        // If true, a preemption was triggered in an unsafe region, the processor must preempt as soon as possible
+	// Node which is added in the discrete event simulaiton
+	struct alarm_node_t * preemption_alarm;
+
+	// If true, a preemption was triggered in an unsafe region, the processor must preempt as soon as possible
+	bool pending_preemption;
 
 #ifdef __CFA_DEBUG__
-	char * last_enable;                             // Last function to enable preemption on this processor
+	// Last function to enable preemption on this processor
+	char * last_enable;
 #endif
 };
