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
/
task
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
Move exit.c to task/exit.c
2014-08-08 18:38:04 -06:00
Make.defs
…
spawn.h
Move task control files from sched/ to sched/task
2014-08-08 16:44:08 -06:00
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
First round of changes to get the ELF configuration building again
2014-09-16 15:37:05 -06:00
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
…