*nix Documentation Project
·  Home
 +   man pages
·  Linux HOWTOs
·  FreeBSD Tips
·  *niX Forums

  man pages->Tru64 Unix man pages -> cfg_subsys_op (3)              
Title
Content
Arch
Section
 

cfg_subsys_op(3)

Contents


NAME    [Toc]    [Back]

       cfg_subsys_op - perform a subsystem-specific operation

SYNOPSIS    [Toc]    [Back]

       #include <cfg.h>

       cfg_status_t cfg_subsys_op(
               cfg_handle_t *handle,
               caddr_t subsys,
               cfg_op_t op,
               caddr_t indata,
               ulong indata_size,
               caddr_t outdata,
               ulong outdate_size );

LIBRARY    [Toc]    [Back]

       Configuration Management Library (libcfg.a)

PARAMETERS    [Toc]    [Back]

       Structure  identifying  the means of communication between
       your application and the configuration management  server.
       For  local  requests,  pass  NULL  in  this parameter. For
       remote requests, pass the value returned from the cfg_connect()
  routine.   Specifies the name of the subsystem for
       which you are requesting the subsystem-specific operation.
       Specifies the request code for the operation. The value of
       the code must be between the  values  of  the  CFG_OP_SUBSYS_MIN
 constant and the CFG_OP_SUBSYS_MAX constant. These
       constants are defined in <sys/sysconfig.h>.  Specifies the
       input data needed by the operation.  Specifies the size of
       the input data in bytes.  Specifies the pre-allocated memory
  location  to  store  any  output  from the operation.
       Specifies the size of the output data in bytes.

DESCRIPTION    [Toc]    [Back]

       Use the cfg_subsys_op() routine to request that the system
       perform  subsystem-specific  operations.  These operations
       are defined by the subsystem.

       When your application calls the  cfg_subsys_op()  routine,
       it  passes  the name of the subsystem and the operation to
       be performed on the subsystem. The application also passes
       any  input  data required by the operation and the size of
       that input data.

       When the system  receives  the  cfg_subsys_op()  call,  it
       packages the input data and sends that data to the subsystem.
  Once  the  subsystem  has  finished  processing  the
       request,  control  and  possibly output data return to the
       cfg_subsys_op() routine. The  routine  collects  any  data
       output  by  the  subsystem and returns it to your application.


       Because your application must allocate memory to store the
       outdata  parameter  before  it  calls cfg_subsys_op(), the
       actual size of the output data can differ from the  amount
       of  memory  allocated.   When  this  situation occurs, the
       cfg_subsys_op() routine returns as much data  as  possible
       in the outdata parameter.



RETURN VALUES    [Toc]    [Back]

       Upon   successful   completion,   cfg_subsys_op()  returns
       CFG_SUCCESS. Other return values indicate  that  an  error
       has  occurred.  For information about handling return values
 from routines in the configuration management library,
       see libcfg(3).

EXAMPLES    [Toc]    [Back]

       The  following example illustrates the use of the cfg_subsys_op()
 routine:

       char                           indata[IN_SZ];         char
       outdata[OUT_SZ];  cfg_handle_t            handle; cfg_status_t
            retval;

       /***************************************************/   /*
       Call the cfg_subsys_op routine                */

       retval = cfg_subsys_op(&handle, "vfs", CLEAN_UP, indata,
                IN_SZ, outdata, OUT_SZ);

       if (retval != CFG_SUCCESS)
          print_error(retval);

       In this example, the application calls the cfg_subsys_op()
       routine with  the  CLEAN_UP  operation  code.  The  system
       passes  the  CLEAN_UP  operation  code and the input data,
       indata, to the subsystem. The subsystem then performs  the
       tasks  indicated  by the CLEAN_UP operation code. The subsystem
 returns data, perhaps indicating the status of  the
       CLEAN_UP operation, in the outdata parameter.

SEE ALSO    [Toc]    [Back]

      
      
       Commands: cfgmgr(8), sysconfig(8)

       Routines: libcfg(3)



                                                 cfg_subsys_op(3)
[ Back ]
 Similar pages
Name OS Title
SSL_callback_ctrl Tru64 Perform an operation (get or set information in SSL) for the SSL structure
arsop IRIX perform an operation on an array session
csyr IRIX perform the symmetric rank 1 operation A := alpha*x*( x' ) + A,
zsyr IRIX perform the symmetric rank 1 operation A := alpha*x*( x' ) + A,
appinit IRIX perform application-specific initialization
cdboot OpenBSD i386-specific second-stage CD-specific bootstrap
cdboot OpenBSD amd64-specific second-stage CD-specific bootstrap
tt_pattern_opnum_add HP-UX add an operation number to a pattern
tt_pattern_op_add HP-UX add a value to the operation field of a pattern
tt_message_op_set HP-UX set the operation attribute for a message
Copyright © 2004-2005 DeniX Solutions SRL
newsletter delivery service