diff options
author | Keith Packard <keithp@keithp.com> | 2009-10-16 12:56:45 +0900 |
---|---|---|
committer | Keith Packard <keithp@keithp.com> | 2009-10-16 12:56:45 +0900 |
commit | d709a0688eff84e25e24d755850ef045d6b0c3de (patch) | |
tree | e5aa394224f57a3c324a6360419b420421680003 /src/ao_log.c | |
parent | 69b6f6bb465163cf767bb68e0e4a716d8ad2b39c (diff) |
Save some DSEG space by marking cmd functions __reentrant
__reentrant causes the compiler to place args and locals on the stack
instead of in the data segment.
Signed-off-by: Keith Packard <keithp@keithp.com>
Diffstat (limited to 'src/ao_log.c')
-rw-r--r-- | src/ao_log.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/ao_log.c b/src/ao_log.c index 7945ace4..b2bfbd6f 100644 --- a/src/ao_log.c +++ b/src/ao_log.c @@ -192,7 +192,7 @@ ao_log_stop(void) } static void -dump_log(void) +dump_log(void) __reentrant { uint8_t more; |