Go to main content

Developing Data Services

Exit Print View

Updated: August 2018
 
 

xfnts_monitor_stop Method Code Listing

This method stops the xfnts_probe method.

Example 18  xfnts_monitor_stop.c Method
/*
* Copyright (c) 1998, 2012, Oracle and/or its affiliates.
* All rights reserved.
*
* xfnts_monitor_stop.c - Monitor Stop method for HA-XFS
*/

#pragma ident "@(#)xfnts_monitor_stop.c 1.9 12/01/18"

#include <rgm/libdsdev.h>
#include "xfnts.h"

/*
* This method stops the fault monitor for a HA-XFS resource.
* This is done via PMF. The PMF tag for the fault monitor is
* constructed based on RG-name_RS-name.mon.
*/

int
main(int argc, char *argv[])
{

scds_handle_t   scds_handle;
int    rc;

/* Process arguments passed by RGM and initialize syslog */
if (scds_initialize(&scds_handle, argc, argv) != SCHA_ERR_NOERR)
{
scds_syslog(LOG_ERR, "Failed to initialize the handle.");
return (1);
}
rc = mon_stop(scds_handle);

/* Free up all the memory allocated by scds_initialize */
scds_close(&scds_handle);

/* Return the result of monitor stop method */
return (rc);
}