Added code to read config file of IP address, and use these for the mostly fair distr...
[IRC.git] / Robust / src / Runtime / DSTM / interface / dstm.c
1 #include "dstm.h"
2
3 extern int classsize[];
4
5 /* BEGIN object header */
6
7 // Get the size of the object for a given type
8 unsigned int objSize(objheader_t *object) {
9         return classsize[TYPE(object)];
10 }
11
12 /* END object header */
13