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

---

## Object Definitions

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

## Garbage Collection