From fbece60c5c51efe82b04c5f0fcec2c04ad1157a9 Mon Sep 17 00:00:00 2001 From: wangyuhang Date: Mon, 4 Nov 2024 17:35:52 +0800 Subject: [PATCH] =?UTF-8?q?=E3=80=90=E8=BD=BB=E9=87=8F=E7=BA=A7PR=E3=80=91?= =?UTF-8?q?fix=20some=20spelling=20errors?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- deployd.c | 2 +- include/wayca-scheduler.h | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/deployd.c b/deployd.c index 4e745f1..d7ff606 100644 --- a/deployd.c +++ b/deployd.c @@ -215,7 +215,7 @@ static int parse_cfg_file(void) else if (str_start_with(p, "occupied_io_nodes")) { char occupied_io_nodes[PATH_MAX]; cfg_strtostr(p, occupied_io_nodes); - /* TODO: not impemented occupied_io_nodes */ + /* TODO: not implemented occupied_io_nodes */ } else if (str_start_with(p, "default_task_bind")) { char default_task_bind_str[PATH_MAX]; diff --git a/include/wayca-scheduler.h b/include/wayca-scheduler.h index 9167635..075daa5 100644 --- a/include/wayca-scheduler.h +++ b/include/wayca-scheduler.h @@ -872,7 +872,7 @@ int wayca_sc_threadpool_get_group(wayca_sc_threadpool_t threadpool, * @arg: the argument of @task_func * * Queue a task into the threadpool to execute. If there's idle working - * thread(s) in the pool, the task will be executed immediatedly. + * thread(s) in the pool, the task will be executed immediately. * Otherwise it will be queued into an internal FIFO waiting for * execution. * -- Gitee