summaryrefslogtreecommitdiff
path: root/nuttx/arch/x86
diff options
context:
space:
mode:
authorpatacongo <patacongo@42af7a65-404d-4744-a932-0658087f49c3>2011-03-10 14:00:04 +0000
committerpatacongo <patacongo@42af7a65-404d-4744-a932-0658087f49c3>2011-03-10 14:00:04 +0000
commitebc734d8e40e310bc94bd8321a70ce1b8ef5d5a9 (patch)
treebbfe061da8b810002e67025923506e4560c00d2b /nuttx/arch/x86
parent3306e7be0283dd220a33eb83f88b568b915ea7b8 (diff)
downloadpx4-nuttx-ebc734d8e40e310bc94bd8321a70ce1b8ef5d5a9.tar.gz
px4-nuttx-ebc734d8e40e310bc94bd8321a70ce1b8ef5d5a9.tar.bz2
px4-nuttx-ebc734d8e40e310bc94bd8321a70ce1b8ef5d5a9.zip
Experimental version of waitpid()
git-svn-id: svn://svn.code.sf.net/p/nuttx/code/trunk@3359 42af7a65-404d-4744-a932-0658087f49c3
Diffstat (limited to 'nuttx/arch/x86')
-rwxr-xr-xnuttx/arch/x86/src/qemu/qemu_vectors.S6
1 files changed, 3 insertions, 3 deletions
diff --git a/nuttx/arch/x86/src/qemu/qemu_vectors.S b/nuttx/arch/x86/src/qemu/qemu_vectors.S
index a512e1f95..87412c21b 100755
--- a/nuttx/arch/x86/src/qemu/qemu_vectors.S
+++ b/nuttx/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
/****************************************************************************