DLM Monitor

Monitor Uninitialize

dlm_MonUninitialize()

Uninitializes the monitor module.

Syntax
#include "dlmmon.h"

DlmResult dlm_MonUninitialize()
    (
 	    void
    );
Description

dlm_MonUninitialize() uninitializes the monitor module. It should only be called after all monitor sessions have been closed.

Return Values

dlm_MonUninitialize() always returns successful with the non-negative value dlm_ERROR_NONE.

See Also

dlm_MonInitialize()
dlm_MonIsInitialized()

Example
if ((result = dlm_MonInitialize()) < 0)
{
    printf("Error: Failure initializing: %s.\n", dlm_ErrorMessage(result));
}
else
{
    /* do something */

    dlm_MonUninitialize();
}