This method starts the xfnts_probe method.
Example 17 xfnts_monitor_start.c/* * Copyright (c) 1998, 2012, Oracle and/or its affiliates. * All rights reserved. * * xfnts_monitor_start.c - Monitor Start method for HA-XFS */ #pragma ident “@(#)xfnts_monitor_start.c 1.10 12/01/18” #include <rgm/libdsdev.h> #include “xfnts.h” /* * This method starts the fault monitor for a HA-XFS resource. * This is done by starting the probe under PMF. The PMF tag * is derived as RG-name,RS-name.mon. The restart option of PMF * is used but not the “infinite restart”. Instead * interval/retry_time is obtained from the RTR file. */ 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_start(scds_handle); /* Free up all the memory allocated by scds_initialize */ scds_close(&scds_handle); /* Return the result of monitor_start method */ return (rc); }