nuttx/sched/pthread
Gregory Nutt bb623d1e04 This commit renames all internal OS functions defined under sched/task so that they begin with the prefix. For example, nxtask_exit() vs. task_exit().
Squashed commit of the following:

    Trivial, cosmetic
    sched/, arch/, and include:  Rename task_vforkstart() as nxtask_vforkstart()
    sched/, arch/, and include:  Rename task_vforkabort() as nxtask_vforkabort()
    sched/, arch/, and include:  Rename task_vforksetup() as nxtask_vfork_setup()
    sched/:  Rename notify_cancellation() as nxnotify_cancellation()
    sched/:  Rename task_recover() to nxtask_recover()
    sched/task, sched/pthread/, Documentation/:  Rename task_argsetup() and task_terminate() to nxtask_argsetup() and nxtask_terminate(), respectively.
    sched/task:  Rename task_schedsetup() to nxtask_schedsetup()
    sched/ (plus some binfmt/, include/, and arch/):  Rename task_start() and task_starthook() to nxtask_start() and nxtask_starthook().
    arch/ and sched/:  Rename task_exit() and task_exithook() to nxtask_exit() and nxtask_exithook(), respectively.
    sched/task:  Rename all internal, static, functions to begin with the nx prefix.
2019-02-04 13:42:51 -06:00
..
Make.defs sched: move POSIX thread specific data from pthread TCB to common TCB structure. This change allows using pthread_getspecific/pthread_setspecific from main thread. Patch also enables using pthread data with config option CONFIG_DISABLE_PTHREAD=y. 2017-10-25 07:06:42 -06:00
pthread_cancel.c This commit renames all internal OS functions defined under sched/task so that they begin with the prefix. For example, nxtask_exit() vs. task_exit(). 2019-02-04 13:42:51 -06:00
pthread_cleanup.c Make sure that labeling is used consistently in all function headers. 2018-02-01 10:00:02 -06:00
pthread_completejoin.c Standardization of some function headers. 2018-03-13 09:52:27 -06:00
pthread_condbroadcast.c Standardization of some function headers. 2018-03-13 09:52:27 -06:00
pthread_condsignal.c Standardization of some function headers. 2018-03-13 09:52:27 -06:00
pthread_condtimedwait.c Elimate use of the non-standard type systime_t and replace it the equivalent, standard type clock_t 2018-06-16 12:16:13 -06:00
pthread_condwait.c Standardization of some function headers. 2018-03-13 09:52:27 -06:00
pthread_create.c This commit renames all internal OS functions defined under sched/task so that they begin with the prefix. For example, nxtask_exit() vs. task_exit(). 2019-02-04 13:42:51 -06:00
pthread_detach.c Standardization of some function headers. 2018-03-13 09:52:27 -06:00
pthread_exit.c This commit renames all internal OS functions defined under sched/task so that they begin with the prefix. For example, nxtask_exit() vs. task_exit(). 2019-02-04 13:42:51 -06:00
pthread_findjoininfo.c Standardization of some function headers. 2018-03-13 09:52:27 -06:00
pthread_getaffinity.c Standardization of some function headers. 2018-03-13 09:52:27 -06:00
pthread_getschedparam.c Standardization of some function headers. 2018-03-13 09:52:27 -06:00
pthread_getspecific.c sched/pthread: Implement pthread_key_delete(). This involves some minor changes to the group data structure. 2018-12-28 14:21:19 -06:00
pthread_initialize.c sched/pthread/pthread_initialize.c: Fix a warning found in build testing (that is actually and bug and would cause an incorrect value to be returned in many cases. 2018-08-05 16:23:07 -06:00
pthread_join.c Standardization of some function headers. 2018-03-13 09:52:27 -06:00
pthread_keycreate.c sched/pthread: Implement pthread_key_delete(). This involves some minor changes to the group data structure. 2018-12-28 14:21:19 -06:00
pthread_keydelete.c arch/arm/src/imxrt/chip/imxrt106x_pinmux.h: Add FLEXCAN3 to pinmux 2018-12-28 15:08:20 -06:00
pthread_kill.c Standardization of some function headers. 2018-03-13 09:52:27 -06:00
pthread_mutex.c Standardization of some function headers. 2018-03-13 09:52:27 -06:00
pthread_mutexconsistent.c Fix various issues noted by Coverity 2018-02-06 09:13:16 -06:00
pthread_mutexdestroy.c Standardization of some function headers. 2018-03-13 09:52:27 -06:00
pthread_mutexinconsistent.c pthread_trylock: Fixes a problem in pthread_trylock() noted by initialkjc@yahoo.com. When CONFIG_PTHREAD_MUTEX_UNSAFE=y, the special return value EAGAIN was not being detected due to differences in reporting of returned values. 2017-05-29 07:05:06 -06:00
pthread_mutexinit.c Standardization of some function headers. 2018-03-13 09:52:27 -06:00
pthread_mutexlock.c Standardization of some function headers. 2018-03-13 09:52:27 -06:00
pthread_mutextrylock.c Standardization of some function headers. 2018-03-13 09:52:27 -06:00
pthread_mutexunlock.c Standardization of some function headers. 2018-03-13 09:52:27 -06:00
pthread_release.c Standardization of some function headers. 2018-03-13 09:52:27 -06:00
pthread_setaffinity.c Standardization of some function headers. 2018-03-13 09:52:27 -06:00
pthread_setschedparam.c Standardization of some function headers. 2018-03-13 09:52:27 -06:00
pthread_setschedprio.c Make sure that labeling is used consistently in all function headers. 2018-02-01 10:00:02 -06:00
pthread_setspecific.c sched/pthread: Implement pthread_key_delete(). This involves some minor changes to the group data structure. 2018-12-28 14:21:19 -06:00
pthread_sigmask.c Standardization of some function headers. 2018-03-13 09:52:27 -06:00
pthread.h Squashed commit of the following: 2017-10-04 15:22:27 -06:00