diff options
author | Jens Gulin <jens.gulin@sonyericsson.com> | 2010-06-22 22:21:57 +0200 |
---|---|---|
committer | Johan Redestig <johan.redestig@sonyericsson.com> | 2010-06-28 11:36:14 +0200 |
commit | 6d85ea9c556be7b49302d2f35f4ebc99b4827366 (patch) | |
tree | 6a16cb589b047fc09dbd554cd87eb065acb9447d /include/ui | |
parent | dd1880ee5bea09e9d37c6db29ef20e49d619c094 (diff) | |
download | frameworks_base-6d85ea9c556be7b49302d2f35f4ebc99b4827366.zip frameworks_base-6d85ea9c556be7b49302d2f35f4ebc99b4827366.tar.gz frameworks_base-6d85ea9c556be7b49302d2f35f4ebc99b4827366.tar.bz2 |
Keep track of remaining fd when devices are removed
Sometimes the wrong fd was accessed when the device was addressed
by device id.
The earlier implementation assumed that two arrays were in sync
but one of them was compacted when devices were removed. Instead
of that dependency the device now keeps track of it's file descriptor.
Change-Id: I2b8a793d76b89ab464ae830482b309fe86031671
Diffstat (limited to 'include/ui')
-rw-r--r-- | include/ui/EventHub.h | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/include/ui/EventHub.h b/include/ui/EventHub.h index 3b18c77..a21bb49 100644 --- a/include/ui/EventHub.h +++ b/include/ui/EventHub.h @@ -117,6 +117,7 @@ private: uint8_t* keyBitmask; KeyLayoutMap* layoutMap; String8 keylayoutFilename; + int fd; device_t* next; device_t(int32_t _id, const char* _path, const char* name); |