mirror of
https://gitlab.com/embeddable-common-lisp/ecl.git
synced 2026-01-16 14:21:48 -08:00
Fixed identification of inactive processes in unixint.d
This commit is contained in:
parent
bc738ccae8
commit
a98208d1ea
1 changed files with 1 additions and 1 deletions
|
|
@ -829,7 +829,7 @@ ecl_interrupt_process(cl_object process, cl_object function)
|
|||
* - In POSIX systems it sends a user level interrupt to
|
||||
* the thread, which then decides how to act.
|
||||
*/
|
||||
unlikely_if (process->process.active != 1) {
|
||||
unlikely_if (!process->process.active) {
|
||||
FEerror("Cannot interrupt non-active process ~A",
|
||||
1, process);
|
||||
}
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue