Index: libcfa/src/concurrency/kernel.hfa
===================================================================
--- libcfa/src/concurrency/kernel.hfa	(revision 57f70ab7cafc94f5cbeb4d2d600f4e0cc0127989)
+++ libcfa/src/concurrency/kernel.hfa	(revision 8cd5434f3d110edebf08e98094a3ae47d7dcbf94)
@@ -176,4 +176,7 @@
 void  ?{}(__ready_queue_t & this);
 void ^?{}(__ready_queue_t & this);
+#if !defined(__CFA_NO_STATISTICS__)
+	unsigned cnt(const __ready_queue_t & this, unsigned idx);
+#endif
 
 // Idle Sleep
Index: libcfa/src/concurrency/ready_queue.cfa
===================================================================
--- libcfa/src/concurrency/ready_queue.cfa	(revision 57f70ab7cafc94f5cbeb4d2d600f4e0cc0127989)
+++ libcfa/src/concurrency/ready_queue.cfa	(revision 8cd5434f3d110edebf08e98094a3ae47d7dcbf94)
@@ -702,2 +702,9 @@
 	/* paranoid */ verify( ready_mutate_islocked() );
 }
+
+#if !defined(__CFA_NO_STATISTICS__)
+	unsigned cnt(const __ready_queue_t & this, unsigned idx) {
+		/* paranoid */ verify(this.lanes.count > idx);
+		return this.lanes.data[idx].cnt;
+	}
+#endif
