This website requires JavaScript.
Explore
Help
Sign In
sergiotarxz
/
nuttx
Watch
1
Star
0
Fork
0
You've already forked nuttx
Code
Issues
Pull Requests
Releases
Wiki
Activity
nuttx
/
sched
/
pthread
History
Gregory Nutt
937f9f23f1
strncpy will not copy the terminating \0 into the destination if the source is larger than the size of the destination. Ensure that the last byte is always zero and let strncpy only copy CONFIG_TASK_NAME_SIZE bytes. The issue of unterminated names can be observed in ps when creating a pthread while CONFIG_TASK_NAME_SIZE is set to 8.
2014-12-17 12:24:02 -06:00
..
Make.defs
Simplify how C source files are selected in the build
2014-10-07 07:42:36 -06:00
pthread_barrierdestroy.c
…
pthread_barrierinit.c
…
pthread_barrierwait.c
…
pthread_cancel.c
…
pthread_completejoin.c
…
pthread_condbroadcast.c
…
pthread_conddestroy.c
…
pthread_condinit.c
A const storage class to to phthread parameters. From Freddie Chopin
2014-09-08 06:21:48 -06:00
pthread_condsignal.c
…
pthread_condtimedwait.c
…
pthread_condwait.c
…
pthread_create.c
strncpy will not copy the terminating \0 into the destination if the source is larger than the size of the destination. Ensure that the last byte is always zero and let strncpy only copy CONFIG_TASK_NAME_SIZE bytes. The issue of unterminated names can be observed in ps when creating a pthread while CONFIG_TASK_NAME_SIZE is set to 8.
2014-12-17 12:24:02 -06:00
pthread_detach.c
…
pthread_exit.c
…
pthread_findjoininfo.c
…
pthread_getschedparam.c
…
pthread_getspecific.c
…
pthread_initialize.c
…
pthread_join.c
…
pthread_keycreate.c
…
pthread_keydelete.c
…
pthread_kill.c
…
pthread_mutexdestroy.c
…
pthread_mutexinit.c
A const storage class to to phthread parameters. From Freddie Chopin
2014-09-08 06:21:48 -06:00
pthread_mutexlock.c
…
pthread_mutextrylock.c
…
pthread_mutexunlock.c
…
pthread_once.c
…
pthread_release.c
Minor address environment clean-up. Cannot generate debug contexts in certain contexts
2014-08-27 14:22:00 -06:00
pthread_setcancelstate.c
…
pthread_setschedparam.c
…
pthread_setschedprio.c
nuttx/sched: Remove explicit references to errno. That is a problem from within the kernel for certain configurations
2014-08-28 17:00:24 -06:00
pthread_setspecific.c
A const storage class to to phthread parameters. From Freddie Chopin
2014-09-08 06:21:48 -06:00
pthread_sigmask.c
…
pthread_yield.c
…
pthread.h
…