remove devices we cannot read anymore

This commit is contained in:
Chrys 2019-10-04 17:10:58 +02:00
parent ca5ce66f31
commit 23edc5eaa7

View File

@ -333,6 +333,7 @@ class driver(inputDriver):
self.env['runtime']['debug'].writeDebugOut('InputDriver evdev: grab device ('+ str(self.iDevices[fd].name) + ')',debug.debugLevel.INFO)
except IOError:
self.gDevices[fd] = True
self.removeDevice(fd)
except Exception as e:
self.env['runtime']['debug'].writeDebugOut('InputDriver evdev: grabing not possible: ' + str(e),debug.debugLevel.ERROR)
return False
@ -346,6 +347,7 @@ class driver(inputDriver):
self.env['runtime']['debug'].writeDebugOut('InputDriver evdev: ungrab device ('+ str(self.iDevices[fd].name) + ')',debug.debugLevel.INFO)
except IOError:
self.gDevices[fd] = False
self.removeDevice(fd)
except Exception as e:
return False
return True