Changeset 5019


Ignore:
Timestamp:
Aug 25, 2006, 7:13:34 PM (18 years ago)
Author:
Gary Byers
Message:

MAKE-MCL-LISTENER-STREAM uses ADD-AUTOFLUSH-STREAM, REMOVE-AUTOFLUSH-STREAM.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/ccl/level-1/l1-boot-lds.lisp

    r3525 r5019  
    8585                            (unwind-protect
    8686                                 (progn
    87                                    (with-lock-grabbed
    88                                        (*auto-flush-streams-lock*)
    89                                      (pushnew output-stream
    90                                               *auto-flush-streams*))
     87                                   (add-autoflush-stream output-stream)
    9188                                   (let* ((shared-input
    9289                                           (input-stream-shared-resource
     
    10097                                    :note-current-package *package*)
    10198                                   (funcall initial-function))
    102                               (with-lock-grabbed
    103                                   (*auto-flush-streams-lock*)
    104                                 (setq *auto-flush-streams*
    105                                       (delete output-stream
    106                                               *auto-flush-streams*)))
     99                              (remove-autoflush-stream output-stream)
    107100                              (funcall cleanup-function)
    108101                              (when close-streams
Note: See TracChangeset for help on using the changeset viewer.