Changeset f89979b in mainline for uspace/lib/libc/generic/io/stream.c


Ignore:
Timestamp:
2009-02-17T23:05:15Z (16 years ago)
Author:
Jiri Svoboda <jirik.svoboda@…>
Branches:
lfn, master, serial, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
Children:
24ff4df
Parents:
96e0748d
Message:

Keyboard driver overhaul — organize by hardware structure. This is w.i.p. Modifier keys, as well as ppc32, ia64 and sparc64 will not work yet.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • uspace/lib/libc/generic/io/stream.c

    r96e0748d rf89979b  
    6868                                rc = kbd_get_event(&ev);
    6969                                if (rc < 0) return -1;
    70                         } while (ev.c == 0);
     70                        } while (ev.c == 0 || ev.type == KE_RELEASE);
    7171
    7272                        ((char *) buf)[i++] = ev.c;
Note: See TracChangeset for help on using the changeset viewer.