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 sched: Consolidate the cancellation notification logic 2020-06-15 21:21:14 +01:00
spawn.h
task_activate.c
task_atexit.c
task_cancelpt.c sched: Consolidate the cancellation notification logic 2020-06-15 21:21:14 +01:00
task_create.c sched: Change tcb_s to task_tcb_s for nxtask_[un]init 2020-06-30 10:54:42 -06:00
task_delete.c sched: Consolidate the cancellation notification logic 2020-06-15 21:21:14 +01:00
task_execv.c
task_exit.c
task_exithook.c
task_getgroup.c
task_getpid.c
task_init.c Revert "sched/sched/sched_releasetcb.c: Handle custom stack allocations." 2020-07-07 00:21:46 +01:00
task_onexit.c
task_posixspawn.c
task_prctl.c syscall/prctl: fix PR_SET_NAME failure if without <pid> arg 2020-07-01 21:52:18 -05:00
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 sched: Call c++ global variables constructor inside nxtask_startup 2020-07-01 07:55:33 -06:00
task_starthook.c
task_terminate.c
task_testcancel.c
task_vfork.c
task.h sched: Consolidate the cancellation notification logic 2020-06-15 21:21:14 +01:00