diff options
author | johannst <johannes.stoelp@gmail.com> | 2020-10-08 20:14:42 +0200 |
---|---|---|
committer | johannst <johannes.stoelp@gmail.com> | 2020-10-08 20:14:42 +0200 |
commit | 3b4a6097dee760d22eecd97ebe041c69da6b056a (patch) | |
tree | bf1536956a327c77c0975d1a6a0d04e230fd0aad /lib/arch/x86_64/api.h | |
parent | 8d2529404437262c5bf0521063221906aeecfb22 (diff) | |
download | matcha-threads-3b4a6097dee760d22eecd97ebe041c69da6b056a.tar.gz matcha-threads-3b4a6097dee760d22eecd97ebe041c69da6b056a.zip |
remove incorrect const
Diffstat (limited to 'lib/arch/x86_64/api.h')
-rw-r--r-- | lib/arch/x86_64/api.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/lib/arch/x86_64/api.h b/lib/arch/x86_64/api.h index b2babc9..729bd1a 100644 --- a/lib/arch/x86_64/api.h +++ b/lib/arch/x86_64/api.h @@ -2,5 +2,5 @@ #pragma once -extern "C" void yield(const void* new_stack, void* const* old_stack); -void* init_stack(void* stack_ptr, void (*entry)(void*), void* ctx); +extern "C" void yield(const void* new_stack, void** old_stack); +void* init_stack(void* stack_ptr, void (*entry)(void*), const void* ctx); |