Displaying 1 result from an estimated 1 matches for "allocateprobesetgeptr".
2005 Jul 26
1
Error registering finalizer
...t;),
prototype=list(handle = NULL))
setClass("ProbesetGE",
representation("PDNNObject"))
----
static void ProbesetGE_finalizer(SEXP vntData)
{
Rprintf("In ProbesetGE_finalizer()\n");
/* Deallocate memory of structure fields */
}
static SEXP AllocateProbesetGEPtr(unsigned count)
{
return R_AllocatePtr(count,
sizeof(ProbesetGE_t),
ProbesetGETypeTag));
}
SEXP R_PDNN_newProbesetGE(unsigned count)
{
SEXP vntObj;
SEXP vntClassDef;
SEXP vntData;
SEXP vntAttr;
SEXP vntHandle;
unsigned n...