imgmap

来自「C++ 编写的EROS RTOS」· 代码 · 共 82 行

TXT
82
字号
/* -*- Mode: c -*- *//* * Copyright (C) 1998, 1999, Jonathan S. Shapiro. * * This file is part of the EROS Operating System. * * This program is free software; you can redistribute it and/or * modify it under the terms of the GNU General Public License * as published by the Free Software Foundation; either version 2, * or (at your option) any later version. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the * GNU General Public License for more details. * * You should have received a copy of the GNU General Public License * along with this program; if not, write to the Free Software * Foundation, 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. *//* Test image for mutex constructor */#define DEBUG/********************************************* * PRIMORDIAL DOMAINS *********************************************/#include <primebank.map>#include <pcc.map>#include <metacon.map>#include <mutex.map>/******************************************************** * Actual test case ********************************************************/call = new process;echo = new process;call.seg = small program "call";call.pc = symbol "call" _start;echo.seg = small program "echo";echo.pc = symbol "echo" _start;/* add stack pages: */call pc = call.pc;call space = call.seg;call schedule =  sched(8);echo pc = echo.pc;echo space = echo.seg;echo schedule = sched(8);/* constituent keys: */call_constit = new node;call_constit[8] = start echo 0;call_constit[9] = misc Console;call_constit[10] = mutexf;call_constit[12] = sched(8);call_constit[13] = misc Sleep;echo_constit = new node;echo_constit[10] = misc Console;/* key registers: */call key reg 1 = call_constit;call key reg 2 = call;call key reg 4 = primebank;call key reg 5 = sched(8);echo key reg 1 = echo_constit;echo key reg 2 = echo;echo key reg 4 = primebank;echo key reg 5 = sched(8);run call;run echo;print directory;

⌨️ 快捷键说明

复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?