~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to plugin/innobase/include/ut0mem.h

  • Committer: Lee Bieber
  • Date: 2010-12-15 16:23:36 UTC
  • mfrom: (1995.1.2 build)
  • Revision ID: kalebral@gmail.com-20101215162336-juntyt4gw4vgohg4
Merge Andrew - fix bug 628912: Crash / segfault in drizzled::Item_func::arguments (this=0x35) at ./drizzled/function/func.h
Merge Andrew - 663919: next query after KILL QUERY will error

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
1
/*****************************************************************************
2
2
 
3
 
Copyright (C) 1994, 2009, Innobase Oy. All Rights Reserved.
 
3
Copyright (c) 1994, 2009, Innobase Oy. All Rights Reserved.
4
4
 
5
5
This program is free software; you can redistribute it and/or modify it under
6
6
the terms of the GNU General Public License as published by the Free Software
96
96
Allocates memory. Sets it also to zero if UNIV_SET_MEM_TO_ZERO is
97
97
defined.
98
98
@return own: allocated memory */
99
 
#ifdef __cplusplus
100
 
extern "C"
101
 
#endif
102
99
UNIV_INTERN
103
100
void*
104
101
ut_malloc(
119
116
/**********************************************************************//**
120
117
Frees a memory block allocated with ut_malloc. Freeing a NULL pointer is
121
118
a nop. */
122
 
#ifdef __cplusplus
123
 
extern "C"
124
 
#endif
125
119
UNIV_INTERN
126
120
void
127
121
ut_free(
153
147
       original  block  is  left  untouched  - it is not freed or
154
148
       moved.
155
149
@return own: pointer to new mem block or NULL */
156
 
#ifdef __cplusplus
157
 
extern "C"
158
 
#endif
159
150
UNIV_INTERN
160
151
void*
161
152
ut_realloc(