mirror of
https://sourceware.org/git/glibc.git
synced 2025-07-28 00:21:52 +03:00
Use mmap for allocation of buffers used for __abort_msg
This commit is contained in:
@ -223,16 +223,21 @@ extern int __qfcvt_r (long double __value, int __ndigit,
|
||||
# define __cxa_atexit(func, arg, d) INTUSE(__cxa_atexit) (func, arg, d)
|
||||
# endif
|
||||
|
||||
#endif
|
||||
|
||||
extern void *__default_morecore (ptrdiff_t) __THROW;
|
||||
libc_hidden_proto (__default_morecore)
|
||||
|
||||
extern char *__abort_msg;
|
||||
struct abort_msg_s
|
||||
{
|
||||
unsigned int size;
|
||||
char msg[0];
|
||||
};
|
||||
extern struct abort_msg_s *__abort_msg;
|
||||
libc_hidden_proto (__abort_msg)
|
||||
|
||||
__END_DECLS
|
||||
|
||||
#endif
|
||||
|
||||
#undef __Need_M_And_C
|
||||
|
||||
#endif /* include/stdlib.h */
|
||||
|
Reference in New Issue
Block a user