]> rtime.felk.cvut.cz Git - l4.git/blob - kernel/fiasco/src/lib/amm/amm_free_entry.c
update
[l4.git] / kernel / fiasco / src / lib / amm / amm_free_entry.c
1 /*
2  * Copyright (c) 1996, 1998 University of Utah and the Flux Group.
3  * All rights reserved.
4  * 
5  * This file is part of the Flux OSKit.  The OSKit is free software, also known
6  * as "open source;" you can redistribute it and/or modify it under the terms
7  * of the GNU General Public License (GPL), version 2, as published by the Free
8  * Software Foundation (FSF).  To explore alternate licensing terms, contact
9  * the University of Utah at csl-dist@cs.utah.edu or +1-801-585-3271.
10  * 
11  * The OSKit is distributed in the hope that it will be useful, but WITHOUT ANY
12  * WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS
13  * FOR A PARTICULAR PURPOSE.  See the GPL for more details.  You should have
14  * received a copy of the GPL along with the OSKit; see the file COPYING.  If
15  * not, write to the FSF, 59 Temple Place #330, Boston, MA 02111-1307, USA.
16  */
17
18 /*
19  * Default deallocation routine for AMM
20  */
21 #include "amm.h"
22 #include <malloc.h>
23
24 void
25 amm_free_entry(struct amm *amm, struct amm_entry *entry)
26 {
27         if (*amm->hint == entry)
28                 amm->hint = &amm->nodes;
29
30         if (amm->free)
31                 (*amm->free)(amm, entry);
32         else
33                 sfree((void *)entry, sizeof *entry);
34 }