nuttx/sched/task
Xiang Xiao 3472de3500 Revert "sched/sched/sched_releasetcb.c: Handle custom stack allocations."
Since up_release_stack auto detect whether the memory come from builtin heap
if (ttype == TCB_FLAG_TTYPE_KERNEL)
  {
    if (kmm_heapmember(dtcb->stack_alloc_ptr))
      {
        kmm_free(dtcb->stack_alloc_ptr);
      }
  }
else
  {
    /* Use the user-space allocator if this is a task or pthread */
    if (umm_heapmember(dtcb->stack_alloc_ptr))
      {
        kumm_free(dtcb->stack_alloc_ptr);
      }
  }

This reverts commit 124e6ee53d.
2020-07-07 00:21:46 +01:00
..
exit.c
Make.defs
spawn.h
task_activate.c
task_atexit.c
task_cancelpt.c
task_create.c
task_delete.c
task_execv.c
task_exit.c
task_exithook.c
task_getgroup.c
task_getpid.c
task_init.c
task_onexit.c
task_posixspawn.c
task_prctl.c
task_recover.c
task_reparent.c
task_restart.c
task_setcancelstate.c
task_setcanceltype.c
task_setup.c
task_spawn.c
task_spawnparms.c
task_start.c
task_starthook.c
task_terminate.c
task_testcancel.c
task_vfork.c
task.h