Changeset c0e674a in mainline for console/console.c
- Timestamp:
- 2006-05-31T16:15:44Z (19 years ago)
- Branches:
- lfn, master, serial, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
- Children:
- 5052046
- Parents:
- b27a97bb
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
console/console.c
rb27a97bb rc0e674a 39 39 #include <async.h> 40 40 41 static void sysput(char c) 42 { 43 __SYSCALL3(SYS_IO, 1, &c, 1); 44 45 } 41 46 //#define CONSOLE_COUNT VFB_CONNECTIONS 42 47 #define CONSOLE_COUNT 6 … … 157 162 case CONSOLE_GETCHAR: 158 163 /* FIXME: Only temporary solution until request storage will be created */ 159 160 164 while (!keybuffer_pop(&(connections[active_client].keybuffer), (char *)&arg1)) { 161 165 /* FIXME: buffer empty -> store request */ 162 usleep(10000);166 async_usleep(100000); 163 167 }; 164 168
Note:
See TracChangeset
for help on using the changeset viewer.