Experimental version of waitpid()

git-svn-id: svn://svn.code.sf.net/p/nuttx/code/trunk@3359 42af7a65-404d-4744-a932-0658087f49c3
This commit is contained in:
patacongo 2011-03-10 14:00:04 +00:00
parent 22b72b3ebe
commit 38c0171af3

View File

@ -86,7 +86,7 @@ vector_isr\intno:
cli /* Disable interrupts firstly. */ cli /* Disable interrupts firstly. */
push $0 /* Push a dummy error code. */ push $0 /* Push a dummy error code. */
push $\intno /* Push the interrupt number. */ 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 .endm
/* This macro creates a stub for an ISR which passes it's own /* This macro creates a stub for an ISR which passes it's own
@ -98,7 +98,7 @@ vector_isr\intno:
vector_isr\intno: vector_isr\intno:
cli /* Disable interrupts firstly. */ cli /* Disable interrupts firstly. */
push $\intno /* Push the interrupt number. */ 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 .endm
/* This macro creates a stub for an IRQ - the first parameter is /* This macro creates a stub for an IRQ - the first parameter is
@ -111,7 +111,7 @@ vector_irq\irqno:
cli /* Disable interrupts firstly. */ cli /* Disable interrupts firstly. */
push $0 /* Push a dummy error code. */ push $0 /* Push a dummy error code. */
push $\intno /* Push the interrupt number. */ 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 .endm
/**************************************************************************** /****************************************************************************