From 629a9d4ace8005e072579faae89088f5e7f85c1a Mon Sep 17 00:00:00 2001 From: wangchengdong Date: Wed, 25 Feb 2026 13:41:18 +0800 Subject: [PATCH] sched/sched: fix typos and remove unused declarations in sched.h This patch removes unnecessary and unimplemented function declarations in sched.h, fixing typos and cleaning up the header file. Signed-off-by: Chengdong Wang --- sched/sched/sched.h | 6 ------ 1 file changed, 6 deletions(-) diff --git a/sched/sched/sched.h b/sched/sched/sched.h index cd75865003e..8c3aff1d426 100644 --- a/sched/sched/sched.h +++ b/sched/sched/sched.h @@ -307,12 +307,6 @@ extern volatile spinlock_t g_cpu_tasklistlock; * Public Function Prototypes ****************************************************************************/ -void nxsched_process_tick(void); - -#if defined(CONFIG_HRTIMER) && defined(CONFIG_SCHED_TICKLESS) -int nxsched_hrtimer_tick_start(clock_t tick); -#endif - int nxthread_create(FAR const char *name, uint8_t ttype, int priority, FAR void *stack_addr, int stack_size, main_t entry, FAR char * const argv[], FAR char * const envp[]);