diff options
Diffstat (limited to 'src')
-rw-r--r-- | src/libthread/threadimpl.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/libthread/threadimpl.h b/src/libthread/threadimpl.h index a658903f..33644657 100644 --- a/src/libthread/threadimpl.h +++ b/src/libthread/threadimpl.h @@ -44,7 +44,7 @@ extern pid_t rfork_thread(int, void*, int(*)(void*), void*); #if defined(__arm__) int getmcontext(mcontext_t*); -void setmcontext(mcontext_t*); +void setmcontext(const mcontext_t*); #define setcontext(u) setmcontext(&(u)->uc_mcontext) #define getcontext(u) getmcontext(&(u)->uc_mcontext) #endif |