Previous  |  Next  >  
Product: Cluster Server Guides   
Manual: Cluster Server 4.1 Agent Developer's Guide   

shutdown


 void res_shutdown();

You may select any name for the function.

The shutdown field of VCSAgV40EntryPointStruct passed to VCSAgRegisterEPStruct() must be assigned a pointer to this function.

For example:


 #include "VCSAgApi.h"

 void  res_shutdown(const char *res_name) {
   // Agent-specific de-initialization, if any.
 }

 void VCSAgStartup() {
   VCSAgV40EntryPointStruct ep;
   ...
   ep.shutdown =  res_shutdown;
   ...
   VCSAgRegisterEPStruct(V40, &ep);
 }
 ^ Return to Top Previous  |  Next  >  
Product: Cluster Server Guides  
Manual: Cluster Server 4.1 Agent Developer's Guide  
VERITAS Software Corporation
www.veritas.com