Index: kernel/generic/src/main/kinit.c
===================================================================
--- kernel/generic/src/main/kinit.c	(revision f4b153529231867ef6c64403a465d1f66e1016ca)
+++ kernel/generic/src/main/kinit.c	(revision 700dcb56512f232c5ea579372dfb7d84382e7eff)
@@ -219,17 +219,9 @@
 	
 	/*
-	 * Run user tasks with small delays
-	 * to avoid intermixed klog output.
-	 *
-	 * TODO: This certainly does not guarantee
-	 *       anything, it just works in most of the
-	 *       cases. Some better way how to achieve
-	 *       nice klog output should be found.
+	 * Run user tasks.
 	 */
 	for (i = 0; i < init.cnt; i++) {
-		if (programs[i].task != NULL) {
+		if (programs[i].task != NULL)
 			program_ready(&programs[i]);
-			thread_usleep(10000);
-		}
 	}
 	
