Changeset 5048
- Timestamp:
- Aug 28, 2006, 3:55:55 AM (18 years ago)
- File:
-
- 1 edited
-
trunk/ccl/level-1/l1-boot-2.lisp (modified) (2 diffs)
Legend:
- Unmodified
- Added
- Removed
-
trunk/ccl/level-1/l1-boot-2.lisp
r4895 r5048 83 83 (def-ccl-pointers fd-streams () 84 84 (setq *stdin* (make-fd-stream 0 85 :basic t 85 86 :sharing :lock 86 87 :direction :input 87 88 :interactive (not *batch-flag*))) 88 (setq *stdout* (make-fd-stream 1 : direction :output :sharing :lock))89 90 (setq *stderr* (make-fd-stream 2 : direction :output :sharing :lock))89 (setq *stdout* (make-fd-stream 1 :basic t :direction :output :sharing :lock)) 90 91 (setq *stderr* (make-fd-stream 2 :basic t :direction :output :sharing :lock)) 91 92 (if *batch-flag* 92 93 (let* ((tty-fd (let* ((fd (fd-open "/dev/tty" #$O_RDWR))) … … 96 97 (setq 97 98 *terminal-input* (make-fd-stream tty-fd 99 :basic t 98 100 :direction :input 99 101 :interactive t 100 102 :sharing :lock) 101 *terminal-output* (make-fd-stream tty-fd : direction :output :sharing :lock)103 *terminal-output* (make-fd-stream tty-fd :basic t :direction :output :sharing :lock) 102 104 *terminal-io* (make-echoing-two-way-stream 103 105 *terminal-input* *terminal-output*))
Note:
See TracChangeset
for help on using the changeset viewer.
