myprog11.c

来自「Simple Operating Systems (简称SOS)是一个可以运行在」· C语言 代码 · 共 106 行

C
106
字号
/* Copyright (C) 2005 David Decotigny   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   of the License, 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, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307,   USA. */#include <crt.h>#include <libc.h>#include <stdarg.h>#include <debug.h>/** * @file myprog11.c * * mresize tests * * We use the temporary syscall 4004 to dump the list of VRs in the * thread's address space */int main(){  void * moved;  char * zoup;  zoup = fakemmap((void*)4096, 8*1024*1024,		  PROT_READ | PROT_WRITE,		  MAP_SHARED,		  "/dev/zero", 34);  bochs_printf("mapped @%x\n", (unsigned)zoup);  /* Do some forks to complicate things */  fork();  fork();  /* First, split the region in slices using a sequence of     mprotects */  _sos_syscall1(4004, (unsigned)"Initial");  mprotect(zoup, 10*4096, PROT_READ);  zoup += 10*4096;  _sos_syscall1(4004, (unsigned)"After mprotect Low");  mprotect(zoup-4096, 2*4096, PROT_READ);  zoup += 4096;  _sos_syscall1(4004, (unsigned)"After mprotect Before Low");  mprotect(zoup-4096, 4096, PROT_READ);  _sos_syscall1(4004, (unsigned)"After mprotect Before low (bis)");  mprotect(zoup + 1024*1024, 4096, PROT_READ);  _sos_syscall1(4004, (unsigned)"After mprotect Middle");  mprotect(zoup + 1024*1024, 4096, PROT_READ);  _sos_syscall1(4004, (unsigned)"After mprotect Middle (bis)");  mprotect(zoup + 8*1024*1024 - 11*4096 - 4096, 4096, PROT_READ);  _sos_syscall1(4004, (unsigned)"After mprotect High");  mprotect(zoup + 8*1024*1024 - 11*4096 - 2*4096, 3*4096, PROT_READ);  _sos_syscall1(4004, (unsigned)"After mprotect Past High");  mprotect((void*)0x40000000, 0x10000000, PROT_READ);  _sos_syscall1(4004, (unsigned)"After mprotect Complete VR");  mprotect((void*)0x40000000, 0x10000000, PROT_READ);  _sos_syscall1(4004, (unsigned)"After mprotect Complete VR (bis)");  /* Now try to resize one of the VR */  moved = zoup + 8*1024*1024 - 11*4096 - 10*4096;  _sos_mresize(zoup + 8*1024*1024 - 11*4096 - 2*4096, 3*4096,	       & moved, 40*4096, 0);  _sos_syscall1(4004, (unsigned)"After mremap (not allowed)");  bochs_printf("moved=%x\n", (unsigned)moved);  _sos_mresize(zoup + 8*1024*1024 - 11*4096 - 2*4096, 4096,	       & moved, 40*4096, 0);  _sos_syscall1(4004, (unsigned)"After mremap (not allowed - bis)");  bochs_printf("moved=%x\n", (unsigned)moved);  _sos_mresize(zoup + 8*1024*1024 - 11*4096 - 2*4096, 4096,	       & moved, 40*4096, MREMAP_MAYMOVE);  _sos_syscall1(4004, (unsigned)"After mremap (DO move)");  bochs_printf("moved=%x\n", (unsigned)moved);  _sos_mresize(moved, 4096,	       & moved, 100*4096, MREMAP_MAYMOVE);  _sos_syscall1(4004, (unsigned)"After mremap (DO move)");  bochs_printf("moved=%x\n", (unsigned)moved);  return 0;}

⌨️ 快捷键说明

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