mirror of
https://github.com/genodelabs/genode.git
synced 2024-12-21 06:33:31 +00:00
25 lines
599 B
C
25 lines
599 B
C
/*
|
|
* \brief Iguana API functions needed by OKLinux
|
|
* \author Norman Feske
|
|
* \date 2009-04-12
|
|
*/
|
|
|
|
/*
|
|
* 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__OKLINUX_SUPPORT__IGUANA__TLS_H_
|
|
#define _INCLUDE__OKLINUX_SUPPORT__IGUANA__TLS_H_
|
|
|
|
/**
|
|
* Initialize thread local storage for the actual thread
|
|
*
|
|
* \param tls_buffer buffer for the actual thread
|
|
*/
|
|
void __tls_init(void *tls_buffer);
|
|
|
|
#endif //_INCLUDE__OKLINUX_SUPPORT__IGUANA__TLS_H_
|