mirror of
https://github.com/genodelabs/genode.git
synced 2025-06-21 00:23:16 +00:00
loader: Qualify size_t usages
The compiler complained about ambigous references when compiling a lx_hybrid program using the loader session. Here are some error messages: genode/os/include/loader_session/loader_session.h:72: error: reference to 'size_t' is ambiguous /usr/lib/gcc/i486-linux-gnu/4.4.5/include/stddef.h:211: error: candidates are: typedef unsigned int size_t genode/base/include/base/stdint.h:25: error: typedef unsigned int Genode::size_t genode/os/include/loader_session/loader_session.h:72: error: reference to 'size_t' is ambiguous /usr/lib/gcc/i486-linux-gnu/4.4.5/include/stddef.h:211: error: candidates are: typedef unsigned int size_t genode/base/include/base/stdint.h:25: error: typedef unsigned int Genode::size_t ... This commit qualifies size_t using the Genode namespace which fixes the compilation.
This commit is contained in:
committed by
Norman Feske
parent
c56c9f586d
commit
2da030d22e
@ -26,13 +26,13 @@ namespace Loader {
|
||||
explicit Session_client(Loader::Session_capability session)
|
||||
: Rpc_client<Session>(session) { }
|
||||
|
||||
Dataspace_capability alloc_rom_module(Name const &name, size_t size) {
|
||||
Dataspace_capability alloc_rom_module(Name const &name, Genode::size_t size) {
|
||||
return call<Rpc_alloc_rom_module>(name, size); }
|
||||
|
||||
void commit_rom_module(Name const &name) {
|
||||
call<Rpc_commit_rom_module>(name); }
|
||||
|
||||
void ram_quota(size_t quantum) {
|
||||
void ram_quota(Genode::size_t quantum) {
|
||||
call<Rpc_ram_quota>(quantum); }
|
||||
|
||||
void constrain_geometry(int width, int height) {
|
||||
|
Reference in New Issue
Block a user