summaryrefslogtreecommitdiffstats
path: root/c/src/lib/libbsp/powerpc/shared/vectors/vectors.h
diff options
context:
space:
mode:
authorJoel Sherrill <joel.sherrill@OARcorp.com>2004-02-08 20:12:19 +0000
committerJoel Sherrill <joel.sherrill@OARcorp.com>2004-02-08 20:12:19 +0000
commitc25405f86783ac0aeaa2bd8584d939d605eeeaf2 (patch)
tree8ecc6e4f78c05a317fbfafc452ea313fdb5e78bf /c/src/lib/libbsp/powerpc/shared/vectors/vectors.h
parent2004-02-08 Joel Sherrill <joel@OARcorp.com> (diff)
downloadrtems-c25405f86783ac0aeaa2bd8584d939d605eeeaf2.tar.bz2
2004-02-08 Joel Sherrill <joel@OARcorp.com>
* vectors/vectors.h: Force globalExceptHdl into bss section.
Diffstat (limited to '')
-rw-r--r--c/src/lib/libbsp/powerpc/shared/vectors/vectors.h3
1 files changed, 2 insertions, 1 deletions
diff --git a/c/src/lib/libbsp/powerpc/shared/vectors/vectors.h b/c/src/lib/libbsp/powerpc/shared/vectors/vectors.h
index f995b16303..9e1ec30d2c 100644
--- a/c/src/lib/libbsp/powerpc/shared/vectors/vectors.h
+++ b/c/src/lib/libbsp/powerpc/shared/vectors/vectors.h
@@ -137,7 +137,8 @@ typedef struct {
typedef void (*exception_handler_t) (BSP_Exception_frame* excPtr);
-extern exception_handler_t globalExceptHdl;
+extern exception_handler_t globalExceptHdl
+ __attribute__ ((section (".bss")));
/*
* Compatibility with pc386
*/