Changeset b50b5af2 in mainline for uspace/srv/kbd/generic/kbd.c
- Timestamp:
- 2009-08-22T10:48:00Z (16 years ago)
- Branches:
- lfn, master, serial, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
- Children:
- 04803bf
- Parents:
- 1ea99cc (diff), a71c158 (diff)
Note: this is a merge changeset, the changes displayed below correspond to the merge itself.
Use the(diff)
links above to see all the changes relative to each parent. - File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
uspace/srv/kbd/generic/kbd.c
r1ea99cc rb50b5af2 38 38 #include <ipc/ipc.h> 39 39 #include <ipc/services.h> 40 #include <ipc/kbd.h> 40 41 #include <sysinfo.h> 41 42 #include <stdio.h> … … 51 52 52 53 #include <kbd.h> 53 #include <keybuffer.h>54 54 #include <kbd_port.h> 55 55 #include <kbd_ctl.h> … … 60 60 int cons_connected = 0; 61 61 int phone2cons = -1; 62 keybuffer_t keybuffer;63 62 64 63 /** Currently active modifiers. */ … … 125 124 mods = mods ^ (mod_mask & ~lock_keys); 126 125 lock_keys = lock_keys | mod_mask; 126 127 /* Update keyboard lock indicator lights. */ 128 kbd_ctl_set_ind(mods); 127 129 } else { 128 130 lock_keys = lock_keys & ~mod_mask; … … 239 241 layout[active_layout]->reset(); 240 242 241 /* Initialize key buffer */242 keybuffer_init(&keybuffer);243 244 243 async_set_client_connection(console_connection); 245 244
Note:
See TracChangeset
for help on using the changeset viewer.