Custom Query (81 matches)
Results (43 - 45 of 81)
Ticket | Resolution | Summary | Owner | Reporter |
---|---|---|---|---|
#83 | fixed | Disable context switches | ||
Description |
I have a guess that if we build a Win32 application from sources, we don't need to switch the FS register from the OS/2 TIB to the Win32 TIB and back. This is a continuation of the idea from #82 (which already eliminates the need to do this FS switch in order for SEH to work). If we can get rid of this switch completely, we will get save ourselves from having a milky-way of function wrappers used to call OS/2 functions from the Win32 context (and the other way around). Getting rid of something is always good as it reduces chaos. |
|||
#90 | fixed | Implement proper console I/O for SDK mode | ||
Description |
When using Odin in SDK mode, the console I/O is not done properly. This means that STDIN/STDOUT handles are implemented using a very restricted set of functions (HMDeviceStandardClass) which only implements reading and writing (regardless of if the handles are the real console or redirected to files etc). As a result things like GetNumberOfConsoleInputEvents() and PeekConsoleInput() don't work in real console mode (although the code implementing them is present in classes HMDeviceConsoleInClass and HMDeviceConsoleOutClass). And things like SetFilePointer() don't work in redirected mode (although the HMDeviceFile class implements them properly). Due to these defects, the console I/O got partially broken after r22024 (which fixed a lot of inconsistencies in return codes). In particular, this affects Java which will throw an exception if you e.g. attempt to read something from STDIN. |
|||
#95 | duplicate | File dialog is broken | ||
Description |
The standard file open/save dialog is seriously broken in the current Odin builds: it doesn't allow to navigate through the file system properly and can't be even dismissed with OK or Cancel buttons. This is in particular seen in Java AWT applications that use this dialog. |