libc: remove global libc_config()

Issue #3497
This commit is contained in:
Norman Feske 2019-09-20 16:33:22 +02:00 committed by Christian Helmuth
parent 89a38723bd
commit 5f5d709c07
2 changed files with 0 additions and 11 deletions

View File

@ -43,11 +43,6 @@ namespace Libc {
* XXX this function is solely needed to support noux fork mechanism * XXX this function is solely needed to support noux fork mechanism
*/ */
void schedule_suspend(void (*) ()); void schedule_suspend(void (*) ());
/**
* Access libc configuration Xml_node.
*/
Xml_node libc_config();
} }
#endif /* _LIBC__INTERNAL__LEGACY_H_ */ #endif /* _LIBC__INTERNAL__LEGACY_H_ */

View File

@ -35,9 +35,3 @@ void Libc::schedule_suspend(void (*suspended) ())
{ {
Kernel::kernel().schedule_suspend(suspended); Kernel::kernel().schedule_suspend(suspended);
} }
Genode::Xml_node Libc::libc_config()
{
return Kernel::kernel().libc_env().libc_config();
}