summaryrefslogtreecommitdiffstats
path: root/libglusterfs
diff options
context:
space:
mode:
Diffstat (limited to 'libglusterfs')
-rw-r--r--libglusterfs/src/Makefile.am2
-rw-r--r--libglusterfs/src/event-epoll.c2
-rw-r--r--libglusterfs/src/event-poll.c2
-rw-r--r--libglusterfs/src/event.c2
-rw-r--r--libglusterfs/src/gf-event.h (renamed from libglusterfs/src/event.h)6
5 files changed, 7 insertions, 7 deletions
diff --git a/libglusterfs/src/Makefile.am b/libglusterfs/src/Makefile.am
index fc7cb8fd016..bfe0900e547 100644
--- a/libglusterfs/src/Makefile.am
+++ b/libglusterfs/src/Makefile.am
@@ -49,7 +49,7 @@ protocol-common.h: $(top_srcdir)/rpc/rpc-lib/src/protocol-common.h
libglusterfs_la_HEADERS = common-utils.h defaults.h default-args.h \
dict.h glusterfs.h hashfn.h timespec.h logging.h xlator.h \
stack.h timer.h list.h inode.h call-stub.h compat.h fd.h \
- revision.h compat-errno.h event.h mem-pool.h byte-order.h \
+ revision.h compat-errno.h gf-event.h mem-pool.h byte-order.h \
gf-dirent.h locking.h syscall.h iobuf.h globals.h statedump.h \
checksum.h daemon.h store.h rbthash.h iatt.h latency.h \
mem-types.h syncop.h cluster-syncop.h graph-utils.h trie.h \
diff --git a/libglusterfs/src/event-epoll.c b/libglusterfs/src/event-epoll.c
index c1474c8bc69..ed58899caa8 100644
--- a/libglusterfs/src/event-epoll.c
+++ b/libglusterfs/src/event-epoll.c
@@ -17,7 +17,7 @@
#include <string.h>
#include "logging.h"
-#include "event.h"
+#include "gf-event.h"
#include "mem-pool.h"
#include "common-utils.h"
#include "syscall.h"
diff --git a/libglusterfs/src/event-poll.c b/libglusterfs/src/event-poll.c
index da69866fbf7..797649f11b8 100644
--- a/libglusterfs/src/event-poll.c
+++ b/libglusterfs/src/event-poll.c
@@ -17,7 +17,7 @@
#include <string.h>
#include "logging.h"
-#include "event.h"
+#include "gf-event.h"
#include "mem-pool.h"
#include "common-utils.h"
#include "syscall.h"
diff --git a/libglusterfs/src/event.c b/libglusterfs/src/event.c
index 6562d86a991..61006c100fa 100644
--- a/libglusterfs/src/event.c
+++ b/libglusterfs/src/event.c
@@ -17,7 +17,7 @@
#include <string.h>
#include "logging.h"
-#include "event.h"
+#include "gf-event.h"
#include "mem-pool.h"
#include "common-utils.h"
#include "libglusterfs-messages.h"
diff --git a/libglusterfs/src/event.h b/libglusterfs/src/gf-event.h
index c60b14ad04b..55a74ed17c6 100644
--- a/libglusterfs/src/event.h
+++ b/libglusterfs/src/gf-event.h
@@ -8,8 +8,8 @@
cases as published by the Free Software Foundation.
*/
-#ifndef _EVENT_H_
-#define _EVENT_H_
+#ifndef _GF_EVENT_H_
+#define _GF_EVENT_H_
#include <pthread.h>
@@ -116,4 +116,4 @@ int event_pool_destroy (struct event_pool *event_pool);
int event_dispatch_destroy (struct event_pool *event_pool);
int event_handled (struct event_pool *event_pool, int fd, int idx, int gen);
-#endif /* _EVENT_H_ */
+#endif /* _GF_EVENT_H_ */