diff options
author | Keith Packard <keithp@keithp.com> | 2009-04-14 21:22:31 -0700 |
---|---|---|
committer | Keith Packard <keithp@keithp.com> | 2009-04-14 21:22:31 -0700 |
commit | 902c342289c1d13a4d55b9224acb6d67578b7a60 (patch) | |
tree | 0230afaaf145697bb038d101e8bf56da7f1df5de /ao.h | |
parent | acc4fc635edb70ec1ba2dff9f7ac0c8542c72c47 (diff) |
Make mutex functions reentrant
Diffstat (limited to 'ao.h')
-rw-r--r-- | ao.h | 4 |
1 files changed, 2 insertions, 2 deletions
@@ -305,10 +305,10 @@ ao_dma_isr(void) interrupt 8; */ void -ao_mutex_get(__xdata uint8_t *ao_mutex); +ao_mutex_get(__xdata uint8_t *ao_mutex) __reentrant; void -ao_mutex_put(__xdata uint8_t *ao_mutex); +ao_mutex_put(__xdata uint8_t *ao_mutex) __reentrant; /* * ao_ee.c |