net: tcp_client_socket connection state routines
[quarnos.git] / actors / director.cpp
blob606e683ff2def20df7d1234c29a993d9f757514f
1 /* Quarn OS
3 * Director
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 "director.h"
24 #include "arch/low/taskswitch.h"
25 #include "arch/low/memory.h"
26 #include "manes/manec.h"
28 using namespace actors;
30 bool director::initialize() {
31 delegate<void> del_start;
32 arch::create_tss(del_start, arch::create_vm());
33 return true;
36 bool director::type_added(manes::cds::component_name) {
37 return true;
40 void director::execution_flow() {
41 current = execution_list.pop();
42 current->execute();
44 debug("director: nothing to execute, system is halted");
45 while(1) asm("cli\nhlt");
48 void director::start(p<actor> process) {
49 execution_list.push(process);
52 void director::launch(p<actor> process) {
53 start(process);
55 execution_flow();
58 p<actor> director::get_current() const {
59 return current;
62 void director::register_type() {
63 manes::manec::get()->register_type<director>("director", "manec");