From f6b2a745a34b192d12107cc385fd3b4cde9bd16a Mon Sep 17 00:00:00 2001 From: Steven Dake Date: Tue, 31 Aug 2004 08:21:44 +0000 Subject: [PATCH] Added the EVS service and changed the library queue to 256 entries. (Logical change 1.62) git-svn-id: http://svn.fedorahosted.org/svn/corosync/trunk@220 fd59a12c-fef9-0310-b244-a6a79926bd2f --- exec/main.h | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/exec/main.h b/exec/main.h index 52f55fd2..8886c43c 100644 --- a/exec/main.h +++ b/exec/main.h @@ -37,6 +37,7 @@ #include #include "../include/ais_types.h" #include "poll.h" +#include "evs.h" #include "clm.h" #include "amf.h" #include "ckpt.h" @@ -48,10 +49,12 @@ /* * Size of the queue (entries) for I/O's to the API over socket IPC. */ -#define SIZEQUEUE 128 + +#define SIZEQUEUE 256 enum socket_service_type { SOCKET_SERVICE_INIT, + SOCKET_SERVICE_EVS, SOCKET_SERVICE_CLM, SOCKET_SERVICE_AMF, SOCKET_SERVICE_CKPT, @@ -75,6 +78,7 @@ struct ais_ci { struct sockaddr_un un_addr; /* address of AF_UNIX socket, MUST BE FIRST IN STRUCTURE */ union { struct aisexec_ci aisexec_ci; + struct libevs_ci libevs_ci; struct libclm_ci libclm_ci; struct libamf_ci libamf_ci; struct libckpt_ci libckpt_ci;