summaryrefslogtreecommitdiff
path: root/docs/application/gc.md
blob: 7353db99109e619f8298a5e72c01b4171ddc7b67 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
# Garbage Collection

---

## Object Definition

```c
typedef struct _kpl_gc_count {
    _Atomic size_t ref_count;
    kpl_any any;
} kpl_gc_count;
```