2011-12-22 15:19:25 +00:00
|
|
|
/*
|
2015-03-20 16:50:41 +00:00
|
|
|
* \brief Architecture-specific functions
|
2011-12-22 15:19:25 +00:00
|
|
|
* \author Sebastian Sumpf
|
|
|
|
* \date 2009-10-26
|
|
|
|
*/
|
|
|
|
|
|
|
|
/*
|
2017-02-20 12:23:52 +00:00
|
|
|
* Copyright (C) 2009-2017 Genode Labs GmbH
|
2011-12-22 15:19:25 +00:00
|
|
|
*
|
|
|
|
* This file is part of the Genode OS framework, which is distributed
|
2017-02-20 12:23:52 +00:00
|
|
|
* under the terms of the GNU Affero General Public License version 3.
|
2011-12-22 15:19:25 +00:00
|
|
|
*/
|
|
|
|
|
|
|
|
#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_
|