mirror of
https://github.com/mmueller41/genode.git
synced 2026-01-22 04:52:56 +01:00
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.
34 lines
767 B
C++
34 lines
767 B
C++
/*
|
|
* \brief Connection to Loader service
|
|
* \author Christian Prochaska
|
|
* \author Norman Feske
|
|
* \date 2009-10-05
|
|
*/
|
|
|
|
/*
|
|
* Copyright (C) 2009-2012 Genode Labs GmbH
|
|
*
|
|
* This file is part of the Genode OS framework, which is distributed
|
|
* under the terms of the GNU General Public License version 2.
|
|
*/
|
|
|
|
#ifndef _INCLUDE__LOADER_SESSION__CONNECTION_H_
|
|
#define _INCLUDE__LOADER_SESSION__CONNECTION_H_
|
|
|
|
#include <loader_session/client.h>
|
|
#include <base/connection.h>
|
|
|
|
namespace Loader {
|
|
|
|
struct Connection : Genode::Connection<Session>, Session_client
|
|
{
|
|
Connection(Genode::size_t ram_quota)
|
|
:
|
|
Genode::Connection<Session>(session("ram_quota=%zd", ram_quota)),
|
|
Session_client(cap())
|
|
{ }
|
|
};
|
|
}
|
|
|
|
#endif /* _INCLUDE__LOADER_SESSION__CONNECTION_H_ */
|