nuttx/sched/semaphore
Gregory Nutt 153eee6de2 Make more OS internal names consistent
1. Internal scheduler functions should begin with nxsched_, not sched_
2. Follow the consistent naming patter of https://cwiki.apache.org/confluence/display/NUTTX/Naming+of+OS+Internal+Functions

    # clock_systimer -> clock_systime_tick
    # clock_systimespec -> clock_systime_timespec
    sched_oneshot_extclk -> nxsched_oneshot_extclk
    sched_period_extclk -> nxsched_period_extclk
    # nxsem_setprotocol -> nxsem_set_protocol
    # nxsem_getprotocol -> nxsem_get_protocol
    # nxsem_getvalue -> nxsem_get_value
    nxsem_initholders -> nxsem_initialize_holders
    nxsem_addholder -> nxsem_add_holder
    nxsem_addholder_tcb -> nxsem_add_holder_tcb
    nxsem_boostpriority -> nxsem_boost_priority
    nxsem_releaseholder -> nxsem_release_holder
    nxsem_restorebaseprio -> nxsem_restore_baseprio

Some planned name changed were skipped for now because they effect too many files (and would require many hours of coding style fixups).
2020-05-10 22:47:07 +08:00
..
Make.defs sem_setprotocol: Handle a case of missing proxy for sem_setprotocol. Reorder so that (1) this error is avoided, and (2) >No proxy is needed if priority inheritance is not enabled. 2016-11-03 18:51:38 -06:00
sem_destroy.c Replace #include <semaphore.h> to #include <nuttx/semaphore.h> 2020-02-01 08:27:30 -06:00
sem_holder.c Make more OS internal names consistent 2020-05-10 22:47:07 +08:00
sem_initialize.c Make more OS internal names consistent 2020-05-10 22:47:07 +08:00
sem_post.c Make more OS internal names consistent 2020-05-10 22:47:07 +08:00
sem_recover.c Run codespell -w with the latest dictonary again 2020-02-23 22:27:46 +01:00
sem_reset.c Replace #include <semaphore.h> to #include <nuttx/semaphore.h> 2020-02-01 08:27:30 -06:00
sem_setprotocol.c Replace #include <semaphore.h> to #include <nuttx/semaphore.h> 2020-02-01 08:27:30 -06:00
sem_tickwait.c Remove type casting to wdentry_t (sched/) 2020-04-07 06:23:15 -06:00
sem_timedwait.c Remove type casting to wdentry_t (sched/) 2020-04-07 06:23:15 -06:00
sem_timeout.c include/nuttx/sched.h: Make naming of all internal names consistent: 2020-05-09 14:19:08 -03:00
sem_trywait.c Fix typos in comments and documentation. 2020-03-16 20:01:11 -06:00
sem_wait.c Make more OS internal names consistent 2020-05-10 22:47:07 +08:00
sem_waitirq.c Completes the Implementation of the TLS-based errno 2020-05-07 23:11:34 +01:00
semaphore.h Make more OS internal names consistent 2020-05-10 22:47:07 +08:00
spinlock.c sched/semaphore/spinlock.c: spin_trylock handle memory barrier and instrumentation correctly. 2019-11-03 19:40:58 -06:00