diff options
author | peter <peter@FreeBSD.org> | 2004-01-23 01:04:28 +0000 |
---|---|---|
committer | peter <peter@FreeBSD.org> | 2004-01-23 01:04:28 +0000 |
commit | df899a25be2c3b8dca391eed99a67553353190b3 (patch) | |
tree | 4491dd6f8e3eb4fb58951547a9b087efef240da3 | |
parent | b9c5f2c5c5f960acdacef04cf30fa60e74f4c5c7 (diff) | |
download | FreeBSD-src-df899a25be2c3b8dca391eed99a67553353190b3.zip FreeBSD-src-df899a25be2c3b8dca391eed99a67553353190b3.tar.gz |
Unbreak amd64: Rename calls from panic to __panic
-rw-r--r-- | sys/amd64/amd64/cpu_switch.S | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/sys/amd64/amd64/cpu_switch.S b/sys/amd64/amd64/cpu_switch.S index 3bfcfc8..c860ec3 100644 --- a/sys/amd64/amd64/cpu_switch.S +++ b/sys/amd64/amd64/cpu_switch.S @@ -243,7 +243,7 @@ badsw1: pushq %r14 pushq %r15 pushq $sw0_1 - call panic + call __panic sw0_1: .asciz "cpu_throw: no newthread supplied" badsw2: @@ -263,7 +263,7 @@ badsw2: pushq %r14 pushq %r15 pushq $sw0_2 - call panic + call __panic sw0_2: .asciz "cpu_switch: no curthread supplied" badsw3: @@ -283,7 +283,7 @@ badsw3: pushq %r14 pushq %r15 pushq $sw0_3 - call panic + call __panic sw0_3: .asciz "cpu_switch: no newthread supplied" #endif |