genode/base-linux/src/core/thread_linux.cc

65 lines
1.5 KiB
C++
Raw Normal View History

2011-12-22 16:19:25 +01:00
/*
* \brief Implementation of the core-internal Thread API via Linux threads
* \author Norman Feske
* \date 2006-06-13
*/
/*
2013-01-10 21:44:47 +01:00
* Copyright (C) 2006-2013 Genode Labs GmbH
2011-12-22 16:19:25 +01:00
*
* This file is part of the Genode OS framework, which is distributed
* under the terms of the GNU General Public License version 2.
*/
/* Genode includes */
#include <base/thread.h>
#include <base/sleep.h>
/* Linux syscall bindings */
#include <linux_syscalls.h>
using namespace Genode;
static void empty_signal_handler(int) { }
void Thread_base::_thread_start()
2011-12-22 16:19:25 +01:00
{
/*
* Set signal handler such that canceled system calls get not transparently
* retried after a signal gets received.
2011-12-22 16:19:25 +01:00
*/
lx_sigaction(LX_SIGUSR1, empty_signal_handler);
/*
* Deliver SIGCHLD signals to no thread other than the main thread. Core's
* main thread will handle the signals while executing the 'wait_for_exit'
* function, which is known to not hold any locks that would interfere with
* the handling of the signal.
*/
lx_sigsetmask(LX_SIGCHLD, false);
2011-12-22 16:19:25 +01:00
Thread_base::myself()->entry();
Thread_base::myself()->_join_lock.unlock();
2011-12-22 16:19:25 +01:00
sleep_forever();
}
void Thread_base::_init_platform_thread() { }
void Thread_base::_deinit_platform_thread() { }
void Thread_base::start()
{
/* align initial stack to 16 byte boundary */
void *thread_sp = (void *)((addr_t)(_context->stack) & ~0xf);
_tid.tid = lx_create_thread(Thread_base::_thread_start, thread_sp, this);
2011-12-22 16:19:25 +01:00
_tid.pid = lx_getpid();
}
void Thread_base::cancel_blocking() { }