Skip to content
Snippets Groups Projects
Commit cca37c17 authored by dtc's avatar dtc
Browse files

Correct the spelling of the poll system call; from Scott A Crosby.

parent 2f2a7f97
No related branches found
No related tags found
No related merge requests found
...@@ -5,7 +5,7 @@ ...@@ -5,7 +5,7 @@
;;; Carnegie Mellon University, and has been placed in the public domain. ;;; Carnegie Mellon University, and has been placed in the public domain.
;;; ;;;
(ext:file-comment (ext:file-comment
"$Header: /Volumes/share2/src/cmucl/cvs2git/cvsroot/src/code/unix-glibc2.lisp,v 1.9 2000/07/31 09:53:39 dtc Exp $") "$Header: /Volumes/share2/src/cmucl/cvs2git/cvsroot/src/code/unix-glibc2.lisp,v 1.10 2000/08/17 12:57:25 dtc Exp $")
;;; ;;;
;;; ********************************************************************** ;;; **********************************************************************
;;; ;;;
...@@ -2379,7 +2379,7 @@ in at a time in poll.") ...@@ -2379,7 +2379,7 @@ in at a time in poll.")
an event to occur; if TIMEOUT is -1, block until an event occurs. an event to occur; if TIMEOUT is -1, block until an event occurs.
Returns the number of file descriptors with events, zero if timed out, Returns the number of file descriptors with events, zero if timed out,
or -1 for errors." or -1 for errors."
(int-syscall ("pool" (* (struct pollfd)) long int) (int-syscall ("poll" (* (struct pollfd)) long int)
fds nfds timeout)) fds nfds timeout))
;;; sys/resource.h ;;; sys/resource.h
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment