Go to the first, previous, next, last section, table of contents.


pr

Function: pr { -> }
file: 10-C-utils.muf
package: muf
status: tentative

The pr (printRestarts) function lists all live restarts for the current job.

This function is currently implemented as

: printRestarts

    ( Over all available restarts: )
    0 -> i
    do{
        ( Fetch next restart: )
        i getNthRestart
        -> name
        -> fn
        -> tFn
        -> iFn
        -> rFn
        -> data
        -> id

        ( Done if no restart found: )
        id not if return fi

        ( Summarize restart: )
        name , "\t" , rFn , "\n" ,

        ( Next restart to try: )
        i 1 + -> i
    }
;

Function: rootPj { -> }
file: 10-C-utils.muf
package: muf
status: tentative

The rootPj (rootPrintJobs) function is much like pj, but lists all live jobs in the system instead of just those belonging to a given user, and lists the owner of each job.


Go to the first, previous, next, last section, table of contents.