usb: mass storage class implementation stub, set_configuration request
[quarnos.git] / actors / actor.cpp
blobd20045229c6b314dd063e5f60bdc1df1969e7d0e
1 /* Quarn OS
3 * Actor
5 * Copyright (C) 2008-2009 Pawel Dziepak
7 * This program is free software; you can redistribute it and/or modify
8 * it under the terms of the GNU General Public License as published by
9 * the Free Software Foundation; either version 2 of the License, or
10 * (at your option) any later version.
12 * This program is distributed in the hope that it will be useful,
13 * but WITHOUT ANY WARRANTY; without even the implied warranty of
14 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
15 * GNU General Public License for more details.
17 * You should have received a copy of the GNU General Public License along
18 * with this program; if not, write to the Free Software Foundation, Inc.,
19 * 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
23 #include "actor.h"
24 #include "manes/error.h"
25 #include "manes/manec.h"
27 #include "arch/low/memory.h"
28 #include "arch/low/taskswitch.h"
30 using namespace actors;
32 actor::actor() : tss_selector(0) {}
34 void actor::set(delegate<void> _start) {
35 assert("actor: unknown entry point", _start.null());
37 start = _start;
39 tss_selector = arch::create_tss(_start, arch::create_vm());
42 void actor::execute() {
43 assert("actor: unknown entry point", start.null());
45 arch::jump_tss(tss_selector);
48 void actor::register_type() {
49 manes::manec::get()->register_type<actor>("actor", "none");
52 unsigned int actor::get_tss() {
53 return tss_selector;