os: Slave config with non-zero-terminated strings

This commit is contained in:
Norman Feske 2014-06-25 18:12:45 +02:00
parent 76ecfff7b6
commit 9d7270b174
1 changed files with 5 additions and 0 deletions

View File

@ -97,6 +97,11 @@ namespace Genode {
_config_policy.load(config, Genode::strlen(config) + 1);
}
void configure(char const *config, size_t len)
{
_config_policy.load(config, len);
}
/****************************
** Child_policy interface **