| 15 | using namespace scsi_defs; |
| 16 | |
| 17 | AbstractController::AbstractController(BUS& bus, int target_id, int max_luns) : bus(bus), target_id(target_id), max_luns(max_luns) |
| 18 | { |
| 19 | device_logger.SetIdAndLun(target_id, -1); |
| 20 | } |
| 21 | |
| 22 | void AbstractController::AllocateCmd(size_t size) |
| 23 | { |
nothing calls this directly
no test coverage detected