aboutsummaryrefslogtreecommitdiff
path: root/src/libthread
diff options
context:
space:
mode:
authorrsc <devnull@localhost>2005-11-04 19:00:17 +0000
committerrsc <devnull@localhost>2005-11-04 19:00:17 +0000
commitac3d1298136013e210bd345a6afa366fd1d736da (patch)
tree95a40b6a5dae2c29a5f3f4abc746da002da2fa6f /src/libthread
parenta81eb4ca631be00b828e306331aff50b91180557 (diff)
downloadplan9port-ac3d1298136013e210bd345a6afa366fd1d736da.tar.gz
plan9port-ac3d1298136013e210bd345a6afa366fd1d736da.tar.bz2
plan9port-ac3d1298136013e210bd345a6afa366fd1d736da.zip
const
Diffstat (limited to 'src/libthread')
-rw-r--r--src/libthread/threadimpl.h2
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