1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111
|
/* -*- Mode: C ; c-basic-offset: 2 -*- */
/*****************************************************************************
*
* Non-sleeping memory allocation
* This file is part of gmidimonitor
*
* Copyright (C) 2006,2007,2008,2011 Nedko Arnaudov <nedko@arnaudov.name>
*
* 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; version 2 of the License
*
* 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., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
*
*****************************************************************************/
#ifndef MEMORY_ATOMIC_H__7B572547_304D_4597_8808_990BE4476CC3__INCLUDED
#define MEMORY_ATOMIC_H__7B572547_304D_4597_8808_990BE4476CC3__INCLUDED
#ifdef __cplusplus
extern "C" {
#endif
#if 0
} /* Adjust editor indent */
#endif
typedef void * rtsafe_memory_pool_handle;
/* will sleep */
gboolean
rtsafe_memory_pool_create(
size_t data_size, /* chunk size */
size_t min_preallocated, /* min chunks preallocated */
size_t max_preallocated, /* max chunks preallocated */
rtsafe_memory_pool_handle * pool_ptr);
/* will sleep */
void
rtsafe_memory_pool_destroy(
rtsafe_memory_pool_handle pool);
/* may sleep */
void
rtsafe_memory_pool_sleepy(
rtsafe_memory_pool_handle pool);
/* will not sleep, returns NULL if no memory is available */
void *
rtsafe_memory_pool_allocate(
rtsafe_memory_pool_handle pool);
/* may sleep, returns NULL if no memory is available */
void *
rtsafe_memory_pool_allocate(
rtsafe_memory_pool_handle pool);
/* may sleep */
void *
rtsafe_memory_pool_allocate_sleepy(
rtsafe_memory_pool_handle pool);
/* will not sleep */
void
rtsafe_memory_pool_deallocate(
rtsafe_memory_pool_handle pool,
void * data);
typedef void * rtsafe_memory_handle;
/* will sleep */
gboolean
rtsafe_memory_init(
size_t max_size,
size_t prealloc_min,
size_t prealloc_max,
rtsafe_memory_handle * handle_ptr);
/* will not sleep */
void *
rtsafe_memory_allocate(
rtsafe_memory_handle handle_ptr,
size_t size);
void
rtsafe_memory_sleepy(
rtsafe_memory_handle handle_ptr);
/* will not sleep */
void
rtsafe_memory_deallocate(
void * data);
void
rtsafe_memory_uninit(
rtsafe_memory_handle handle_ptr);
#if 0
{ /* Adjust editor indent */
#endif
#ifdef __cplusplus
} /* extern "C" */
#endif
#endif /* #ifndef MEMORY_ATOMIC_H__7B572547_304D_4597_8808_990BE4476CC3__INCLUDED */
|