DLM Monitor
dlm_MonUninitialize()
Uninitializes the monitor module.
#include "dlmmon.h"
DlmResult dlm_MonUninitialize()
(
void
);
dlm_MonUninitialize() uninitializes the monitor module. It should only be called after all monitor sessions have been closed.
dlm_MonUninitialize() always returns successful with the non-negative value dlm_ERROR_NONE.
if ((result = dlm_MonInitialize()) < 0)
{
printf("Error: Failure initializing: %s.\n", dlm_ErrorMessage(result));
}
else
{
/* do something */
dlm_MonUninitialize();
}