Subversion Repositories HelenOS-historic

Compare Revisions

Ignore whitespace Rev 116 → Rev 117

/SPARTAN/trunk/doc/requirements
12,8 → 12,8
SMP COMPATIBILITY
o Bochs 2.0.2 - Bochs 2.2
o 2x-8x 686 CPU
o Simics 2.0.28
o 4x Pentium 4 CPU
o Simics 2.0.28 - Simics 2.2.14
o 2x-4x Pentium 4 CPU
o ASUS P/I-P65UP5 + ASUS C-P55T2D REV. 1.41
o 2x 200Mhz Pentium CPU
/SPARTAN/trunk/src/Makefile.config
17,10 → 17,10
DEBUG_SPINLOCK=DEBUG_SPINLOCK
 
# Uncomment if you want to compile in userspace support
#USERSPACE=__USERSPACE__
USERSPACE=__USERSPACE__
 
# Uncomment if you want to run in the test mode
#TEST=__TEST__
TEST=__TEST__
 
TEST_FILE=test.c
 
28,8 → 28,8
#TEST_DIR=synch/rwlock1/
#TEST_DIR=synch/rwlock2/
#TEST_DIR=synch/rwlock3/
#TEST_DIR=synch/rwlock4/
TEST_DIR=synch/rwlock4/
#TEST_DIR=synch/rwlock5/
#TEST_DIR=synch/semaphore1/
#TEST_DIR=synch/semaphore2/
TEST_DIR=fpu/fpu1
#TEST_DIR=fpu/fpu1
/SPARTAN/trunk/arch/ia32/src/smp/ap.S
69,6 → 69,6
 
call map_kernel
 
ljmp $KTEXT,$main_ap
jmpl $KTEXT,$main_ap
 
#endif /* __SMP__ */
/SPARTAN/trunk/arch/ia32/src/smp/apic.c
44,7 → 44,7
* Advanced Programmable Interrupt Controller for MP systems.
* Tested on:
* Bochs 2.0.2 - Bochs 2.2 with 2-8 CPUs
* Simics 2.0.28
* Simics 2.0.28 - Simics 2.2.14 2-4 CPUs
* ASUS P/I-P65UP5 + ASUS C-P55T2D REV. 1.41 with 2x 200Mhz Pentium CPUs
*/
 
/SPARTAN/trunk/arch/ia32/src/interrupt.c
115,8 → 115,7
printf("stack[0]=%X, %%eip=%X, %%cs=%X, flags=%X\n", stack[0], stack[1], stack[2], stack[3]);
printf("%%eax=%L, %%ebx=%L, %%ecx=%L, %%edx=%L,\n%%edi=%L, %%esi=%L, %%ebp=%L, %%esp=%L\n", stack[-2], stack[-5], stack[-3], stack[-4], stack[-9], stack[-8], stack[-1], stack);
printf("stack: %X, %X, %X, %X\n", stack[4], stack[5], stack[6], stack[7]);
printf("page fault\n");
cpu_halt();
panic("page fault\n");
}
 
void syscall(__u8 n, __u32 stack[])