Need to investigate if there is a way to speed up the read ops.
One major reason is the fact that ioread can not be called from read_sector hook.
This causes deadlock (or crash?).
That is why I am using separate read thread with read request/response mechanism implemented through mutexes and conditions. This is not fast approach.
Need to investigate if there is a way to speed up the read ops. One major reason is the fact that ioread can not be called from read_sector hook. This causes deadlock (or crash?). That is why I am using separate read thread with read request/response mechanism implemented through mutexes and conditions. This is not fast approach.