summaryrefslogtreecommitdiff
path: root/infra/monitor/monitor_spinlock.h
blob: fb5acb208aedfcc6ff37ed15e217802e559703d7 (plain)
1
2
3
4
5
6
7
8
#pragma once

struct stm_spinlock;

struct stm_spinlock *stm_spinlock_new(void);
void stm_spinlock_lock(struct stm_spinlock *splock);
void stm_spinlock_unlock(struct stm_spinlock *splock);
void stm_spinlock_free(struct stm_spinlock *splock);