From 708cf9d1669961c9fd70082b9c60fe006e4281c5 Mon Sep 17 00:00:00 2001 From: Jakub Jermar Date: Thu, 9 Nov 2017 21:12:59 +0100 Subject: [PATCH] Bump IPC_MAX_ASYNC_CALLS Make it harder to hit the hard limit on the number of active async calls per phone. --- abi/include/abi/ipc/ipc.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/abi/include/abi/ipc/ipc.h b/abi/include/abi/ipc/ipc.h index 9fbc026e0..cf5b4571b 100644 --- a/abi/include/abi/ipc/ipc.h +++ b/abi/include/abi/ipc/ipc.h @@ -43,7 +43,7 @@ #define IPC_CALL_LEN 6 /** Maximum active async calls per phone */ -#define IPC_MAX_ASYNC_CALLS 4 +#define IPC_MAX_ASYNC_CALLS 64 /* Flags for calls */ -- 2.11.4.GIT