pp-threads-cancel-all!

Synopsis

(pp-threads-cancel-all! port-number)

Parameters

  • port-number

Description

This procedure tries to cancel all threads associated with the specified port.

Side Effects

All threads of thhe specified port may be cancelled.

Return Value

ok

Example

> (pp-tt-running? 5)
#f
> (pp-tt-create 5)
ok
> (pp-tt-running? 5)
#t
> (pp-threads-cancel-all! 5)
ok
> (pp-tt-running? 5)
#f
>