]> rtime.felk.cvut.cz Git - l4.git/blob - l4/pkg/cxx_thread/src/ARCH-x86/thread-arch.cc
Inital import
[l4.git] / l4 / pkg / cxx_thread / src / ARCH-x86 / thread-arch.cc
1 /*
2  * (c) 2004-2009 Technische Universität Dresden
3  * This file is part of TUD:OS and distributed under the terms of the
4  * GNU Lesser General Public License 2.1.
5  * Please see the COPYING-LGPL-2.1 file for details.
6  */
7
8 #include <l4/cxx/thread>
9
10 namespace cxx {
11
12   void Thread::start_cxx_thread(Thread *_this)
13   { _this->execute(); }
14
15   void Thread::kill_cxx_thread(Thread *_this)
16   { _this->shutdown(); }
17
18 };
19