summaryrefslogtreecommitdiff
path: root/docs/application/shared.md
blob: 95616c97cf8c94858dc3e7e7017ae5974ca1e0d2 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
# Shared

---

## Object Definition

```c
typedef struct _kpl_shared {
    KPL_SLAB_HEADER(_kpl_shared);
    void *data;
    kpl_mutex mutex;
    bool mark;
} kpl_shared;
```

## Garbage Collection