MCPcopy Create free account
hub / github.com/conflow-dev/ConFlow / destroy_enclave

Function destroy_enclave

sgx_tf_ops/App/App.cpp:144–153  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

142
143
144void destroy_enclave(unsigned long int eid)
145{
146 sgx_status_t ret = SGX_ERROR_UNEXPECTED;
147 ret = sgx_destroy_enclave(eid);
148 if (ret != SGX_SUCCESS) {
149 print_error_message(ret);
150 throw ret;
151 }
152 printf("destroy %lu finish.\n",eid);
153}
154
155void ceshi(unsigned long int eid,float *input,float *output,int M,int C){
156 printf("ceshisgx/n");

Callers

nothing calls this directly

Calls 2

print_error_messageFunction · 0.85
printfFunction · 0.85

Tested by

no test coverage detected