PMDF Programmer's Reference Manual
PMDF-PRM-6.0


Previous | Contents

PMDF_done

Deallocate PMDF data structures and resources.

VMS FORMAT

status = PMDF_done


C FORMAT

status = PMDFdone ()

argument information
int PMDFdone () 

ARGUMENTS

None.

DESCRIPTION

After finishing all processing, PMDF_done should be called. Processes which run indefinitely should not repeatedly call PMDF_initialize and PMDF_done. PMDF_initialize and PMDF_done should, generally, be called only once per program run. To shutdown any active message dequeue or enqueue contexts, call PMDF_dequeue_end, PMDF_enqueue_message, or PMDF_abort_message prior to calling PMDF_done. If PMDF_done is called while dequeue or enqueue contexts are still active, then any messages associated with active dequeue contexts will be deferred for later processing and any messages associated with active enqueue contexts will be deleted.
Return Values
PMDF__OK Normal, successful completion.


Previous | Next | Contents