(&self)
| 77 | |
| 78 | impl FFI_TaskContext { |
| 79 | unsafe fn inner(&self) -> &Arc<TaskContext> { |
| 80 | unsafe { |
| 81 | let private_data = self.private_data as *const TaskContextPrivateData; |
| 82 | &(*private_data).ctx |
| 83 | } |
| 84 | } |
| 85 | } |
| 86 | |
| 87 | unsafe extern "C" fn session_id_fn_wrapper(ctx: &FFI_TaskContext) -> SString { |
no outgoing calls
no test coverage detected