diff options
author | Keith Packard <keithp@keithp.com> | 2016-07-27 13:23:06 -0700 |
---|---|---|
committer | Keith Packard <keithp@keithp.com> | 2016-07-27 13:23:06 -0700 |
commit | 59874a062543c61d164089e8b31f55a9b860c0b1 (patch) | |
tree | 9c6e47c64bba647ce36d9544c4ffdfd430cc257f /src/kernel/ao.h | |
parent | 2507b9f29d25f77de249103805087a704069c625 (diff) |
fixup for interleave
Diffstat (limited to 'src/kernel/ao.h')
-rw-r--r-- | src/kernel/ao.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/kernel/ao.h b/src/kernel/ao.h index 56945bf5..50fd065f 100644 --- a/src/kernel/ao.h +++ b/src/kernel/ao.h @@ -667,7 +667,7 @@ extern __xdata union ao_monitor ao_monitor_ring[AO_MONITOR_RING]; #define ao_monitor_ring_next(n) (((n) + 1) & (AO_MONITOR_RING - 1)) #define ao_monitor_ring_prev(n) (((n) - 1) & (AO_MONITOR_RING - 1)) -extern __data uint8_t ao_monitoring_mutex; +extern __xdata uint8_t ao_monitoring_mutex; extern __data uint8_t ao_monitoring; extern __data uint8_t ao_monitor_head; |