|
|
|
|
|
|
|
|
|
|
xen-changelog
[Xen-changelog] [xen-unstable] stubdom: fix constructors/destructors in
# HG changeset patch
# User Keir Fraser <keir.fraser@xxxxxxxxxx>
# Date 1211531757 -3600
# Node ID fbf09143c2e51b9f662e9d53020fa2487674edc4
# Parent f05795acfca9fe2be69622b782bfa5b91abe9725
stubdom: fix constructors/destructors in 64bit mode
Signed-off-by: Samuel Thibault <samuel.thibault@xxxxxxxxxxxxx>
---
extras/mini-os/arch/ia64/minios-ia64.lds | 8 ++++----
extras/mini-os/arch/x86/minios-x86_64.lds | 8 ++++----
2 files changed, 8 insertions(+), 8 deletions(-)
diff -r f05795acfca9 -r fbf09143c2e5 extras/mini-os/arch/ia64/minios-ia64.lds
--- a/extras/mini-os/arch/ia64/minios-ia64.lds Fri May 23 09:35:43 2008 +0100
+++ b/extras/mini-os/arch/ia64/minios-ia64.lds Fri May 23 09:35:57 2008 +0100
@@ -54,18 +54,18 @@ SECTIONS
.ctors : {
__CTOR_LIST__ = .;
- LONG((__CTOR_END__ - __CTOR_LIST__) / 8 - 2)
+ QUAD((__CTOR_END__ - __CTOR_LIST__) / 8 - 2)
*(SORT_BY_NAME(.ctors))
SORT_BY_NAME(CONSTRUCTORS)
- LONG(0)
+ QUAD(0)
__CTOR_END__ = .;
}
.dtors : {
__DTOR_LIST__ = .;
- LONG((__DTOR_END__ - __DTOR_LIST__) / 8 - 2)
+ QUAD((__DTOR_END__ - __DTOR_LIST__) / 8 - 2)
*(SORT_BY_NAME(.dtors))
- LONG(0)
+ QUAD(0)
__DTOR_END__ = .;
}
diff -r f05795acfca9 -r fbf09143c2e5 extras/mini-os/arch/x86/minios-x86_64.lds
--- a/extras/mini-os/arch/x86/minios-x86_64.lds Fri May 23 09:35:43 2008 +0100
+++ b/extras/mini-os/arch/x86/minios-x86_64.lds Fri May 23 09:35:57 2008 +0100
@@ -30,18 +30,18 @@ SECTIONS
.ctors : {
__CTOR_LIST__ = .;
- LONG((__CTOR_END__ - __CTOR_LIST__) / 8 - 2)
+ QUAD((__CTOR_END__ - __CTOR_LIST__) / 8 - 2)
*(SORT_BY_NAME(.ctors))
SORT_BY_NAME(CONSTRUCTORS)
- LONG(0)
+ QUAD(0)
__CTOR_END__ = .;
}
.dtors : {
__DTOR_LIST__ = .;
- LONG((__DTOR_END__ - __DTOR_LIST__) / 8 - 2)
+ QUAD((__DTOR_END__ - __DTOR_LIST__) / 8 - 2)
*(SORT_BY_NAME(.dtors))
- LONG(0)
+ QUAD(0)
__DTOR_END__ = .;
}
_______________________________________________
Xen-changelog mailing list
Xen-changelog@xxxxxxxxxxxxxxxxxxx
http://lists.xensource.com/xen-changelog
|
<Prev in Thread] |
Current Thread |
[Next in Thread> |
- [Xen-changelog] [xen-unstable] stubdom: fix constructors/destructors in 64bit mode,
Xen patchbot-unstable <=
|
|
|
|
|