glib: Drop G_GNUC_MALLOC usage from various allocation functions
[glib.git] / glib / grcbox.h
blobc92791260a3d79ed8ee68b6bdff5217177af5af7
1 /* grcbox.h: Reference counted data
3 * Copyright 2018 Emmanuele Bassi
5 * This library is free software; you can redistribute it and/or
6 * modify it under the terms of the GNU Lesser General Public
7 * License as published by the Free Software Foundation; either
8 * version 2.1 of the License, or (at your option) any later version.
10 * This library is distributed in the hope that it will be useful,
11 * but WITHOUT ANY WARRANTY; without even the implied warranty of
12 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
13 * Lesser General Public License for more details.
15 * You should have received a copy of the GNU Lesser General Public
16 * License along with this library; if not, see <http://www.gnu.org/licenses/>.
19 #pragma once
21 #if !defined (__GLIB_H_INSIDE__) && !defined (GLIB_COMPILATION)
22 #error "Only <glib.h> can be included directly."
23 #endif
25 #include <glib/gmem.h>
27 G_BEGIN_DECLS
29 GLIB_AVAILABLE_IN_2_58
30 gpointer g_rc_box_alloc (gsize block_size) G_GNUC_MALLOC G_GNUC_ALLOC_SIZE(1);
31 GLIB_AVAILABLE_IN_2_58
32 gpointer g_rc_box_alloc0 (gsize block_size) G_GNUC_MALLOC G_GNUC_ALLOC_SIZE(1);
33 GLIB_AVAILABLE_IN_2_58
34 gpointer g_rc_box_dup (gsize block_size,
35 gconstpointer mem_block) G_GNUC_ALLOC_SIZE(1);
36 GLIB_AVAILABLE_IN_2_58
37 gpointer g_rc_box_acquire (gpointer mem_block);
38 GLIB_AVAILABLE_IN_2_58
39 void g_rc_box_release (gpointer mem_block);
40 GLIB_AVAILABLE_IN_2_58
41 void g_rc_box_release_full (gpointer mem_block,
42 GDestroyNotify clear_func);
44 GLIB_AVAILABLE_IN_2_58
45 gsize g_rc_box_get_size (gpointer mem_block);
47 GLIB_AVAILABLE_IN_2_58
48 gpointer g_atomic_rc_box_alloc (gsize block_size) G_GNUC_MALLOC G_GNUC_ALLOC_SIZE(1);
49 GLIB_AVAILABLE_IN_2_58
50 gpointer g_atomic_rc_box_alloc0 (gsize block_size) G_GNUC_MALLOC G_GNUC_ALLOC_SIZE(1);
51 GLIB_AVAILABLE_IN_2_58
52 gpointer g_atomic_rc_box_dup (gsize block_size,
53 gconstpointer mem_block) G_GNUC_ALLOC_SIZE(1);
54 GLIB_AVAILABLE_IN_2_58
55 gpointer g_atomic_rc_box_acquire (gpointer mem_block);
56 GLIB_AVAILABLE_IN_2_58
57 void g_atomic_rc_box_release (gpointer mem_block);
58 GLIB_AVAILABLE_IN_2_58
59 void g_atomic_rc_box_release_full (gpointer mem_block,
60 GDestroyNotify clear_func);
62 GLIB_AVAILABLE_IN_2_58
63 gsize g_atomic_rc_box_get_size (gpointer mem_block);
65 #define g_rc_box_new(type) \
66 ((type *) g_rc_box_alloc (sizeof (type)))
67 #define g_rc_box_new0(type) \
68 ((type *) g_rc_box_alloc0 (sizeof (type)))
69 #define g_atomic_rc_box_new(type) \
70 ((type *) g_atomic_rc_box_alloc (sizeof (type)))
71 #define g_atomic_rc_box_new0(type) \
72 ((type *) g_atomic_rc_box_alloc0 (sizeof (type)))
74 #ifdef g_has_typeof
75 /* Type check to avoid assigning references to different types */
76 # define g_rc_box_acquire(mem_block) \
77 ((__typeof__(mem_block)) (g_rc_box_acquire) (mem_block))
78 # define g_atomic_rc_box_acquire(mem_block) \
79 ((__typeof__(mem_block)) (g_atomic_rc_box_acquire) (mem_block))
81 /* Type check to avoid duplicating data to different types */
82 # define g_rc_box_dup(block_size,mem_block) \
83 ((__typeof__(mem_block)) (g_rc_box_dup) (block_size,mem_block))
84 # define g_atomic_rc_box_dup(block_size,mem_block) \
85 ((__typeof__(mem_block)) (g_atomic_rc_box_dup) (block_size,mem_block))
86 #endif
88 G_END_DECLS