| 142 | |
| 143 | |
| 144 | void 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 | |
| 155 | void ceshi(unsigned long int eid,float *input,float *output,int M,int C){ |
| 156 | printf("ceshisgx/n"); |
nothing calls this directly
no test coverage detected