Skip site navigation (1)Skip section navigation (2)

  
 
  

home | help
ALLOCRDSINS(3)		     RDS PHYSICAL FUNCTIONS		  ALLOCRDSINS(3)

NAME
      allocrdsins - allocates memory for an instance

SYNOPSIS
     #include"rdsnnn.h"
     rdsins_list *allocrdsins()

PARAMETER
     none

DESCRIPTION
     Allocates a memory block for rdsins_list structure. Fields contained in the
     structure are set to NULL for the pointers and 0L for numbers.

     NOTE: Allocation by block ( see rdsalloc() function ).

RETURN VALUE
     The pointer to the allocated instance.

ERRORS
     "Rds202: rdsalloc error, can't continue !"
	    it's impossible to allocate the memory size desired.

EXAMPLE
		 #include "mutnnn.h"
	    #include "rdsnnn.h"
	    #include "rtlnnn.h"
	    main()
	     {
	       rdsins_list *RdsInstance;
		    mbkenv();
		    rdsenv();
		    loadrdsparam();
	       RdsInstance = allocrdsins ();
	       RdsInstance->FIGNAME = namealloc ("na2_y");
	       RdsInstance->INSNAME = namealloc ("and2");
	       ...
	     }

SEE ALSO
     librds, freerdsins, rdsalloc, rdsfree

ASIM/LIP6			 October 1, 1997		  ALLOCRDSINS(3)

Want to link to this manual page? Use this URL:
<https://man.freebsd.org/cgi/man.cgi?query=allocrdsins&sektion=3&manpath=FreeBSD+Ports+15.1.quarterly>

home | help