Guardian Procedure Calls Reference Manual
(void _ptr64* _ptr64*)&poolBase);
if (error != SEGMENT_OK) {
printf("SEGMENT_ALLOCATE64_ error %d, %d\n",
error, detail);
exit(EXIT_FAILURE);
}
poolResult = POOL64_DEFINE_(poolBase, poolSize,
POOL64Default);
if (error != POOL64_OK) {
printf("POOL64_DEFINE_ error %d\n",poolResult);
exit(EXIT_FAILURE);
}
printf("Pool64 created at %#llx for %#llx bytes\n",
poolBase, poolSize);
}
POOL64_DEFINE_ Procedure 961