pp-tt-cancel

Synopsis

(pp-tt-cancel port-number)

Parameters

  • port-number

Description

This procedure cancels a running testing thread for the specified port.

Side Effects

A running testing thread is cancelled.

Return Value

ok or #f

Example

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