mirror of
https://github.com/genodelabs/genode.git
synced 2024-12-21 22:47:50 +00:00
libc_noux: silence common not implemented warnings
This commit is contained in:
parent
dd73cf9baf
commit
f8376e1f49
@ -376,7 +376,6 @@ extern "C" int getrlimit(int resource, struct rlimit *rlim)
|
||||
return 0;
|
||||
}
|
||||
errno = ENOSYS;
|
||||
warning(__func__, " not implemented (resource=", resource, ")");
|
||||
return -1;
|
||||
}
|
||||
|
||||
@ -1418,6 +1417,13 @@ namespace {
|
||||
break;
|
||||
}
|
||||
|
||||
case TIOCSETA:
|
||||
{
|
||||
/* not implemented but used by e.g. vim */
|
||||
break;
|
||||
}
|
||||
|
||||
|
||||
default:
|
||||
|
||||
warning("unsupported ioctl (request=", Hex(request), ")");
|
||||
|
Loading…
Reference in New Issue
Block a user