diff options
author | Warren Dukes <warren.dukes@gmail.com> | 2004-04-11 23:37:18 +0000 |
---|---|---|
committer | Warren Dukes <warren.dukes@gmail.com> | 2004-04-11 23:37:18 +0000 |
commit | 26f72edc468b235ee735821be54856ccfce87fbd (patch) | |
tree | 1650dac6e15e57a1040d5b32b9eae92352f9b641 /src/player.h | |
parent | ae33b348afa800447db9344cf6e5d082f1a1fcb3 (diff) | |
download | mpd-26f72edc468b235ee735821be54856ccfce87fbd.tar.gz mpd-26f72edc468b235ee735821be54856ccfce87fbd.tar.xz mpd-26f72edc468b235ee735821be54856ccfce87fbd.zip |
add volatile qualifiers to some shared mem buffer stuff, to enusre compiler
doesn't optimize out order sensitive stuff
git-svn-id: https://svn.musicpd.org/mpd/trunk@698 09075e82-0dd4-0310-85a5-a0d7c8717e4f
Diffstat (limited to '')
-rw-r--r-- | src/player.h | 22 |
1 files changed, 11 insertions, 11 deletions
diff --git a/src/player.h b/src/player.h index df256ea0b..65ea07595 100644 --- a/src/player.h +++ b/src/player.h @@ -52,11 +52,11 @@ typedef struct _PlayerControl { mpd_sint8 decodeType; - mpd_sint8 stop; - mpd_sint8 play; - mpd_sint8 pause; - mpd_sint8 state; - mpd_sint8 closeAudio; + mpd_sint8 volatile stop; + mpd_sint8 volatile play; + mpd_sint8 volatile pause; + mpd_sint8 volatile state; + mpd_sint8 volatile closeAudio; mpd_sint8 error; mpd_uint16 bitRate; mpd_sint8 bits; @@ -67,16 +67,16 @@ typedef struct _PlayerControl { float elapsedTime; char file[MAXPATHLEN+1]; char erroredFile[MAXPATHLEN+1]; - mpd_sint8 queueState; - mpd_sint8 queueLockState; - mpd_sint8 lockQueue; - mpd_sint8 unlockQueue; - mpd_sint8 seek; + mpd_sint8 volatile queueState; + mpd_sint8 volatile queueLockState; + mpd_sint8 volatile lockQueue; + mpd_sint8 volatile unlockQueue; + mpd_sint8 volatile seek; double seekWhere; float crossFade; mpd_uint16 softwareVolume; double totalPlayTime; - int decode_pid; + int volatile decode_pid; } PlayerControl; void player_sigChldHandler(int pid, int status); |