Changeset 482


Ignore:
Timestamp:
Feb 6, 2004, 11:39:56 AM (21 years ago)
Author:
Gary Byers
Message:

MAKE-MCL-LISTENER-PROCESS: spawned process becomes "primary owner" of
input stream, if it has an attached SHARED-RESOURCE.

File:
1 edited

Legend:

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

    r6 r482  
    7676                                     (pushnew output-stream
    7777                                              *auto-flush-streams*))
     78                                   (let* ((shared-input
     79                                           (input-stream-shared-resource
     80                                            input-stream)))
     81                                     (when shared-input
     82                                       (setf (shared-resource-primary-owner
     83                                              shared-input)
     84                                             *current-process*)))
    7885                                   (funcall initial-function))
    7986                              (with-lock-grabbed
Note: See TracChangeset for help on using the changeset viewer.