]> git.ipfire.org Git - thirdparty/cups.git/blobdiff - scheduler/select.c
Merge changes from CUPS 1.5svn-r8950.
[thirdparty/cups.git] / scheduler / select.c
index 96f12ab3a3c00dda2e5291846e0857f5e0f82ea8..cc553754fe69513dc44154d5bf19feb8576b1636 100644 (file)
  * 
  *     4. kqueue() - O(n)
  *         b. cupsdStartSelect() creates kqueue file descriptor
- *            using kqyeue() function and allocates a global event
+ *            using kqueue() function and allocates a global event
  *            buffer.
  *         c. cupsdAdd/RemoveSelect() uses EV_SET and kevent() to
  *            register the changes. The event user data field is a
  *         d. cupsdDoSelect() uses kevent() to poll for events and
  *            loops through the events, using the user data field to
  *            find the callback record.
- *         e. cupsdStopSelect() closes the kqyeye() file descriptor
+ *         e. cupsdStopSelect() closes the kqueue() file descriptor
  *            and frees all of the memory used by the event buffer.
  * 
  *     5. /dev/poll - O(n log n) - NOT YET IMPLEMENTED