diff options
author | Cyrille Bagard <nocbos@gmail.com> | 2025-03-28 04:45:19 (GMT) |
---|---|---|
committer | Cyrille Bagard <nocbos@gmail.com> | 2025-03-28 04:45:19 (GMT) |
commit | 41f0c0f9089ec941ceb70e2a6ad1b958483eb2ae (patch) | |
tree | a065a5e463e5ec4253568e5b36c891988362c7b3 /src/glibext/objhole.h | |
parent | ec6706fe5e9b71ece7f2a6770f57f6757c375b33 (diff) |
Add a locking feature to thick objects.
Diffstat (limited to 'src/glibext/objhole.h')
-rw-r--r-- | src/glibext/objhole.h | 16 |
1 files changed, 16 insertions, 0 deletions
diff --git a/src/glibext/objhole.h b/src/glibext/objhole.h index c1e8cf1..461c37a 100644 --- a/src/glibext/objhole.h +++ b/src/glibext/objhole.h @@ -25,6 +25,11 @@ #define _GLIBEXT_OBJHOLE_H +#ifndef NDEBUG +# include <stdbool.h> +#endif + + #include "../glibext/helpers.h" @@ -34,6 +39,17 @@ DECLARE_GTYPE(GThickObject, g_thick_object, G, THICK_OBJECT); +/* Pose un verrou à l'aide du bit dédié de GObject. */ +void g_thick_object_lock(GThickObject *); + +/* Retire un verrou via le bit dédié de GObject. */ +void g_thick_object_unlock(GThickObject *); + +/* Vérifie qu'un verrou est appliqué à l'aide du bit de GObject. */ +#ifndef NDEBUG +bool g_thick_object_check_lock(GThickObject *obj); +#endif + /* Fournit la valeur courante de la zone de stockage d'un objet. */ guint g_thick_object_get_extra(const GThickObject *); |