X-Git-Url: http://repo.macrolet.net/gitweb/?a=blobdiff_plain;f=contrib%2Fsb-simple-streams%2Finternal.lisp;h=4a846a8e201a001827f072e84f46f76cc04673d7;hb=7f96d22df74999904529adc41639b64f88f5a144;hp=0aefd13a76ddefdfba37ed4f74f016fa1bfdfb39;hpb=ad6345c0021507c8830c7c8541ed651a89792335;p=sbcl.git diff --git a/contrib/sb-simple-streams/internal.lisp b/contrib/sb-simple-streams/internal.lisp index 0aefd13..4a846a8 100644 --- a/contrib/sb-simple-streams/internal.lisp +++ b/contrib/sb-simple-streams/internal.lisp @@ -44,22 +44,19 @@ (defun buffer-copy (src soff dst doff length) (declare (type simple-stream-buffer src dst) (type fixnum soff doff length)) - (sb-sys:without-gcing ;; is this necessary?? + ;; FIXME: Should probably be with-pinned-objects + (sb-sys:without-gcing (sb-kernel:system-area-ub8-copy (buffer-sap src) soff (buffer-sap dst) doff length))) (defun allocate-buffer (size) - (if (= size sb-impl::bytes-per-buffer) - (sb-impl::next-available-buffer) - (make-array size :element-type '(unsigned-byte 8)))) + (make-array size :element-type '(unsigned-byte 8))) (defun free-buffer (buffer) - (when (sb-sys:system-area-pointer-p buffer) - (push buffer sb-impl::*available-buffers*)) + (sb-int:aver (typep buffer '(simple-array (unsigned-byte 8) (*)))) t) - (defun make-control-table (&rest inits) (let ((table (make-array 32 :initial-element nil))) (do* ((char (pop inits) (pop inits))