PaCO++  0.05
BasicBCIdl.idl
Go to the documentation of this file.
1 // This file defines the descr structure
2 // of the BasicBC library.
3 
4 module BasicBCLib
5 {
6  typedef sequence<unsigned long> ids_t;
7  struct BasicBCDescr
8  {
9  // Total data size (in element)
10  unsigned long glen;
11  // UnitSize -> size of an element (in octect)
12  // IMPOSSIBLE: 32bit vs 64bit: can vary !!! unsigned long usz;
13  // BlockSize -> distribution type: number of element in one bloc (in element)
14  unsigned long bsz;
15 
16  // Sequence of gstart for each block element; (in element)
17  // The length of each block is the length of the sequence :)
18  ids_t ids;
19  };
20 };
21 
22 
sequence< unsigned long > ids_t
Definition: BasicBCIdl.idl:6