Changes between Version 3 and Version 4 of DiffFromUnix
- Timestamp:
- 2012-05-02T08:40:23Z (12 years ago)
Legend:
- Unmodified
- Added
- Removed
- Modified
-
DiffFromUnix
v3 v4 21 21 == No serial terminals == 22 22 23 To Be Written. 23 In the world of UNIX-like operating systems command-line applications can make use of a pseudo-graphical UI via [n]curses or a similar library. This provides commands like move cursor, set color, etc. Conversely keyboard input (including some control keys like arrows, Page Up, etc) can be retrieved by the application. However only a dumb serial line / character device is assumed to connect the application to the console. 24 25 Therefore all the pseudo-graphical commands are marshaled into a character stream (escape sequences) by the curses library and unmarshaled by the console. Conversely the keyboard input is marshaled by the console and unmarshaled by the curses library. This is the common cause of many problems. 26 27 In HelenOS the application talks directly to the console via an IPC interface. 24 28 25 29 == No X ==