1
0
mirror of https://sourceware.org/git/glibc.git synced 2025-07-28 00:21:52 +03:00
2001-02-14  Wolfram Gloger  <wg@malloc.de>

	* malloc/malloc.c (new_heap): When allocating large chunk aligned
	to HEAP_MAX_SIZE, prefer one with lower address, to avoid `holes'
	between the heaps.
This commit is contained in:
Ulrich Drepper
2001-02-15 03:39:03 +00:00
parent cd53c157cf
commit 8a216c1bd8
3 changed files with 12 additions and 1 deletions

View File

@ -2857,6 +2857,7 @@ j0_test (void)
static void
j1_test (void)
{
FLOAT s, c;
errno = 0;
FUNC (sincos) (0, &s, &c);
if (errno == ENOSYS)
@ -2890,6 +2891,7 @@ j1_test (void)
static void
jn_test (void)
{
FLOAT s, c;
errno = 0;
FUNC (sincos) (0, &s, &c);
if (errno == ENOSYS)
@ -4014,6 +4016,7 @@ trunc_test (void)
static void
y0_test (void)
{
FLOAT s, c;
errno = 0;
FUNC (sincos) (0, &s, &c);
if (errno == ENOSYS)
@ -4047,6 +4050,7 @@ y0_test (void)
static void
y1_test (void)
{
FLOAT s, c;
errno = 0;
FUNC (sincos) (0, &s, &c);
if (errno == ENOSYS)
@ -4079,6 +4083,7 @@ y1_test (void)
static void
yn_test (void)
{
FLOAT s, c;
errno = 0;
FUNC (sincos) (0, &s, &c);
if (errno == ENOSYS)