[c-host] LGMP: increase the timeouts

This commit is contained in:
Geoffrey McRae 2020-04-07 14:53:26 +10:00
parent 94a35a6558
commit cddeeff3fc
2 changed files with 3 additions and 3 deletions

View File

@ -1 +1 @@
B1-162-g3acfbdce02+1
B1-162-gb953b2b807+1

View File

@ -47,14 +47,14 @@ static const struct LGMPQueueConfig FRAME_QUEUE_CONFIG =
{
.queueID = LGMP_Q_FRAME,
.numMessages = LGMP_Q_FRAME_LEN,
.subTimeout = 1000
.subTimeout = 10000
};
static const struct LGMPQueueConfig POINTER_QUEUE_CONFIG =
{
.queueID = LGMP_Q_POINTER,
.numMessages = LGMP_Q_POINTER_LEN,
.subTimeout = 1000
.subTimeout = 10000
};
#define MAX_POINTER_SIZE (sizeof(KVMFRCursor) + (128 * 128 * 4))