mirror of
https://github.com/RGBCube/serenity
synced 2025-07-25 03:57:43 +00:00
Userland: Add more TODO()s for arch-specific code
This enables building more of the userspace applications for x86_64.
This commit is contained in:
parent
f2d6cac692
commit
c9a8dfa1bf
5 changed files with 21 additions and 2 deletions
|
@ -66,7 +66,7 @@ static int create_thread(pthread_t* thread, void* (*entry)(void*), void* argumen
|
|||
while (((uintptr_t)stack - 16) % 16 != 0)
|
||||
push_on_stack(nullptr);
|
||||
|
||||
push_on_stack((void*)thread_params->m_stack_size);
|
||||
push_on_stack((void*)(uintptr_t)thread_params->m_stack_size);
|
||||
push_on_stack(thread_params->m_stack_location);
|
||||
push_on_stack(argument);
|
||||
push_on_stack((void*)entry);
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue