kernel: system_work_q: Set dedicated "sysworkq" name.

Previously, a generic "workqueue" name was used, but there're few
workqueues in a typical Zephyr setup, and it wasn't possible to
distinguish them.

Signed-off-by: Paul Sokolovsky <paul.sokolovsky@linaro.org>
diff --git a/kernel/system_work_q.c b/kernel/system_work_q.c
index 2027b59..48c6791 100644
--- a/kernel/system_work_q.c
+++ b/kernel/system_work_q.c
@@ -26,6 +26,7 @@
 		       sys_work_q_stack,
 		       K_THREAD_STACK_SIZEOF(sys_work_q_stack),
 		       CONFIG_SYSTEM_WORKQUEUE_PRIORITY);
+	k_thread_name_set(&k_sys_work_q.thread, "sysworkq");
 
 	return 0;
 }