diff options
author | eivind <eivind@FreeBSD.org> | 2002-03-05 17:45:12 +0000 |
---|---|---|
committer | eivind <eivind@FreeBSD.org> | 2002-03-05 17:45:12 +0000 |
commit | df86de23e6b8202628a2b85ebc74042baff56752 (patch) | |
tree | 32e5852021483ed98f7c92205f86769f94c079e1 | |
parent | 9450e3c22c27a46839b2f1903435303b08bd8ac9 (diff) | |
download | FreeBSD-src-df86de23e6b8202628a2b85ebc74042baff56752.zip FreeBSD-src-df86de23e6b8202628a2b85ebc74042baff56752.tar.gz |
Change wmesg to const char * instead of char *
-rw-r--r-- | sys/kern/kern_lock.c | 2 | ||||
-rw-r--r-- | sys/sys/lockmgr.h | 6 |
2 files changed, 4 insertions, 4 deletions
diff --git a/sys/kern/kern_lock.c b/sys/kern/kern_lock.c index 929be46..d9d61c2 100644 --- a/sys/kern/kern_lock.c +++ b/sys/kern/kern_lock.c @@ -488,7 +488,7 @@ void lockinit(lkp, prio, wmesg, timo, flags) struct lock *lkp; int prio; - char *wmesg; + const char *wmesg; int timo; int flags; { diff --git a/sys/sys/lockmgr.h b/sys/sys/lockmgr.h index e941110..da8d86e 100644 --- a/sys/sys/lockmgr.h +++ b/sys/sys/lockmgr.h @@ -55,7 +55,7 @@ struct lock { int lk_waitcount; /* # of processes sleeping for lock */ short lk_exclusivecount; /* # of recursive exclusive locks */ short lk_prio; /* priority at which to sleep */ - char *lk_wmesg; /* resource sleeping (for tsleep) */ + const char *lk_wmesg; /* resource sleeping (for tsleep) */ int lk_timo; /* maximum sleep time (for tsleep) */ pid_t lk_lockholder; /* pid of exclusive lock holder */ #ifdef DEBUG_LOCKS @@ -199,8 +199,8 @@ struct lock { void dumplockinfo(struct lock *lkp); struct thread; -void lockinit __P((struct lock *, int prio, char *wmesg, int timo, - int flags)); +void lockinit __P((struct lock *, int prio, const char *wmesg, + int timo, int flags)); void lockdestroy __P((struct lock *)); #ifdef DEBUG_LOCKS |