Changeset f89979b in mainline for uspace/lib/libc
- Timestamp:
- 2009-02-17T23:05:15Z (16 years ago)
- Branches:
- lfn, master, serial, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
- Children:
- 24ff4df
- Parents:
- 96e0748d
- Location:
- uspace/lib/libc
- Files:
-
- 3 edited
Legend:
- Unmodified
- Added
- Removed
-
uspace/lib/libc/generic/io/stream.c
r96e0748d rf89979b 68 68 rc = kbd_get_event(&ev); 69 69 if (rc < 0) return -1; 70 } while (ev.c == 0 );70 } while (ev.c == 0 || ev.type == KE_RELEASE); 71 71 72 72 ((char *) buf)[i++] = ev.c; -
uspace/lib/libc/generic/kbd.c
r96e0748d rf89979b 51 51 52 52 ev->type = r0; 53 ev-> c= r1;54 ev-> key= r2;55 ev-> mods= r3;53 ev->key = r1; 54 ev->mods = r2; 55 ev->c = r3; 56 56 57 57 return 0; -
uspace/lib/libc/include/kbd/keycode.h
r96e0748d rf89979b 55 55 /* Main block row 1 */ 56 56 57 KC_BACKTICK ,57 KC_BACKTICK = 1, 58 58 59 59 KC_1,
Note:
See TracChangeset
for help on using the changeset viewer.