diff options
Diffstat (limited to 'src/rt/sync/spin_lock.h')
| -rw-r--r-- | src/rt/sync/spin_lock.h | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/src/rt/sync/spin_lock.h b/src/rt/sync/spin_lock.h index 3684c23a..f15416a2 100644 --- a/src/rt/sync/spin_lock.h +++ b/src/rt/sync/spin_lock.h @@ -1,5 +1,5 @@ -#ifndef UNFAIR_TICKET_LOCK_H -#define UNFAIR_TICKET_LOCK_H +#ifndef SPIN_LOCK_H +#define SPIN_LOCK_H class spin_lock { unsigned ticket; @@ -11,4 +11,4 @@ public: void unlock(); }; -#endif /* UNFAIR_TICKET_LOCK_H */ +#endif /* SPIN_LOCK_H */ |