| ARM Technical Support Knowledge Articles | |
Applies to: L166 Linker/Locator
Information in this article applies to:
I receive the following linker error when I link my program.
*** ERROR L124: INTERRUPT NUMBER ALREADY USED
What causes this message and how can I correct it?
This message is caused when the linker detects that there are two interrupt service routines for the same interrupt trap.
Refer to the Interrupt Procedures section of the linker MAP file and look for interrupt procedures with the same interrupt number:
INTERRUPT PROCEDURES OF MODULE: vsfd (MAIN) INTERRUPT PROCEDURE INT INTERRUPT NAME ===================================================== rtx_nmi_handler 2 --- rtx_btrap_handler 10 --- NMI_trap 2 --- STKOF_trap 4 --- STKUF_trap 6 --- Class_B_trap 10 --- ?C_RESET 0 RESET rtx_167int_16 16 --- rtx_167int_17 17 --- rtx_167int_18 18 --- rtx_167int_19 19 --- rtx_167int_20 20 --- . . . rtx_167int_70 70 --- rtx_167int_71 71 --- rtx_stkovf_handler 4 --- rtx_stkunf_handler 6 ---
As you can see in the above listing,
To resolve this error, remove the duplicate functions from your program and recompile.
Article last edited on: 2005-07-15 14:40:15
Did you find this article helpful? Yes No
How can we improve this article?