Index: generic/src/console/cmd.c
===================================================================
--- generic/src/console/cmd.c	(revision 10e16a7258e74c3db1abf7fb13b527544a85950b)
+++ generic/src/console/cmd.c	(revision 444ec64e8e2332fc99ef4845e8a6838d5afdb5f4)
@@ -53,4 +53,5 @@
 #include <mm/slab.h>
 #include <proc/scheduler.h>
+#include <proc/thread.h>
 
 /** Data and methods for 'help' command. */
@@ -245,4 +246,12 @@
 };
 
+static int cmd_threads(cmd_arg_t *argv);
+static cmd_info_t threads_info = {
+	.name = "threads",
+	.description = "List all threads",
+	.func = cmd_threads,
+	.argc = 0
+};
+
 
 static int cmd_sched(cmd_arg_t *argv);
@@ -321,4 +330,5 @@
 	&symaddr_info,
 	&sched_info,
+	&threads_info,
 	&tlb_info,
 	&version_info,
@@ -598,4 +608,16 @@
 }
 
+
+/** Command for listings Thread information
+ *
+ * @param argv Ignores
+ *
+ * @return Always 1
+ */
+int cmd_threads(cmd_arg_t * argv) {
+	thread_print_list();
+	return 1;
+}
+
 /** Command for listings Thread information
  *
