X-Git-Url: http://www.chiark.greenend.org.uk/ucgi/~mdw/git/disorder/blobdiff_plain/460b9539a7c15580e41a71bbc0f47ae776238915..7e9608832e6d7f5be6dc176295b3a4c0507444e6:/lib/mem.h diff --git a/lib/mem.h b/lib/mem.h index ab1529f..8a8f245 100644 --- a/lib/mem.h +++ b/lib/mem.h @@ -1,21 +1,22 @@ /* * This file is part of DisOrder. - * Copyright (C) 2004, 2005, 2006 Richard Kettlewell + * Copyright (C) 2004-2009 Richard Kettlewell * - * This program is free software; you can redistribute it and/or modify + * This program is free software: you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by - * the Free Software Foundation; either version 2 of the License, or + * the Free Software Foundation, either version 3 of the License, or * (at your option) any later version. - * - * This program is distributed in the hope that it will be useful, but - * WITHOUT ANY WARRANTY; without even the implied warranty of - * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU - * General Public License for more details. - * + * + * This program is distributed in the hope that it will be useful, + * but WITHOUT ANY WARRANTY; without even the implied warranty of + * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + * GNU General Public License for more details. + * * You should have received a copy of the GNU General Public License - * along with this program; if not, write to the Free Software - * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 - * USA + * along with this program. If not, see . + */ +/** @file lib/mem.h + * @brief Memory management */ #ifndef MEM_H @@ -27,25 +28,25 @@ #include -void mem_init(int gc); -/* initialize memory management. Set GC to 1 if garbage collection is - * desired. */ +void mem_init(void); +/* initialize memory management. */ void *xmalloc(size_t); void *xrealloc(void *, size_t); void *xcalloc(size_t count, size_t size); /* As malloc/realloc/calloc, but - * 1) succeed or call fatal + * 1) succeed or call disorder_fatal * 2) always clear (the unused part of) the new allocation * 3) are garbage-collected */ void *xmalloc_noptr(size_t); void *xrealloc_noptr(void *, size_t); +void *xcalloc_noptr(size_t count, size_t size); char *xstrdup(const char *); char *xstrndup(const char *, size_t); /* As malloc/realloc/strdup, but - * 1) succeed or call fatal + * 1) succeed or call disorder_fatal * 2) are garbage-collected * 3) allocated space must not contain any pointers * @@ -63,4 +64,3 @@ c-basic-offset:2 comment-column:40 End: */ -/* arch-tag:333db053cab9e5ef91a151040d3256fb */