Logo AND Algorithmique Numérique Distribuée

Public GIT Repository
We don't intend to support pre-ansi platforms, so cleanup mmalloc code
[simgrid.git] / src / xbt / mmalloc / keys.c
1 /* Access for application keys in 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
6 This file is part of the GNU C Library.
7
8 The GNU C Library is free software; you can redistribute it and/or
9 modify it under the terms of the GNU Library General Public License as
10 published by the Free Software Foundation; either version 2 of the
11 License, or (at your option) any later version.
12
13 The GNU C Library is distributed in the hope that it will be useful,
14 but WITHOUT ANY WARRANTY; without even the implied warranty of
15 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
16 Library General Public License for more details.
17
18 You should have received a copy of the GNU Library General Public
19 License along with the GNU C Library; see the file COPYING.LIB.  If
20 not, write to the Free Software Foundation, Inc., 59 Temple Place - Suite 330,
21 Boston, MA 02111-1307, USA.  */
22
23 /* This module provides access to some keys that the application can use to
24    provide persistent access to locations in the mapped memory section.
25    The intent is that these keys are to be used sparingly as sort of
26    persistent global variables which the application can use to reinitialize
27    access to data in the mapped region.
28
29    For the moment, these keys are simply stored in the malloc descriptor
30    itself, in an array of fixed length.  This should be fixed so that there
31    can be an unlimited number of keys, possibly using a multilevel access
32    scheme of some sort. */
33
34 #include "mmprivate.h"
35
36 int
37 mmalloc_setkey (void *md, int keynum, void *key)
38 {
39   struct mdesc *mdp = (struct mdesc *) md;
40   int result = 0;
41
42   if ((mdp != NULL) && (keynum >= 0) && (keynum < MMALLOC_KEYS))
43     {
44       mdp -> keys [keynum] = key;
45       result++;
46     }
47   return (result);
48 }
49
50 void*
51 mmalloc_getkey (void *md, int keynum)
52 {
53   struct mdesc *mdp = (struct mdesc *) md;
54   void* keyval = NULL;
55
56   if ((mdp != NULL) && (keynum >= 0) && (keynum < MMALLOC_KEYS))
57     {
58       keyval = mdp -> keys [keynum];
59     }
60   return (keyval);
61 }