This website requires JavaScript.
Explore
Help
Register
Sign In
Mirrors_Framework
/
nuttx
Watch
1
Star
0
Fork
0
mirror of
https://github.com/apache/nuttx.git
synced
2026-09-11 22:12:46 +08:00
Code
Issues
Actions
8
Packages
Projects
Releases
Wiki
Activity
Files
2ba67e78416875ae35447232e9995f0a3db2c348
nuttx
/
sched
/
task
T
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
..
exit.c
…
Make.defs
…
spawn.h
…
task_activate.c
…
task_atexit.c
…
task_create.c
…
task_delete.c
…
task_execv.c
…
task_exit.c
Costmetic change to a comment
2014-12-13 10:41:57 -06:00
task_exithook.c
…
task_getgroup.c
…
task_getpid.c
…
task_init.c
…
task_onexit.c
…
task_posixspawn.c
…
task_prctl.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
task_recover.c
Sempahores: Add logic to clean up after task_delete() or pthread_cancel() if the task happens to be waiting on a semaphore when it is cancelled
2014-12-13 12:02:25 -06:00
task_reparent.c
…
task_restart.c
…
task_setup.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
task_spawn.c
…
task_spawnparms.c
…
task_start.c
vfork no longer depends on CONFIG_MAX_TASK_ARGS
2014-11-12 19:01:29 -06:00
task_starthook.c
…
task_terminate.c
…
task_vfork.c
Fix some compile issues introduces with removal of CONFIG_MAX_TASK_ARGS
2014-11-14 09:53:11 -06:00
task.h
…