kthread_create(): Rename kernel_thread() to kthread_create() for better naming consistency with task_create() and kthread_delete().

This commit is contained in:
Gregory Nutt
2017-10-16 11:38:00 -06:00
parent b1a41b7620
commit 5b385f4d4d
18 changed files with 93 additions and 70 deletions
+1 -1
View File
@@ -452,7 +452,7 @@ static int vnc_start_server(int display)
argv[0] = str;
argv[1] = NULL;
pid = kernel_thread("vnc_server", CONFIG_VNCSERVER_PRIO,
pid = kthread_create("vnc_server", CONFIG_VNCSERVER_PRIO,
CONFIG_VNCSERVER_STACKSIZE,
(main_t)vnc_server, argv);
if (pid < 0)