summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorschmidt <douglascraigschmidt@users.noreply.github.com>2003-03-24 12:56:47 +0000
committerschmidt <douglascraigschmidt@users.noreply.github.com>2003-03-24 12:56:47 +0000
commitf5bbeced261c9141ff701e2e8fb85c2e40ad306c (patch)
tree5dd0f065f292dc37e0d1423b2061b403819bad2f
parent6b6e65f031ebc3ade30b1db0abb800ceac80755c (diff)
downloadATCD-f5bbeced261c9141ff701e2e8fb85c2e40ad306c.tar.gz
ChangeLogTag:Mon Mar 24 06:54:55 2003 Douglas C. Schmidt <schmidt@ace.cs.wustl.edu>
-rw-r--r--ChangeLog7
-rw-r--r--THANKS2
-rw-r--r--ace/config-linux-common.h4
3 files changed, 12 insertions, 1 deletions
diff --git a/ChangeLog b/ChangeLog
index eafc88683fe..68defcbd887 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,10 @@
+Mon Mar 24 06:54:55 2003 Douglas C. Schmidt <schmidt@ace.cs.wustl.edu>
+
+ * ace/config-linux-common.h: Change the ACE_DEFAULT_BASE_ADDR for
+ the IA-64 from 0x8 to 0x0 so the Linux kernel can choose the
+ right value. Thanks to Sergei Pimenov
+ <sergei.pimenov@intel.com> for reporting this.
+
Mon Mar 24 13:16:29 CET 2003 Oliver Kellogg <oliver.kellogg@sysde.eads.net>
* ace/Node.{h,cpp}:
diff --git a/THANKS b/THANKS
index 1415abf121b..b30743a73ec 100644
--- a/THANKS
+++ b/THANKS
@@ -1677,6 +1677,8 @@ Terry Mihm <terrym@firstlogic.com>
Jeff Gray <gray@cis.uab.edu>
Rob Eger <reger@txcorp.com>
Leonid Kvetnyi <leonidk@nice.com>
+Rudolf Weber <rfweber@tesionmail.de>
+Sergei Pimenov <sergei.pimenov@intel.com>
I would particularly like to thank Paul Stephenson, who worked with me
at Ericsson in the early 1990's. Paul devised the recursive Makefile
diff --git a/ace/config-linux-common.h b/ace/config-linux-common.h
index ec28daf2706..3af388cff0a 100644
--- a/ace/config-linux-common.h
+++ b/ace/config-linux-common.h
@@ -40,7 +40,9 @@
# endif /* ! ACE_DEFAULT_BASE_ADDR */
#elif defined (__ia64)
# if !defined (ACE_DEFAULT_BASE_ADDR)
-# define ACE_DEFAULT_BASE_ADDR ((char *) 0x8000000000000000)
+// Zero base address should work fine for Linux of IA-64: it just lets
+// the kernel to choose the right value.
+# define ACE_DEFAULT_BASE_ADDR ((char *) 0x0000000000000000)
# endif /* ! ACE_DEFAULT_BASE_ADDR */
#endif /* ! __alpha && ! __powerpc__ && ! __ia64 */