diff options
| author | Kimplul <kimi.h.kuparinen@gmail.com> | 2024-10-29 21:17:31 +0200 |
|---|---|---|
| committer | Kimplul <kimi.h.kuparinen@gmail.com> | 2024-10-29 21:17:31 +0200 |
| commit | 5976ad390a15726c3ddfacf8c8b282c8350f9554 (patch) | |
| tree | 24a55fcd7e6f28d048ac074da59f428b54a81cb0 /src/bkl.c | |
| parent | 314bca3dc19a864c76153bfcd5a58be8c40000f9 (diff) | |
| download | kmi-5976ad390a15726c3ddfacf8c8b282c8350f9554.tar.gz kmi-5976ad390a15726c3ddfacf8c8b282c8350f9554.zip | |
start moving towards threads always being in rpc
Diffstat (limited to 'src/bkl.c')
| -rw-r--r-- | src/bkl.c | 5 |
1 files changed, 5 insertions, 0 deletions
@@ -12,6 +12,11 @@ /** The Big Kernel Lock. */ static spinlock_t bkl = 0; +void bkl_init() +{ + bkl = 0; +} + void bkl_lock() { spin_lock(&bkl); |
