| 23 | } |
| 24 | |
| 25 | SchedOperation::SchedOperation(const void *data) |
| 26 | { |
| 27 | size_t size = ((const OperationData *)data)->size; |
| 28 | OperationData *new_data = (OperationData *)malloc(size); |
| 29 | memcpy(new_data, data, size); |
| 30 | data_ = new_data; |
| 31 | } |
| 32 | |
| 33 | SchedOperation::SchedOperation(OperationId id, const ProcessStatus &status) |
| 34 | { |
nothing calls this directly
no outgoing calls
no test coverage detected