Intel Confidential Computing
Discussion board focused on Intel Confidential Computing technologies and how they can protect data and AI security, privacy, and sovereignty.

calloc in

zhi_h_
Beginner
1,824 Views

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? 

0 Kudos
1 Reply
Surenthar_S_Intel
1,824 Views
0 Kudos
Reply