definition:
|
startServerIfNecessary :: IO ()
startServerIfNecessary = do
alive <- cpnsAlive "localhost"
unless alive $ do
putErrLn "CPNS demon seems to be aborted. I try to restart it..."
startServer
|
demand:
|
no demanded arguments
|
deterministic:
|
deterministic operation
|
documentation:
|
--- Start the Curry Port Name Server demon, if it is not already
--- started on this machine:
|
failfree:
|
<FAILING>
|
indeterministic:
|
referentially transparent operation
|
infix:
|
no fixity defined
|
iotype:
|
{() |-> _}
|
name:
|
startServerIfNecessary
|
precedence:
|
no precedence defined
|
result-values:
|
_
|
signature:
|
Prelude.IO ()
|
solution-complete:
|
operation might suspend on free variables
|
terminating:
|
possibly non-terminating
|
totally-defined:
|
possibly non-reducible on same data term
|