From 168e070965aa2d98326b297d10339c4ad131c560 Mon Sep 17 00:00:00 2001 From: nodist Date: Mon, 8 Jun 2026 17:52:05 -0400 Subject: add gc and shared as a qualifier type --- docs/application/gc.md | 12 ++++++++++++ 1 file changed, 12 insertions(+) create mode 100644 docs/application/gc.md (limited to 'docs/application/gc.md') diff --git a/docs/application/gc.md b/docs/application/gc.md new file mode 100644 index 0000000..7353db9 --- /dev/null +++ b/docs/application/gc.md @@ -0,0 +1,12 @@ +# Garbage Collection + +--- + +## Object Definition + +```c +typedef struct _kpl_gc_count { + _Atomic size_t ref_count; + kpl_any any; +} kpl_gc_count; +``` -- cgit v1.2.3