mirror of
https://github.com/genodelabs/genode.git
synced 2024-12-30 02:28:54 +00:00
ca971bbfd8
This patch changes the top-level directory layout as a preparatory step for improving the tools for managing 3rd-party source codes. The rationale is described in the issue referenced below. Issue #1082
25 lines
527 B
C++
25 lines
527 B
C++
/*
|
|
* \brief Architecture specific functions
|
|
* \author Sebastian Sumpf
|
|
* \date 2009-10-26
|
|
*/
|
|
|
|
/*
|
|
* Copyright (C) 2009-2013 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 _LDSO_ARCH_H_
|
|
#define _LDSO_ARCH_H_
|
|
|
|
#include <dataspace/capability.h>
|
|
|
|
namespace Genode {
|
|
void set_parent_cap_arch(void *ptr);
|
|
int binary_name(Dataspace_capability ds_cap, char *buf, size_t buf_size);
|
|
}
|
|
|
|
#endif //_LDSO_ARCH_H_
|