e2c952c375
* BUG: UTF-8 characters are allowed in project data file names now. [INTEPRETER] * NEW: Allocation debugging messages can be redirected to a log file. [GB.DB.FORM] * BUG: DataBrowser FBrowser form does not incorrectly override Form.Panel anymore. [GB.GTK] * BUG: TabStrip.Font now behaves as expected. * BUG: GridView Row and Column properties can be set independently. * BUG: Fix the container arrangement and the ClientX / ClientY properties. [GB.FORM] * OPT: FileView redraws were delayed so that they are optimized. * BUG: Balloon tried to not take the focus. [GB.QT] * BUG: Fix the GridView last column stretching. [GB.QT4] * NEW: The AutoResize property of Button, ToolButton and ToggleButton controls were implemented. * BUG: Button, ToolButton and ToggleButton now behave correctly when their font change. * OPT: Arrangement was optimized. * BUG: TabStrip ClientX, ClientY, ClientWidth and ClientHeight properties now return accurate values. [GB.QT4.EXT] * BUG: Editor now draws non-highlighted lines correctly. git-svn-id: svn://localhost/gambas/trunk@1868 867c0c6c-44f3-4631-809d-bfa615b0a4ec
86 lines
3.1 KiB
C
86 lines
3.1 KiB
C
/***************************************************************************
|
|
|
|
alloc.h
|
|
|
|
Memory management routines
|
|
|
|
(c) 2000-2007 Benoit Minisini <gambas@users.sourceforge.net>
|
|
|
|
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 1, 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.
|
|
|
|
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., 675 Mass Ave, Cambridge, MA 02139, USA.
|
|
|
|
***************************************************************************/
|
|
|
|
#ifndef __GB_ALLOC_H
|
|
#define __GB_ALLOC_H
|
|
|
|
#define DEBUG_MEMORY 0
|
|
#define OPTIMIZE_MEMORY 1
|
|
//#define DO_NOT_PRINT_MEMORY
|
|
|
|
#ifndef __GB_ALLOC_C
|
|
EXTERN int MEMORY_count;
|
|
#endif
|
|
|
|
#if DEBUG_MEMORY
|
|
|
|
EXTERN int MEMORY_size;
|
|
EXTERN FILE *MEMORY_log;
|
|
|
|
#define ALLOC(_ptr, _size, _src) MEMORY_alloc((void *)_ptr, _size, _src)
|
|
#define ALLOC_ZERO(_ptr, _size, _src) MEMORY_alloc_zero((void *)_ptr, _size, _src)
|
|
#define REALLOC(_ptr, _size, _src) MEMORY_realloc((void *)_ptr, _size, _src)
|
|
#define FREE(_ptr, _src) MEMORY_free((void *)_ptr, _src)
|
|
#define IFREE(_ptr, _src) FREE(&(_ptr), _src)
|
|
|
|
PUBLIC void MEMORY_alloc(void *p_ptr, size_t size, const char *src);
|
|
PUBLIC void MEMORY_alloc_zero(void *p_ptr, size_t size, const char *src);
|
|
PUBLIC void MEMORY_realloc(void *p_ptr, size_t size, const char *src);
|
|
PUBLIC void MEMORY_free(void *p_ptr, const char *src);
|
|
PUBLIC void MEMORY_check(void);
|
|
|
|
PUBLIC void MEMORY_verify(void);
|
|
PUBLIC void MEMORY_check_ptr(void *ptr);
|
|
|
|
#elif OPTIMIZE_MEMORY
|
|
|
|
#define ALLOC(_ptr, _size, _src) ((*(_ptr) = malloc(_size)) ? MEMORY_count++ : THROW_MEMORY())
|
|
#define ALLOC_ZERO(_ptr, _size, _src) ((*(_ptr) = calloc(_size, 1)) ? MEMORY_count++ : THROW_MEMORY())
|
|
#define REALLOC(_ptr, _size, _src) ((*(_ptr) = realloc(*(_ptr), _size)) ? 0 : THROW_MEMORY())
|
|
#define FREE(_ptr, _src) (*(_ptr) ? free(*(_ptr)), *(_ptr) = NULL, MEMORY_count-- : 0)
|
|
#define IFREE(_ptr, _src) (_ptr ? free(_ptr), MEMORY_count-- : 0)
|
|
|
|
int THROW_MEMORY();
|
|
|
|
#else
|
|
|
|
#define ALLOC(_ptr, _size, _src) MEMORY_alloc((void *)_ptr, _size)
|
|
#define ALLOC_ZERO(_ptr, _size, _src) MEMORY_alloc_zero((void *)_ptr, _size)
|
|
#define REALLOC(_ptr, _size, _src) MEMORY_realloc((void *)_ptr, _size)
|
|
#define FREE(_ptr, _src) MEMORY_free((void *)_ptr)
|
|
#define IFREE(_ptr, _src) FREE(&(_ptr), _src)
|
|
|
|
PUBLIC void MEMORY_alloc(void *p_ptr, size_t size);
|
|
PUBLIC void MEMORY_alloc_zero(void *p_ptr, size_t size);
|
|
PUBLIC void MEMORY_realloc(void *p_ptr, size_t size);
|
|
PUBLIC void MEMORY_free(void *p_ptr);
|
|
PUBLIC void MEMORY_check(void);
|
|
|
|
#endif
|
|
|
|
PUBLIC void MEMORY_init(void);
|
|
PUBLIC void MEMORY_exit(void);
|
|
|
|
#endif
|
|
|