Initial commit

This commit is contained in:
bdbrd 2025-10-22 15:51:24 +02:00
commit cbc51f523e
125 changed files with 34817 additions and 0 deletions

9
src/include/lock.h Normal file
View file

@ -0,0 +1,9 @@
#include <stdatomic.h>
#ifndef SPINLOCK_H
#define SPINLOCK_H
void acquire_lock(atomic_flag *lock);
void free_lock(atomic_flag *lock);
#endif