GCS  0.2.3
gcs_act.h
1 /*
2  * Copyright (C) 2008-2013 Codership Oy <info@codership.com>
3  *
4  * $Id: gcs_act.h 3190 2013-08-07 21:49:17Z alex $
5  */
6 
7 #ifndef _gcs_act_h_
8 #define _gcs_act_h_
9 
10 #include "gcs.h"
11 
12 struct gcs_act
13 {
14  const void* buf;
15  ssize_t buf_len;
16  gcs_act_type_t type;
17 };
18 
20 {
21  struct gcs_act act;
22  const struct gu_buf* local; // local buffer vector if any
23  gcs_seqno_t id; // global total order seqno
24  int sender_idx;
25 };
26 
27 #endif /* _gcs_act_h_ */
Definition: gcs_act.h:19
Definition: gcs_act.h:12