diff options
| author | John David Anglin <danglin@gcc.gnu.org> | 2024-07-19 10:10:17 -0400 |
|---|---|---|
| committer | John David Anglin <danglin@gcc.gnu.org> | 2024-07-19 10:10:17 -0400 |
| commit | 8cfa4ecff21adf226984f135aa576dd8063bbba3 (patch) | |
| tree | 1c624821f2207a588a7316ba6a4e297845a9e416 /malloc | |
| parent | 91eb62d63887a959e43aafb6fc022a87614dc7c9 (diff) | |
| download | glibc-8cfa4ecff21adf226984f135aa576dd8063bbba3.tar.xz glibc-8cfa4ecff21adf226984f135aa576dd8063bbba3.zip | |
Fix usage of _STACK_GROWS_DOWN and _STACK_GROWS_UP defines [BZ 31989]
Signed-off-by: John David Anglin <dave.anglin@bell.net>
Reviewed-By: Andreas K. Hüttel <dilfridge@gentoo.org>
Diffstat (limited to 'malloc')
| -rw-r--r-- | malloc/memusage.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/malloc/memusage.c b/malloc/memusage.c index e8ae80dc74..f80225b95a 100644 --- a/malloc/memusage.c +++ b/malloc/memusage.c @@ -172,7 +172,7 @@ update_data (struct header *result, size_t len, size_t old_len) start_sp = __thread_stack_pointer (); uintptr_t sp = __thread_stack_pointer (); -#ifdef _STACK_GROWS_UP +#if _STACK_GROWS_UP /* This can happen in threads where we didn't catch the thread's stack early enough. */ if (__glibc_unlikely (sp < start_sp)) |
