1.1.0
CCC
 
pile.cpp File Reference
#include "geoslib_old_f.h"

Functions

void pile_reset (int type)
 
void piles_reset (void)
 
int pile_next (int type)
 
void pile_manage (int type, int rank, int mode, char *ptr)
 
int pile_correct (int type, int rank, int mode)
 
char * pile_get (int type, int rank)
 
void piles_dump (void)
 

Function Documentation

int pile_correct ( int  type,
int  rank,
int  mode 
)

Check if the Pile is managed correctly

Returns
1 if the Pile Management is incorrect; 0 otherwise
Parameters
[in]typeType of the pile
[in]rankRank of the slot
[in]modeStatus
  • 1 : Check that the element must be already allocated
  • -1 : Check that the element will be allocated
char* pile_get ( int  type,
int  rank 
)

Returns the address managed in the pile

Parameters
[in]typeType of the pile
[in]rankRank of the slot
void pile_manage ( int  type,
int  rank,
int  mode,
char *  ptr 
)

Manage the pile

Parameters
[in]typeType of the pile
[in]rankRank of the slot
[in]mode1 for allocation and -1 for deallocation
[in]ptrPointor to be stored (allocation mode)
int pile_next ( int  type)

Returns the rank of the first free element

Returns
Rank of the first available slot or -1 if failure
Parameters
[in]typeType of the pile
void pile_reset ( int  type)

Reset one pile

Parameters
[in]typeType of the pile
Remarks
This function must be called compulsorily when entering RGeostats
void piles_dump ( void  )

Dump the piles contents

void piles_reset ( void  )

Reset all the piles

Remarks
This function must be called compulsorily when entering RGeostats