1.0.20.20: fix gencgc on 32 bit platforms with 2gb< heap
[sbcl/pkhuong.git] / contrib / sb-simple-streams / direct.lisp
blob751bf371899aef4490f48f15b0e40046e3910ff7
1 ;;; -*- lisp -*-
2 ;;;
3 ;;; **********************************************************************
4 ;;; This code was written by Paul Foley and has been placed in the public
5 ;;; domain.
6 ;;;
8 ;;; Sbcl port by Rudi Schlatte.
10 (in-package "SB-SIMPLE-STREAMS")
12 ;;;
13 ;;; **********************************************************************
14 ;;;
15 ;;; Direct-Simple-Stream and Buffer-(Input|Output)-Simple-Stream
17 (def-stream-class direct-simple-stream (single-channel-simple-stream)
18 ())
20 (def-stream-class buffer-input-simple-stream (direct-simple-stream)
21 ())
23 (def-stream-class buffer-output-simple-stream (direct-simple-stream)
24 ((out-buffer :initform nil :type (or simple-stream-buffer null))
25 (outpos :initform 0 :type fixnum)
26 (max-out-pos :initform 0 :type fixnum)))
28 (defmethod device-file-length ((stream direct-simple-stream))
29 ;; return buffer length
32 (defmethod device-open ((stream buffer-input-simple-stream) options)
33 #| do something |#
34 stream)
36 (defmethod device-open ((stream buffer-output-simple-stream) options)
37 #| do something |#
38 stream)