all: rename the project to 'wepoll'

This commit is contained in:
Bert Belder 2017-09-28 00:12:20 +02:00
parent 84083dff6f
commit eb673e3fed
11 changed files with 9 additions and 9 deletions

View File

@ -1,5 +1,5 @@
cmake_minimum_required(VERSION 2.8.0)
project(epoll)
project(wepoll)
if(WIN32)
link_libraries(ws2_32)

View File

@ -2,12 +2,12 @@
#include <stdlib.h>
#include "api.h"
#include "epoll.h"
#include "error.h"
#include "init.h"
#include "port.h"
#include "reflock-tree.h"
#include "util.h"
#include "wepoll.h"
#include "win.h"
static reflock_tree_t _epoll_handle_tree;

View File

@ -2,7 +2,6 @@
#include <malloc.h>
#include <stdlib.h>
#include "epoll.h"
#include "error.h"
#include "poll-group.h"
#include "port.h"
@ -10,6 +9,7 @@
#include "sock.h"
#include "tree.h"
#include "util.h"
#include "wepoll.h"
#include "win.h"
#define _PORT_MAX_ON_STACK_COMPLETIONS 256

View File

@ -2,7 +2,6 @@
#define EPOLL_PORT_DATA_H_
#include "afd.h"
#include "epoll.h"
#include "internal.h"
#include "poll-group.h"
#include "queue.h"
@ -11,6 +10,7 @@
#include "sock.h"
#include "tree.h"
#include "util.h"
#include "wepoll.h"
#include "win.h"
typedef struct ep_port ep_port_t;

View File

@ -4,11 +4,11 @@
#include <stdint.h>
#include "afd.h"
#include "epoll.h"
#include "error.h"
#include "poll-group.h"
#include "port.h"
#include "sock.h"
#include "wepoll.h"
#define _EP_EVENT_MASK 0xffff

View File

@ -3,12 +3,12 @@
#include <stdint.h>
#include "epoll.h"
#include "internal.h"
#include "queue.h"
#include "rb.h"
#include "tree.h"
#include "util.h"
#include "wepoll.h"
#include "win.h"
typedef struct ep_port ep_port_t;

View File

@ -4,9 +4,9 @@
#include <stdio.h>
#include <stdlib.h>
#include "epoll.h"
#include "init.h"
#include "util.h"
#include "wepoll.h"
#include "win.h"
#include <WS2tcpip.h>

View File

@ -3,9 +3,9 @@
#include <stdint.h>
#include <stdio.h>
#include "epoll.h"
#include "init.h"
#include "util.h"
#include "wepoll.h"
#include "win.h"
#include <WS2tcpip.h>

View File

@ -2,8 +2,8 @@
#include <stdio.h>
#include <stdlib.h>
#include "epoll.h"
#include "error.h"
#include "wepoll.h"
#include "win.h"
#define LISTEN_PORT 12345