Index: libcfa/src/concurrency/kernel.cfa
===================================================================
--- libcfa/src/concurrency/kernel.cfa	(revision 7223dbf2088a43a7a83667d7f616c65848b48e40)
+++ libcfa/src/concurrency/kernel.cfa	(revision 325e6ea3f194ad588ab061cdd3cc9daa9ebcc1c3)
@@ -140,4 +140,9 @@
 		preemption_scope scope = { this };
 
+		#if !defined(__CFA_NO_STATISTICS__)
+			unsigned long long last_tally = rdtscl();
+		#endif
+
+
 		__cfadbg_print_safe(runtime_core, "Kernel : core %p started\n", this);
 
@@ -206,4 +211,12 @@
 			// Are we done?
 			if( __atomic_load_n(&this->do_terminate, __ATOMIC_SEQ_CST) ) break MAIN_LOOP;
+
+			#if !defined(__CFA_NO_STATISTICS__)
+				unsigned long long curr = rdtscl();
+				if(curr > (last_tally + 500000000)) {
+					__tally_stats(this->cltr->stats, __cfaabi_tls.this_stats);
+					last_tally = curr;
+				}
+			#endif
 		}
 
