| Allegro CL version 10.1 This page is new in 10.1. |
Arguments: process-pool
The default method for this process-pool
accessor returns the value of the
saved-count
slot of the argument process-pool instance.
The saved-count
slot holds the number of times a
process was added to the idle list. When a process finishes running
a process-pool-work-item, the process is typically added to the list of
idle processes so it is available to run another work item. When that
happens, the saved-count
is incremented by one.
The process may not be added to the idle list under certain circumstances. If the process was killed (perhaps because discard-process-pool was called with the kill argument true), it cannot be added to the idle list. If there are already process-pool-idle-limit idle processes, then the process will be discarded.
See Process pools in multiprocessing.htm for more information on process pools.
Copyright (c) 1998-2022, Franz Inc. Lafayette, CA., USA. All rights reserved.
This page is new in the 10.1 release.
Created 2019.8.20.
| Allegro CL version 10.1 This page is new in 10.1. |