| Allegro CL version 8.2 Unrevised from 8.1 to 8.2. 8.1 version |
Arguments: name &key abbrev (error t)
This function returns the process whose process-name is
name. name must be a string
or a symbol, in which case the print-name is used. If the
abbrev keyword argument is specified
true, then name is matched
to the beginning of each process-name to find a match. The
abbrev argument defaults to nil
.
If abbrev is true and there are multiple
processes whose names start with abbrev, two
values are returned: one of the processes found
and t
.
If no process is found whose name is
name (or, if abbrev is true,
whose name begins with name), an error is
signaled if error is unspecified or true, and
nil
is returned if error
is specified nil
.
See also find-process. See multiprocessing.htm for general information on multiprocessing in Allegro CL.
Copyright (c) 1998-2016, Franz Inc. Oakland, CA., USA. All rights reserved.
This page was not revised from the 8.1 page.
Created 2010.1.21.
| Allegro CL version 8.2 Unrevised from 8.1 to 8.2. 8.1 version |