summaryrefslogtreecommitdiff
path: root/docs/application/shared.md
blob: e68b590988756ea20504be92976ede66cce62e7b (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(struct _kpl_shared);
    kpl_class data;
    kpl_mutex mutex;
    bool mark;
} kpl_shared;
```

## Garbage Collection