* build fix for cygwin
[deliverable/binutils-gdb.git] / mmalloc / detach.c
CommitLineData
c906108c
SS
1/* Finish access to a mmap'd malloc managed region.
2 Copyright 1992 Free Software Foundation, Inc.
3
4 Contributed by Fred Fish at Cygnus Support. fnf@cygnus.com
5
6This file is part of the GNU C Library.
7
8The GNU C Library is free software; you can redistribute it and/or
9modify it under the terms of the GNU Library General Public License as
10published by the Free Software Foundation; either version 2 of the
11License, or (at your option) any later version.
12
13The GNU C Library is distributed in the hope that it will be useful,
14but WITHOUT ANY WARRANTY; without even the implied warranty of
15MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
16Library General Public License for more details.
17
18You should have received a copy of the GNU Library General Public
19License along with the GNU C Library; see the file COPYING.LIB. If
20not, write to the Free Software Foundation, Inc., 59 Temple Place - Suite 330,
21Boston, MA 02111-1307, USA. */
22
23#include <sys/types.h>
24#include "mmprivate.h"
25
26/* Terminate access to a mmalloc managed region by unmapping all memory pages
27 associated with the region, and closing the file descriptor if it is one
28 that we opened.
29
30 Returns NULL on success.
31
32 Returns the malloc descriptor on failure, which can subsequently be used
33 for further action, such as obtaining more information about the nature of
34 the failure by examining the preserved errno value.
35
36 Note that the malloc descriptor that we are using is currently located in
37 region we are about to unmap, so we first make a local copy of it on the
38 stack and use the copy. */
39
40PTR
41mmalloc_detach (md)
42 PTR md;
43{
44 struct mdesc mtemp;
45
46 if (md != NULL)
47 {
48
49 mtemp = *(struct mdesc *) md;
50
51 /* Now unmap all the pages associated with this region by asking for a
52 negative increment equal to the current size of the region. */
53
54 if ((mtemp.morecore (&mtemp, mtemp.base - mtemp.breakval)) == NULL)
55 {
56 /* Deallocating failed. Update the original malloc descriptor
57 with any changes */
58 *(struct mdesc *) md = mtemp;
59 }
60 else
61 {
62 if (mtemp.flags & MMALLOC_DEVZERO)
63 {
64 close (mtemp.fd);
65 }
66 md = NULL;
67 }
68 }
69
70 return (md);
71}
This page took 0.038358 seconds and 4 git commands to generate.