Indirection bug fix
Colin (478) 2433 posts |
There is a bug with redirection which serial redirection exaggerates. In Kernel.s.Oscli RemoveOscliCharJobs wants changing from
to
The problem is that the handles are set to 0 before the WrchV is released and the file handle is closed. If you do
the serial driver can be sleeping in the file close function and any writes to WrchV while it is sleeping use a 0 filehandle. In my fix – the second version – I have moved the release of the vector to before the file close. Tested on an iyonix. |