Subversion Repositories HelenOS

Compare Revisions

Ignore whitespace Rev 2605 → Rev 2606

/trunk/kernel/arch/amd64/src/proc/thread.c
41,6 → 41,12
void thread_create_arch(thread_t *t)
{
t->arch.tls = 0;
t->arch.syscall_rsp[SYSCALL_USTACK_RSP] = 0;
/*
* Kernel RSP can be precalculated at thread creation time.
*/
t->arch.syscall_rsp[SYSCALL_KSTACK_RSP] =
(uintptr_t)&t->kstack[PAGE_SIZE - sizeof(uint64_t)];
}
 
/** @}