From 38c0171af3a932e40f27540b6fb8d7750112bc4a Mon Sep 17 00:00:00 2001 From: patacongo Date: Thu, 10 Mar 2011 14:00:04 +0000 Subject: [PATCH] Experimental version of waitpid() git-svn-id: svn://svn.code.sf.net/p/nuttx/code/trunk@3359 42af7a65-404d-4744-a932-0658087f49c3 --- arch/x86/src/qemu/qemu_vectors.S | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/arch/x86/src/qemu/qemu_vectors.S b/arch/x86/src/qemu/qemu_vectors.S index a512e1f951..87412c21b1 100755 --- a/arch/x86/src/qemu/qemu_vectors.S +++ b/arch/x86/src/qemu/qemu_vectors.S @@ -86,7 +86,7 @@ vector_isr\intno: cli /* Disable interrupts firstly. */ push $0 /* Push a dummy error code. */ push $\intno /* Push the interrupt number. */ - jmp isr_common /* Go to the common handler code. */ + jmp isr_common /* Go to the common ISR handler code. */ .endm /* This macro creates a stub for an ISR which passes it's own @@ -98,7 +98,7 @@ vector_isr\intno: vector_isr\intno: cli /* Disable interrupts firstly. */ push $\intno /* Push the interrupt number. */ - jmp isr_common /* Go to the common handler code. */ + jmp isr_common /* Go to the common ISR handler code. */ .endm /* This macro creates a stub for an IRQ - the first parameter is @@ -111,7 +111,7 @@ vector_irq\irqno: cli /* Disable interrupts firstly. */ push $0 /* Push a dummy error code. */ push $\intno /* Push the interrupt number. */ - jmp isr_common /* Go to the common handler code. */ + jmp irq_common /* Go to the common IRQ handler code. */ .endm /****************************************************************************