diff options
author | imp <imp@FreeBSD.org> | 2001-08-11 05:16:00 +0000 |
---|---|---|
committer | imp <imp@FreeBSD.org> | 2001-08-11 05:16:00 +0000 |
commit | 3e581274aa576cbf847b1cf56b18dafb68e336cd (patch) | |
tree | 11c644e047529e3ce340f86cfe21ea36431b3e76 /lib/libkse | |
parent | a9fe3c5dcad2492871789589c947a11367f45cfc (diff) | |
download | FreeBSD-src-3e581274aa576cbf847b1cf56b18dafb68e336cd.zip FreeBSD-src-3e581274aa576cbf847b1cf56b18dafb68e336cd.tar.gz |
Make the name parameter const char *.
Diffstat (limited to 'lib/libkse')
-rw-r--r-- | lib/libkse/thread/thr_info.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/libkse/thread/thr_info.c b/lib/libkse/thread/thr_info.c index 0eddb22..305a2b9 100644 --- a/lib/libkse/thread/thr_info.c +++ b/lib/libkse/thread/thr_info.c @@ -277,7 +277,7 @@ dump_thread(int fd, pthread_t pthread, int long_version) /* Set the thread name for debug: */ void -_pthread_set_name_np(pthread_t thread, char *name) +_pthread_set_name_np(pthread_t thread, const char *name) { /* Check if the caller has specified a valid thread: */ if (thread != NULL && thread->magic == PTHREAD_MAGIC) { |