mirror of
https://github.com/genodelabs/genode.git
synced 2024-12-19 05:37:54 +00:00
libdrm/lima: remove try-catch from ioctl call
Remove the exception handling as at this point all exceptions should have been handled internally already. Issue #4760.
This commit is contained in:
parent
b8d8ff6d4d
commit
401da72a86
@ -874,20 +874,14 @@ int lima_drm_ioctl(unsigned long request, void *arg)
|
||||
if (verbose_ioctl)
|
||||
dump_ioctl(request);
|
||||
|
||||
try {
|
||||
int ret = _drm->ioctl(request, arg);
|
||||
int const ret = _drm->ioctl(request, arg);
|
||||
|
||||
if (verbose_ioctl)
|
||||
Genode::log("returned ", ret);
|
||||
|
||||
pthread_mutex_unlock(&ioctl_mutex);
|
||||
|
||||
return ret;
|
||||
} catch (...) { }
|
||||
if (verbose_ioctl)
|
||||
Genode::log("returned ", ret);
|
||||
|
||||
pthread_mutex_unlock(&ioctl_mutex);
|
||||
|
||||
return -1;
|
||||
return ret;
|
||||
}
|
||||
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user