mirror of
https://github.com/genodelabs/genode.git
synced 2024-12-22 06:57:51 +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;
|
return 0;
|
||||||
}
|
}
|
||||||
errno = ENOSYS;
|
errno = ENOSYS;
|
||||||
warning(__func__, " not implemented (resource=", resource, ")");
|
|
||||||
return -1;
|
return -1;
|
||||||
}
|
}
|
||||||
|
|
||||||
@ -1418,6 +1417,13 @@ namespace {
|
|||||||
break;
|
break;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
case TIOCSETA:
|
||||||
|
{
|
||||||
|
/* not implemented but used by e.g. vim */
|
||||||
|
break;
|
||||||
|
}
|
||||||
|
|
||||||
|
|
||||||
default:
|
default:
|
||||||
|
|
||||||
warning("unsupported ioctl (request=", Hex(request), ")");
|
warning("unsupported ioctl (request=", Hex(request), ")");
|
||||||
|
Loading…
Reference in New Issue
Block a user