diff options
author | Warren Dukes <warren.dukes@gmail.com> | 2004-04-15 05:07:04 +0000 |
---|---|---|
committer | Warren Dukes <warren.dukes@gmail.com> | 2004-04-15 05:07:04 +0000 |
commit | 7f29bb1a8d2eb5edc4e3ea50223370dd4ba4a96c (patch) | |
tree | 8d7850f7f6d786d8f4e7dfab0e4695e3ffef2938 /src/decode.h | |
parent | df3af7d4f121be6264c0ce307f4a75e844d7282c (diff) | |
download | mpd-7f29bb1a8d2eb5edc4e3ea50223370dd4ba4a96c.tar.gz mpd-7f29bb1a8d2eb5edc4e3ea50223370dd4ba4a96c.tar.xz mpd-7f29bb1a8d2eb5edc4e3ea50223370dd4ba4a96c.zip |
log cycling and a few cleanups
git-svn-id: https://svn.musicpd.org/mpd/trunk@772 09075e82-0dd4-0310-85a5-a0d7c8717e4f
Diffstat (limited to 'src/decode.h')
-rw-r--r-- | src/decode.h | 13 |
1 files changed, 7 insertions, 6 deletions
diff --git a/src/decode.h b/src/decode.h index fc56ca5f0..8d4168a62 100644 --- a/src/decode.h +++ b/src/decode.h @@ -41,12 +41,13 @@ #define DECODE_ERROR_FILE 2 typedef struct _DecoderControl { - mpd_sint8 state; - mpd_sint8 stop; - mpd_sint8 start; - mpd_uint16 error; - mpd_sint8 seek; - mpd_sint8 seekError; + volatile mpd_sint8 state; + volatile mpd_sint8 stop; + volatile mpd_sint8 start; + volatile mpd_uint16 error; + volatile mpd_sint8 seek; + volatile mpd_sint8 seekError; + volatile mpd_sint8 cycleLogFiles; double seekWhere; char file[MAXPATHLEN+1]; } DecoderControl; |