Changeset 4934
- Timestamp:
- Jul 29, 2006, 7:41:56 AM (18 years ago)
- File:
-
- 1 edited
-
trunk/ccl/level-1/l1-streams.lisp (modified) (3 diffs)
Legend:
- Unmodified
- Added
- Removed
-
trunk/ccl/level-1/l1-streams.lisp
r4928 r4934 2372 2372 (%ioblock-write-byte ioblock byte))) 2373 2373 2374 (defmethod stream-write-byte ((stream basic-binary-output-stream) byte) 2375 (let* ((ioblock (basic-stream-ioblock stream))) 2376 (with-ioblock-output-locked (ioblock) 2377 (%ioblock-write-byte ioblock byte)))) 2378 2374 2379 (defmethod stream-write-char ((stream buffered-character-output-stream-mixin) char) 2375 2380 (with-stream-ioblock-output (ioblock stream :speedy t) … … 2476 2481 (with-stream-ioblock-output (ioblock s :speedy t) 2477 2482 (%ioblock-out-ivect ioblock iv start length))) 2483 2484 (defmethod stream-write-ivector ((s basic-output-stream) 2485 iv start length) 2486 (let* ((ioblock (basic-stream-ioblock s))) 2487 (with-ioblock-output-locked (ioblock) 2488 (%ioblock-out-ivect ioblock iv start length)))) 2489 2478 2490 2479 2491 (defmethod stream-read-ivector ((s buffered-character-input-stream-mixin) … … 2906 2918 (elements-per-buffer *elements-per-buffer*) 2907 2919 (sharing :private) 2908 (basic nil))2920 (basic t)) 2909 2921 "Return a stream which reads from or writes to FILENAME. 2910 2922 Defined keywords:
Note:
See TracChangeset
for help on using the changeset viewer.
