diff options
author | J. Alexander Treuman <jat@spatialrift.net> | 2007-06-04 23:14:38 +0000 |
---|---|---|
committer | J. Alexander Treuman <jat@spatialrift.net> | 2007-06-04 23:14:38 +0000 |
commit | 01faa6f4e30e2a75319ca2b402f19fca0a6ae9b6 (patch) | |
tree | 2574f0d79287585635a687a6c1f9fadd2de3f7bf /src/player.h | |
parent | 10860b33d47517411abf6766e13f39c2375b4b08 (diff) | |
download | mpd-01faa6f4e30e2a75319ca2b402f19fca0a6ae9b6.tar.gz mpd-01faa6f4e30e2a75319ca2b402f19fca0a6ae9b6.tar.xz mpd-01faa6f4e30e2a75319ca2b402f19fca0a6ae9b6.zip |
Set a flag if we've sent the player process SIGSTOP so that we know not to
wait for it to complete an action which it never will.
git-svn-id: https://svn.musicpd.org/mpd/trunk@6488 09075e82-0dd4-0310-85a5-a0d7c8717e4f
Diffstat (limited to '')
-rw-r--r-- | src/player.h | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/src/player.h b/src/player.h index de44f8e64..17dcf16e0 100644 --- a/src/player.h +++ b/src/player.h @@ -57,6 +57,7 @@ #define PLAYER_METADATA_STATE_WRITE 2 typedef struct _PlayerControl { + volatile mpd_sint8 wait; volatile mpd_sint8 stop; volatile mpd_sint8 play; volatile mpd_sint8 pause; |