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
This commit is contained in:
Steven Dake 2004-08-31 08:21:44 +00:00
parent d5fa76ceb9
commit f6b2a745a3

View File

@ -37,6 +37,7 @@
#include <sys/un.h>
#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;