Home
last modified time | relevance | path

Searched refs:stack_bot (Results 1 – 1 of 1) sorted by relevance

/trusty/kernel/lib/trusty/
Dtrusty_app.c535 vaddr_t stack_bot; in trusty_thread_exit() local
539 stack_bot = trusty_thread->stack_start - trusty_thread->stack_size; in trusty_thread_exit()
541 vmm_free_region(trusty_thread->app->aspace, stack_bot); in trusty_thread_exit()
570 vaddr_t stack_bot = 0; in trusty_thread_create() local
577 err = vmm_alloc(trusty_app->aspace, "stack", stack_size, (void**)&stack_bot, in trusty_thread_create()
584 err, stack_bot, trusty_app->app_id, trusty_app->props.app_name); in trusty_thread_create()
612 trusty_thread->stack_start = stack_bot + stack_size; /* stack grows down */ in trusty_thread_create()
645 vmm_free_region(trusty_app->aspace, stack_bot); in trusty_thread_create()