src: name header guard #defines consistently

This commit is contained in:
Bert Belder 2017-09-25 20:13:56 +02:00
parent b61fd61008
commit 562bf271df
6 changed files with 17 additions and 17 deletions

View File

@ -1,5 +1,5 @@
#ifndef ERROR_MAP_H_
#define ERROR_MAP_H_
#ifndef EPOLL_ERROR_MAP_H_
#define EPOLL_ERROR_MAP_H_
/* clang-format off */
@ -598,4 +598,4 @@
/* clang-format on */
#endif /* ERROR_MAP_H_ */
#endif /* EPOLL_ERROR_MAP_H_ */

View File

@ -1,5 +1,5 @@
#ifndef ERROR_H_
#define ERROR_H_
#ifndef EPOLL_ERROR_H_
#define EPOLL_ERROR_H_
#include <errno.h>
@ -21,4 +21,4 @@ EPOLL_INTERNAL void we_set_win_error(DWORD error);
#define return_error(value, ...) _return_error_helper(__VA_ARGS__ + 0, value)
#endif /* ERROR_H_ */
#endif /* EPOLL_ERROR_H_ */

View File

@ -1,5 +1,5 @@
#ifndef QUEUE_H_
#define QUEUE_H_
#ifndef EPOLL_QUEUE_H_
#define EPOLL_QUEUE_H_
#include <stdbool.h>
@ -31,4 +31,4 @@ EPOLL_INTERNAL void queue_remove(queue_node_t* node);
EPOLL_INTERNAL bool queue_empty(const queue_t* queue);
EPOLL_INTERNAL bool queue_enqueued(const queue_node_t* node);
#endif /* QUEUE_H_ */
#endif /* EPOLL_QUEUE_H_ */

View File

@ -1,5 +1,5 @@
#ifndef REFLOCK_TREE_H_
#define REFLOCK_TREE_H_
#ifndef EPOLL_REFLOCK_TREE_H_
#define EPOLL_REFLOCK_TREE_H_
#include <stdint.h>

View File

@ -1,5 +1,5 @@
#ifndef REFLOCK_H_
#define REFLOCK_H_
#ifndef EPOLL_REFLOCK_H_
#define EPOLL_REFLOCK_H_
/* The reflock is a special kind of lock that normally prevents a chunk of
* memory from being freed, but does allow the chunk of memory to eventually be
@ -34,4 +34,4 @@ EPOLL_INTERNAL void reflock_ref(reflock_t* reflock);
EPOLL_INTERNAL void reflock_unref(reflock_t* reflock);
EPOLL_INTERNAL void reflock_unref_and_destroy(reflock_t* reflock);
#endif /* REFLOCK_H_ */
#endif /* EPOLL_REFLOCK_H_ */

View File

@ -1,5 +1,5 @@
#ifndef EPOLL_HANDLE_TREE_H_
#define EPOLL_HANDLE_TREE_H_
#ifndef EPOLL_TREE_H_
#define EPOLL_TREE_H_
#include "internal.h"
#include "rb.h"
@ -20,4 +20,4 @@ EPOLL_INTERNAL int tree_del(tree_t* tree, tree_node_t* node);
EPOLL_INTERNAL tree_node_t* tree_find(tree_t* tree, uintptr_t key);
EPOLL_INTERNAL tree_node_t* tree_root(tree_t* tree);
#endif /* EPOLL_HANDLE_TREE_H_ */
#endif /* EPOLL_TREE_H_ */