Skip to content
Snippets Groups Projects
Commit dc419bf9 authored by wlott's avatar wlott
Browse files

On the HP, use the SIOCSPGRP ioctl instead of fcntl to turn on oob

signaling.
parent b9bb4854
No related branches found
No related tags found
No related merge requests found
...@@ -7,7 +7,7 @@ ...@@ -7,7 +7,7 @@
;;; Scott Fahlman or slisp-group@cs.cmu.edu. ;;; Scott Fahlman or slisp-group@cs.cmu.edu.
;;; ;;;
(ext:file-comment (ext:file-comment
"$Header: /Volumes/share2/src/cmucl/cvs2git/cvsroot/src/code/internet.lisp,v 1.12 1992/12/18 19:02:13 wlott Exp $") "$Header: /Volumes/share2/src/cmucl/cvs2git/cvsroot/src/code/internet.lisp,v 1.13 1993/12/09 12:56:58 wlott Exp $")
;;; ;;;
;;; ********************************************************************** ;;; **********************************************************************
;;; ;;;
...@@ -313,7 +313,10 @@ ...@@ -313,7 +313,10 @@
handler)) handler))
*oob-handlers*) *oob-handlers*)
(system:enable-interrupt unix:sigurg #'sigurg-handler) (system:enable-interrupt unix:sigurg #'sigurg-handler)
(unix:unix-fcntl fd unix:f-setown (unix:unix-getpid))))) #-hpux
(unix:unix-fcntl fd unix:f-setown (unix:unix-getpid))
#+hpux
(unix:siocspgrp fd (unix:unix-getpid)))))
(values)) (values))
;;; REMOVE-OOB-HANDLER -- public ;;; REMOVE-OOB-HANDLER -- public
......
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