summaryrefslogtreecommitdiff
path: root/rts/include
diff options
context:
space:
mode:
authorNicolas Trangez <ikke@nicolast.be>2022-10-26 17:37:08 +0200
committerMarge Bot <ben+marge-bot@smart-cactus.org>2022-11-01 12:47:58 -0400
commit8ee8b41805a886cb839c02a5da23b9a8a404003a (patch)
tree709f7d1a92e32bbc14d556103cf0d77901d6f06f /rts/include
parentd45d8cb3d9bce11729b840bc96ec4616f559809e (diff)
downloadhaskell-8ee8b41805a886cb839c02a5da23b9a8a404003a.tar.gz
rts: `name` argument of `createOSThread` can be `const`
Since we don't intend to ever change the incoming string, declare this to be true. Also, in the POSIX implementation, the argument is no longer `STG_UNUSED` (since ee0deb8054da2a597fc5624469b4c44fd769ada2) in any code path. See: https://gitlab.haskell.org/ghc/ghc/-/commit/ee0deb8054da2a597fc5624469b4c44fd769ada2#note_460080
Diffstat (limited to 'rts/include')
-rw-r--r--rts/include/rts/OSThreads.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/rts/include/rts/OSThreads.h b/rts/include/rts/OSThreads.h
index 77241341b7..563e886469 100644
--- a/rts/include/rts/OSThreads.h
+++ b/rts/include/rts/OSThreads.h
@@ -173,7 +173,7 @@ extern void yieldThread ( void );
typedef void* OSThreadProcAttr OSThreadProc(void *);
-extern int createOSThread ( OSThreadId* tid, char *name,
+extern int createOSThread ( OSThreadId* tid, const char *name,
OSThreadProc *startProc, void *param);
extern bool osThreadIsAlive ( OSThreadId id );
extern void interruptOSThread ( OSThreadId id );