tarea.c

Go to the documentation of this file.
00001 /* tarea.c */
00002 #include "stdarg.h"
00003 #include "routix.h"
00004 #include "string.h"
00005 
00006 int main (void)
00007 {
00008         printf("Ejemplo utilizado para verificar un PAGE-fault por falta de privilegios\n");
00009 
00010         long *p = 0;
00011         printf("Intentando leer la direccion: 0x%x\n", p);
00012         printf("Contenido de la posicion 0x%x: 0x%x\n", p, *p);
00013         printf("Voy a intentar escribir la direccion: 0x%x\n", p);
00014         *p = 0xabcdef01;
00015         printf("ok...\n");
00016         printf("Puede escribir en la direccion: 0x%x el valor: 0x%x\n", p,*p);
00017         
00018         
00019         
00020         exit(0);
00021 }

Generated on Sun May 30 18:38:35 2004 for Routix OS by doxygen 1.3.6