Index: kernel/generic/src/proc/thread.c
===================================================================
--- kernel/generic/src/proc/thread.c	(revision 12ab886ceb37e8c6e90160bc20c1d059e2da09fb)
+++ kernel/generic/src/proc/thread.c	(revision 4452366c55578c3e4f4c43a1da5f4c5e3463d239)
@@ -266,13 +266,15 @@
  * Create a new thread.
  *
- * @param func      Thread's implementing function.
- * @param arg       Thread's implementing function argument.
- * @param task      Task to which the thread belongs.
- * @param flags     Thread flags.
- * @param name      Symbolic name.
- * @param uncounted Thread's accounting doesn't affect accumulated task
- * 		    accounting.
- *
- * @return New thread's structure on success, NULL on failure.
+ * @param func		Thread's implementing function.
+ * @param arg		Thread's implementing function argument.
+ * @param task		Task to which the thread belongs. The caller must
+ * 			guarantee that the task won't cease to exist during the
+ * 			call. The task's lock may not be held.
+ * @param flags		Thread flags.
+ * @param name		Symbolic name.
+ * @param uncounted	Thread's accounting doesn't affect accumulated task
+ * 			accounting.
+ *
+ * @return 		New thread's structure on success, NULL on failure.
  *
  */
