incubator-nuttx/sched/group
Ville Juven 4c1b66246d env_dup: Fix copying of env between address environments
If address environments are in use, it is not possible to simply
memcpy from from one process to another. The current implementation
of env_dup does precisely this and thus, it fails at once when it is
attempted between two user processes.

The solution is to use the kernel's heap as an intermediate buffer.
This is a simple, effective and common way to do a fork().

Obviously this is not needed for kernel processes.
2022-04-21 18:38:37 +08:00
..
Make.defs Fix the initial idle tasks environment 2022-03-16 20:21:19 +08:00
group.h sched/group: Simplify the allocation and deallocation logic 2022-03-04 12:11:24 +09:00
group_addrenv.c
group_childstatus.c group/child_status: Dynamically expand group child_status 2021-07-15 20:14:57 -07:00
group_continue.c
group_create.c env_dup: Fix copying of env between address environments 2022-04-21 18:38:37 +08:00
group_exitinfo.c
group_find.c
group_foreachchild.c
group_free.c
group_getgid.c
group_getuid.c
group_join.c
group_killchildren.c
group_leave.c sched/group: Simplify the allocation and deallocation logic 2022-03-04 12:11:24 +09:00
group_malloc.c
group_realloc.c Fix the initial idle tasks environment 2022-03-16 20:21:19 +08:00
group_setgid.c
group_setuid.c
group_setupidlefiles.c sched/group: Move files_initlist/lib_stream_initialize to group_alloc 2022-03-02 20:29:52 +09:00
group_setupstreams.c sched/group: Move files_initlist/lib_stream_initialize to group_alloc 2022-03-02 20:29:52 +09:00
group_setuptaskfiles.c sched/group: Move files_initlist/lib_stream_initialize to group_alloc 2022-03-02 20:29:52 +09:00
group_signal.c
group_suspendchildren.c
group_waiter.c sched/group: Simplify the allocation and deallocation logic 2022-03-04 12:11:24 +09:00
group_zalloc.c