Commit 170f9e63 by Ulrich Weigand Committed by Ulrich Weigand

host-linux.c (TRY_EMPTY_VM_SPACE): Define for __s390__ and __s390x__ hosts.

	* config/host-linux.c (TRY_EMPTY_VM_SPACE): Define for __s390__
	and __s390x__ hosts.

From-SVN: r81124
parent b456ce42
2004-04-24 Ulrich Weigand <uweigand@de.ibm.com>
* config/host-linux.c (TRY_EMPTY_VM_SPACE): Define for __s390__
and __s390x__ hosts.
2004-03-23 Zdenek Dvorak <rakdver@atrey.karlin.mff.cuni.cz> 2004-03-23 Zdenek Dvorak <rakdver@atrey.karlin.mff.cuni.cz>
* Makefile.in (LIBGCOV): Add _gcov_fork, _gcov_execl, _gcov_execlp, * Makefile.in (LIBGCOV): Add _gcov_fork, _gcov_execl, _gcov_execlp,
......
...@@ -71,6 +71,10 @@ ...@@ -71,6 +71,10 @@
# define TRY_EMPTY_VM_SPACE 0x1000000000 # define TRY_EMPTY_VM_SPACE 0x1000000000
#elif defined(__i386) #elif defined(__i386)
# define TRY_EMPTY_VM_SPACE 0x60000000 # define TRY_EMPTY_VM_SPACE 0x60000000
#elif defined(__s390x__)
# define TRY_EMPTY_VM_SPACE 0x8000000000
#elif defined(__s390__)
# define TRY_EMPTY_VM_SPACE 0x60000000
#else #else
# define TRY_EMPTY_VM_SPACE 0 # define TRY_EMPTY_VM_SPACE 0
#endif #endif
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment