This is an automated email from the ASF dual-hosted git repository.

linguini pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/nuttx.git


The following commit(s) were added to refs/heads/master by this push:
     new 629a9d4ace8 sched/sched: fix typos and remove unused declarations in 
sched.h
629a9d4ace8 is described below

commit 629a9d4ace8005e072579faae89088f5e7f85c1a
Author: wangchengdong <[email protected]>
AuthorDate: Wed Feb 25 13:41:18 2026 +0800

    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 <[email protected]>
---
 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[]);

Reply via email to