diff options
author | bde <bde@FreeBSD.org> | 1998-01-16 18:12:57 +0000 |
---|---|---|
committer | bde <bde@FreeBSD.org> | 1998-01-16 18:12:57 +0000 |
commit | 50ea0c54c5d5c655ee42b3ebd45761691eb1cb33 (patch) | |
tree | a8ce17d6ffb5c0c85bf3008716d1d6f5917d02c5 /share | |
parent | a6e05ea1ce99d5d674b3e0dad41b29602ea884de (diff) | |
download | FreeBSD-src-50ea0c54c5d5c655ee42b3ebd45761691eb1cb33.zip FreeBSD-src-50ea0c54c5d5c655ee42b3ebd45761691eb1cb33.tar.gz |
Fixed prototype for tsleep() (const poisoning).
Diffstat (limited to 'share')
-rw-r--r-- | share/man/man9/sleep.9 | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/share/man/man9/sleep.9 b/share/man/man9/sleep.9 index db7c8a5..351de02 100644 --- a/share/man/man9/sleep.9 +++ b/share/man/man9/sleep.9 @@ -23,7 +23,7 @@ .\" (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF .\" THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. .\" -.\" $Id: sleep.9,v 1.8 1997/04/09 05:39:32 mpp Exp $ +.\" $Id: sleep.9,v 1.9 1997/04/11 17:49:56 bde Exp $ .\" " .Dd April 3, 1996 .Os @@ -38,7 +38,7 @@ .Fd #include <sys/systm.h> .Fd #include <sys/proc.h> .Ft int -.Fn tsleep "void *ident" "int priority" "char *wmesg" "int timo" +.Fn tsleep "void *ident" "int priority" "const char *wmesg" "int timo" .Ft void .Fn wakeup "void *ident" .Ft void |