Raymond Toy pushed to branch rtoy-grand-unix-unification at cmucl / cmucl
Commits: 6c6f37cb by Raymond Toy at 2015-10-31T10:13:04Z Fix typo: "o_asyn" -> "o_async"
- - - - -
1 changed file:
- src/code/unix.lisp
Changes:
===================================== src/code/unix.lisp ===================================== --- a/src/code/unix.lisp +++ b/src/code/unix.lisp @@ -701,7 +701,7 @@ #-(or linux osf1) #o0004 _N"Non-blocking reads") (defconstant FAPPEND #-linux #o0010 #+linux o_append _N"Append on each write") -(defconstant FASYNC #-(or linux svr4) #o0100 #+svr4 #o10000 #+linux o_asyn +(defconstant FASYNC #-(or linux svr4) #o0100 #+svr4 #o10000 #+linux o_async _N"Signal pgrp when data ready") ;; doesn't exist in Linux ;-( #-linux (defconstant FCREAT #-(or hpux svr4) #o1000 #+(or hpux svr4) #o0400
View it on GitLab: https://gitlab.common-lisp.net/cmucl/cmucl/commit/6c6f37cb662d646b113ca2e43d...