diff options
author | Ulrich Drepper <drepper@gmail.com> | 2011-05-15 00:34:48 -0400 |
---|---|---|
committer | Ulrich Drepper <drepper@gmail.com> | 2011-05-15 00:34:48 -0400 |
commit | f8a3b5bf8fa1d0c43d2458e03cc109a04fdef194 (patch) | |
tree | c92e262e52b730a8bd4bc3505f46ded142b7cebd /stdlib | |
parent | fc317541ab359b33ed7bf402ead84ba6f112604c (diff) | |
download | glibc-f8a3b5bf8fa1d0c43d2458e03cc109a04fdef194.tar glibc-f8a3b5bf8fa1d0c43d2458e03cc109a04fdef194.tar.gz glibc-f8a3b5bf8fa1d0c43d2458e03cc109a04fdef194.tar.bz2 glibc-f8a3b5bf8fa1d0c43d2458e03cc109a04fdef194.zip |
Use mmap for allocation of buffers used for __abort_msg
Diffstat (limited to 'stdlib')
-rw-r--r-- | stdlib/abort.c | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/stdlib/abort.c b/stdlib/abort.c index 3c188c9516..e9d0ab18fd 100644 --- a/stdlib/abort.c +++ b/stdlib/abort.c @@ -1,4 +1,5 @@ -/* Copyright (C) 1991,93,1995-1998,2001,02,2009 Free Software Foundation, Inc. +/* Copyright (C) 1991,1993,1995-1998,2001,2002,2009,2011 + Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or @@ -37,7 +38,7 @@ #endif /* Exported variable to locate abort message in core files etc. */ -char *__abort_msg __attribute__ ((nocommon)); +struct abort_msg_s *__abort_msg __attribute__ ((nocommon)); libc_hidden_def (__abort_msg) /* We must avoid to run in circles. Therefore we remember how far we |