--- embedaddon/mpd/src/msg.c 2012/02/21 23:32:47 1.1.1.1 +++ embedaddon/mpd/src/msg.c 2013/07/22 08:44:29 1.1.1.2 @@ -28,9 +28,6 @@ }; typedef struct mpmsg *Msg; - #define MSG_QUEUE_LEN 8192 - #define MSG_QUEUE_MASK 0x1FFF - struct mpmsg msgqueue[MSG_QUEUE_LEN]; int msgqueueh = 0; int msgqueuet = 0; @@ -40,6 +37,14 @@ int msgpipe[2]; int msgpipesent = 0; EventRef msgevent; + +/* + * GLOBAL VARIABLES + */ + + int gQThresMin = 64; + int gQThresMax = 256; + int gQThresDiff = 256 - 64; /* * INTERNAL FUNCTIONS