Browse Source

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

Steven Dake 21 years ago
parent
commit
f6b2a745a3
1 changed files with 5 additions and 1 deletions
  1. 5 1
      exec/main.h

+ 5 - 1
exec/main.h

@@ -37,6 +37,7 @@
 #include <sys/un.h>
 #include <sys/un.h>
 #include "../include/ais_types.h"
 #include "../include/ais_types.h"
 #include "poll.h"
 #include "poll.h"
+#include "evs.h"
 #include "clm.h"
 #include "clm.h"
 #include "amf.h"
 #include "amf.h"
 #include "ckpt.h"
 #include "ckpt.h"
@@ -48,10 +49,12 @@
 /*
 /*
  * Size of the queue (entries) for I/O's to the API over socket IPC.
  * 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 {
 enum socket_service_type {
 	SOCKET_SERVICE_INIT,
 	SOCKET_SERVICE_INIT,
+	SOCKET_SERVICE_EVS,
 	SOCKET_SERVICE_CLM,
 	SOCKET_SERVICE_CLM,
 	SOCKET_SERVICE_AMF,
 	SOCKET_SERVICE_AMF,
 	SOCKET_SERVICE_CKPT,
 	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 */
 	struct sockaddr_un un_addr;	/* address of AF_UNIX socket, MUST BE FIRST IN STRUCTURE */
 	union {
 	union {
 		struct aisexec_ci aisexec_ci;
 		struct aisexec_ci aisexec_ci;
+		struct libevs_ci libevs_ci;
 		struct libclm_ci libclm_ci;
 		struct libclm_ci libclm_ci;
 		struct libamf_ci libamf_ci;
 		struct libamf_ci libamf_ci;
 		struct libckpt_ci libckpt_ci;
 		struct libckpt_ci libckpt_ci;