- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
Hi,I am learning SGX and doing some experiments on it.
I have a question about calloc in enclave. For example ,there is a enclave function like this:
void* FuncAlloc (unsigned long size)
{
void* pv = calloc(size, sizeof(char));
if (pv)
return pv;
return NULL;
}
I found when the parameter size is a big number,this function return NULL .
I want to know is there any size limitation on calloc in enclave?
Link Copied
1 Reply
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
Please refer the below link for your reference
https://software.intel.com/en-us/forums/intel-software-guard-extensions-intel-sgx/topic/704653
-Surenthar


Reply
Topic Options
- Subscribe to RSS Feed
- Mark Topic as New
- Mark Topic as Read
- Float this Topic for Current User
- Bookmark
- Subscribe
- Printer Friendly Page