Changeset bb51e9a8 in mainline
- Timestamp:
- 2006-06-02T13:54:29Z (19 years ago)
- Branches:
- lfn, master, serial, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
- Children:
- 37458472
- Parents:
- 83b1d61
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
console/console.c
r83b1d61 rbb51e9a8 50 50 struct { 51 51 int phone; /**< Framebuffer phone */ 52 i nt rows; /**< Framebuffer rows */53 i nt cols; /**< Framebuffer columns */52 ipcarg_t rows; /**< Framebuffer rows */ 53 ipcarg_t cols; /**< Framebuffer columns */ 54 54 } fb_info; 55 55 … … 63 63 } connection_t; 64 64 65 66 65 67 connection_t connections[CONSOLE_COUNT]; 66 68 … … 155 157 char c,d; 156 158 connection_t *conn; 157 159 keyfield_t *interbuffer = NULL; 160 161 // interbuffer = mmap(,, PROTO_READ|PROTO_WRITE, MAP_ANONYMOUS, , ); 162 158 163 /* Ignore parameters, the connection is alread opened */ 159 164 while (1) { … … 297 302 return -1; 298 303 }; 299 async_new_connection(phonehash, 0, NULL, keyboard_events);300 304 301 305 /* Connect to framebuffer driver */ … … 323 327 } 324 328 329 async_new_connection(phonehash, 0, NULL, keyboard_events); 330 325 331 ipc_call_async_2(fb_info.phone, FB_CURSOR_GOTO, 0, 0, NULL, NULL); 326 332
Note:
See TracChangeset
for help on using the changeset viewer.