]> granicus.if.org Git - libevent/commitdiff
Use "_WIN32", not WIN32: it's standard and we don't need to fake it
authorNick Mathewson <nickm@torproject.org>
Wed, 25 May 2011 23:50:56 +0000 (19:50 -0400)
committerNick Mathewson <nickm@torproject.org>
Thu, 26 May 2011 00:03:15 +0000 (20:03 -0400)
This patch was automatically generated with perl.

Based on a patch by Peter Rosin.

66 files changed:
arc4random.c
buffer.c
bufferevent-internal.h
bufferevent.c
bufferevent_async.c
bufferevent_filter.c
bufferevent_openssl.c
bufferevent_pair.c
bufferevent_sock.c
compat/sys/queue.h
evbuffer-internal.h
evdns.c
event-internal.h
event.c
event.h
event_iocp.c
event_tagging.c
evmap.c
evrpc.c
evthread-internal.h
evthread_win32.c
evutil.c
http.c
include/event2/dns.h
include/event2/dns_compat.h
include/event2/rpc.h
include/event2/thread.h
include/event2/util.h
iocp-internal.h
listener.c
log.c
sample/dns-example.c
sample/event-test.c
sample/hello-world.c
sample/http-server.c
sample/le-proxy.c
sample/signal-test.c
sample/time-test.c
signal.c
test/bench.c
test/bench_cascade.c
test/bench_http.c
test/bench_httpclient.c
test/regress.c
test/regress_buffer.c
test/regress_bufferevent.c
test/regress_dns.c
test/regress_et.c
test/regress_http.c
test/regress_listener.c
test/regress_main.c
test/regress_rpc.c
test/regress_ssl.c
test/regress_testutils.c
test/regress_thread.c
test/regress_util.c
test/regress_zlib.c
test/test-changelist.c
test/test-eof.c
test/test-init.c
test/test-ratelim.c
test/test-time.c
test/test-weof.c
test/tinytest.c
test/tinytest_local.h
util-internal.h

index de93d6e4ff33054ff3caa19380fd77451ea35063..254c12b6cb0ae0cc3d53171bc521d7364518b093 100644 (file)
@@ -50,7 +50,7 @@
 
 #ifndef ARC4RANDOM_NO_INCLUDES
 #include "evconfig-private.h"
-#ifdef WIN32
+#ifdef _WIN32
 #include <wincrypt.h>
 #include <process.h>
 #else
@@ -79,7 +79,7 @@ struct arc4_stream {
        unsigned char s[256];
 };
 
-#ifdef WIN32
+#ifdef _WIN32
 #define getpid _getpid
 #define pid_t int
 #endif
@@ -120,7 +120,7 @@ arc4_addrandom(const unsigned char *dat, int datlen)
        rs.j = rs.i;
 }
 
-#ifndef WIN32
+#ifndef _WIN32
 static ssize_t
 read_all(int fd, unsigned char *buf, size_t count)
 {
@@ -140,7 +140,7 @@ read_all(int fd, unsigned char *buf, size_t count)
 }
 #endif
 
-#ifdef WIN32
+#ifdef _WIN32
 #define TRY_SEED_WIN32
 static int
 arc4_seed_win32(void)
@@ -290,7 +290,7 @@ arc4_seed_proc_sys_kernel_random_uuid(void)
 }
 #endif
 
-#ifndef WIN32
+#ifndef _WIN32
 #define TRY_SEED_URANDOM
 static int
 arc4_seed_urandom(void)
index 45138624f215ba2ed590d4c654b020c9e34bb510..9d6ffc102b032dfef8b331b1856696bc35a74ee5 100644 (file)
--- a/buffer.c
+++ b/buffer.c
@@ -28,7 +28,7 @@
 #include "event2/event-config.h"
 #include "evconfig-private.h"
 
-#ifdef WIN32
+#ifdef _WIN32
 #include <winsock2.h>
 #include <windows.h>
 #include <io.h>
@@ -194,7 +194,7 @@ evbuffer_chain_free(struct evbuffer_chain *chain)
                            struct evbuffer_chain_file_segment,
                            chain);
                if (info->segment) {
-#ifdef WIN32
+#ifdef _WIN32
                        if (info->segment->type == EVBUF_FS_MMAP)
                                UnmapViewOfFile(chain->buffer);
 #endif
@@ -1873,7 +1873,7 @@ evbuffer_expand(struct evbuffer *buf, size_t datlen)
  * Reads data from a file descriptor into a buffer.
  */
 
-#if defined(_EVENT_HAVE_SYS_UIO_H) || defined(WIN32)
+#if defined(_EVENT_HAVE_SYS_UIO_H) || defined(_WIN32)
 #define USE_IOVEC_IMPL
 #endif
 
@@ -1961,7 +1961,7 @@ _evbuffer_read_setup_vecs(struct evbuffer *buf, ev_ssize_t howmuch,
 static int
 get_n_bytes_readable_on_socket(evutil_socket_t fd)
 {
-#if defined(FIONREAD) && defined(WIN32)
+#if defined(FIONREAD) && defined(_WIN32)
        unsigned long lng = EVBUFFER_MAX_READ;
        if (ioctlsocket(fd, FIONREAD, &lng) < 0)
                return -1;
@@ -2027,7 +2027,7 @@ evbuffer_read(struct evbuffer *buf, evutil_socket_t fd, int howmuch)
                        WSABUF_FROM_EVBUFFER_IOV(&vecs[i], &ev_vecs[i]);
 #endif
 
-#ifdef WIN32
+#ifdef _WIN32
                {
                        DWORD bytesRead;
                        DWORD flags=0;
@@ -2058,7 +2058,7 @@ evbuffer_read(struct evbuffer *buf, evutil_socket_t fd, int howmuch)
        /* We can append new data at this point */
        p = chain->buffer + chain->misalign + chain->off;
 
-#ifndef WIN32
+#ifndef _WIN32
        n = read(fd, p, howmuch);
 #else
        n = recv(fd, p, howmuch, 0);
@@ -2137,7 +2137,7 @@ evbuffer_write_iovec(struct evbuffer *buffer, evutil_socket_t fd,
                }
                chain = chain->next;
        }
-#ifdef WIN32
+#ifdef _WIN32
        {
                DWORD bytesSent;
                if (WSASend(fd, iov, i, &bytesSent, 0, NULL, NULL))
@@ -2227,7 +2227,7 @@ evbuffer_write_atmost(struct evbuffer *buffer, evutil_socket_t fd,
 #endif
 #ifdef USE_IOVEC_IMPL
                n = evbuffer_write_iovec(buffer, fd, howmuch);
-#elif defined(WIN32)
+#elif defined(_WIN32)
                /* XXX(nickm) Don't disable this code until we know if
                 * the WSARecv code above works. */
                void *p = evbuffer_pullup(buffer, howmuch);
@@ -2600,7 +2600,7 @@ evbuffer_file_segment_new(
        seg->fd = fd;
        seg->flags = flags;
 
-#ifdef WIN32
+#ifdef _WIN32
 #define lseek _lseeki64
 #define fstat _fstat
 #define stat _stat
@@ -2661,7 +2661,7 @@ evbuffer_file_segment_new(
                }
        }
 #endif
-#ifdef WIN32
+#ifdef _WIN32
        if (!(flags & EVBUF_FS_DISABLE_MMAP)) {
                long h = (long)_get_osfhandle(fd);
                HANDLE m;
@@ -2742,7 +2742,7 @@ evbuffer_file_segment_free(struct evbuffer_file_segment *seg)
        if (seg->type == EVBUF_FS_SENDFILE) {
                ;
        } else if (seg->type == EVBUF_FS_MMAP) {
-#ifdef WIN32
+#ifdef _WIN32
                CloseHandle(seg->mapping_handle);
 #elif defined (_EVENT_HAVE_MMAP)
                if (munmap(seg->mapping, seg->length) == -1)
@@ -2799,7 +2799,7 @@ evbuffer_add_file_segment(struct evbuffer *buf,
                chain->off = length;
                chain->buffer_len = chain->misalign + length;
        } else if (seg->type == EVBUF_FS_MMAP) {
-#ifdef WIN32
+#ifdef _WIN32
                ev_uint64_t total_offset = seg->offset+offset;
                ev_uint64_t offset_rounded=0, offset_remaining=0;
                LPVOID data;
index 8d12a4e8dc8f3369b79ae7a1b4d03f2476479b7c..bbf17eba2dd47dcf327440ecdd75abe8a7762d79 100644 (file)
@@ -260,7 +260,7 @@ extern const struct bufferevent_ops bufferevent_ops_pair;
 #define BEV_IS_FILTER(bevp) ((bevp)->be_ops == &bufferevent_ops_filter)
 #define BEV_IS_PAIR(bevp) ((bevp)->be_ops == &bufferevent_ops_pair)
 
-#ifdef WIN32
+#ifdef _WIN32
 extern const struct bufferevent_ops bufferevent_ops_async;
 #define BEV_IS_ASYNC(bevp) ((bevp)->be_ops == &bufferevent_ops_async)
 #else
index e1e9e47deb1f691420274bbc91515bb62af2d0c1..1c064e5362923adca77f30cfe6b20f1de0bd8d15 100644 (file)
@@ -42,7 +42,7 @@
 #include <stdarg.h>
 #endif
 
-#ifdef WIN32
+#ifdef _WIN32
 #include <winsock2.h>
 #endif
 #include <errno.h>
index e4fde1f684d5baabdc5c5dc4e452e9bf40fd845d..81cc0b72a06f1cbd450b85ff3574212e2961226a 100644 (file)
@@ -44,7 +44,7 @@
 #include <unistd.h>
 #endif
 
-#ifdef WIN32
+#ifdef _WIN32
 #include <winsock2.h>
 #include <ws2tcpip.h>
 #endif
index 2da4586831383e8f270df2868023a6aabf33a804..eeb9a7d3b0cf549d01224434478c15e9c812fb29 100644 (file)
@@ -44,7 +44,7 @@
 #include <stdarg.h>
 #endif
 
-#ifdef WIN32
+#ifdef _WIN32
 #include <winsock2.h>
 #endif
 
index de6440e31130a2c8d49672c790a9324238809ffa..fcc733bf8a74162b376551a9625852d55c44c943 100644 (file)
@@ -44,7 +44,7 @@
 #include <unistd.h>
 #endif
 
-#ifdef WIN32
+#ifdef _WIN32
 #include <winsock2.h>
 #endif
 
index bc1039b93bbec605f6971217851ded8f80ebd93b..40fee940d59aa288d21899b0be4861377c329cce 100644 (file)
@@ -28,7 +28,7 @@
 
 #include <sys/types.h>
 
-#ifdef WIN32
+#ifdef _WIN32
 #include <winsock2.h>
 #endif
 
index 366f3896a10ef08146858a789d9e735b7d725ecb..53a1fc7025efe1b3b3049181ebfa7c76c8e3d315 100644 (file)
@@ -46,7 +46,7 @@
 #include <unistd.h>
 #endif
 
-#ifdef WIN32
+#ifdef _WIN32
 #include <winsock2.h>
 #include <ws2tcpip.h>
 #endif
@@ -71,7 +71,7 @@
 #include "mm-internal.h"
 #include "bufferevent-internal.h"
 #include "util-internal.h"
-#ifdef WIN32
+#ifdef _WIN32
 #include "iocp-internal.h"
 #endif
 
@@ -232,7 +232,7 @@ bufferevent_writecb(evutil_socket_t fd, short event, void *arg)
                        goto done;
                } else {
                        connected = 1;
-#ifdef WIN32
+#ifdef _WIN32
                        if (BEV_IS_ASYNC(bufev)) {
                                event_del(&bufev->ev_write);
                                bufferevent_async_set_connected(bufev);
@@ -314,7 +314,7 @@ bufferevent_socket_new(struct event_base *base, evutil_socket_t fd,
        struct bufferevent_private *bufev_p;
        struct bufferevent *bufev;
 
-#ifdef WIN32
+#ifdef _WIN32
        if (base && event_base_get_iocp(base))
                return bufferevent_async_new(base, fd, options);
 #endif
@@ -371,7 +371,7 @@ bufferevent_socket_connect(struct bufferevent *bev,
                ownfd = 1;
        }
        if (sa) {
-#ifdef WIN32
+#ifdef _WIN32
                if (bufferevent_async_can_connect(bev)) {
                        bufferevent_setfd(bev, fd);
                        r = bufferevent_async_connect(bev, fd, sa, socklen);
@@ -386,7 +386,7 @@ bufferevent_socket_connect(struct bufferevent *bev,
                if (r < 0)
                        goto freesock;
        }
-#ifdef WIN32
+#ifdef _WIN32
        /* ConnectEx() isn't always around, even when IOCP is enabled.
         * Here, we borrow the socket object's write handler to fall back
         * on a non-blocking connect() when ConnectEx() is unavailable. */
index 53dd10d96e3109634a3e7783b1b3c9190fd585a5..6a9c581b634361592cb8f7257724bc8b08a4dec7 100644 (file)
@@ -93,7 +93,7 @@ struct name {                                                         \
 #define        SLIST_HEAD_INITIALIZER(head)                                    \
        { NULL }
 
-#ifndef WIN32
+#ifndef _WIN32
 #define SLIST_ENTRY(type)                                              \
 struct {                                                               \
        struct type *sle_next;  /* next element */                      \
index 08b94b2fc814fece8ef2cf45ce70116259f0ef83..6bb3e2c164e5bd8f1cde4056fa39c2f728651fe0 100644 (file)
@@ -42,7 +42,7 @@ extern "C" {
  * arguments. */
 #define EVBUFFER_CB_NODEFER 2
 
-#ifdef WIN32
+#ifdef _WIN32
 #include <winsock2.h>
 #endif
 #include <sys/queue.h>
@@ -126,7 +126,7 @@ struct evbuffer {
         * overflows when we have mutually recursive callbacks, and for
         * serializing callbacks in a single thread. */
        unsigned deferred_cbs : 1;
-#ifdef WIN32
+#ifdef _WIN32
        /** True iff this buffer is set up for overlapped IO. */
        unsigned is_overlapped : 1;
 #endif
@@ -205,7 +205,7 @@ struct evbuffer_chain_reference {
  * evbuffer_chain with the EVBUFFER_FILESEGMENT flag set.  */
 struct evbuffer_chain_file_segment {
        struct evbuffer_file_segment *segment;
-#ifdef WIN32
+#ifdef _WIN32
        /** If we're using CreateFileMapping, this is the handle to the view. */
        HANDLE view_handle;
 #endif
@@ -224,7 +224,7 @@ struct evbuffer_file_segment {
        int fd;
        /** If we're using mmap, this is the raw mapped memory. */
        void *mapping;
-#ifdef WIN32
+#ifdef _WIN32
        /** If we're using CreateFileMapping, this is the mapping */
        HANDLE mapping_handle;
 #endif
diff --git a/evdns.c b/evdns.c
index a6bbcbe1ce5b954caba11591b51f4f4bb8d47b10..9beac911b2bb605473355cf6d7186e5dbde94c46 100644 (file)
--- a/evdns.c
+++ b/evdns.c
@@ -61,7 +61,7 @@
 #include <sys/stat.h>
 #include <stdio.h>
 #include <stdarg.h>
-#ifdef WIN32
+#ifdef _WIN32
 #include <winsock2.h>
 #include <ws2tcpip.h>
 #ifndef _WIN32_IE
@@ -89,7 +89,7 @@
 #include "ipv6-internal.h"
 #include "util-internal.h"
 #include "evthread-internal.h"
-#ifdef WIN32
+#ifdef _WIN32
 #include <ctype.h>
 #include <winsock2.h>
 #include <windows.h>
@@ -3437,7 +3437,7 @@ evdns_base_resolv_conf_parse(struct evdns_base *base, int flags, const char *con
 static char *
 evdns_get_default_hosts_filename(void)
 {
-#ifdef WIN32
+#ifdef _WIN32
        /* Windows is a little coy about where it puts its configuration
         * files.  Sure, they're _usually_ in C:\windows\system32, but
         * there's no reason in principle they couldn't be in
@@ -3519,7 +3519,7 @@ evdns_resolv_conf_parse(int flags, const char *const filename) {
 }
 
 
-#ifdef WIN32
+#ifdef _WIN32
 /* Add multiple nameservers from a space-or-comma-separated list. */
 static int
 evdns_nameserver_ip_add_line(struct evdns_base *base, const char *ips) {
@@ -3799,7 +3799,7 @@ evdns_base_new(struct event_base *event_base, int initialize_nameservers)
 
        if (initialize_nameservers) {
                int r;
-#ifdef WIN32
+#ifdef _WIN32
                r = evdns_base_config_windows_nameservers(base);
 #else
                r = evdns_base_resolv_conf_parse(base, DNS_OPTIONS_ALL, "/etc/resolv.conf");
index 5c6babcce98dc63d52b1bc2a19443f57c6f2d00c..386333dad98512eb9ac83ab529b94aca1bec2fc1 100644 (file)
@@ -101,7 +101,7 @@ struct eventop {
        size_t fdinfo_len;
 };
 
-#ifdef WIN32
+#ifdef _WIN32
 /* If we're on win32, then file descriptors are not nice low densely packed
    integers.  Instead, they are pointer-like windows handles, and we want to
    use a hashtable instead of an array to map fds to events.
@@ -265,7 +265,7 @@ struct event_base {
        int current_event_waiters;
 #endif
 
-#ifdef WIN32
+#ifdef _WIN32
        /** IOCP support structure, if IOCP is enabled. */
        struct event_iocp_port *iocp;
 #endif
diff --git a/event.c b/event.c
index 1496e2be658f9c966012c426139ed7fd095c5d4b..366d867deb6b0d130b56927599d6a7abed7dab69 100644 (file)
--- a/event.c
+++ b/event.c
 #include "event2/event-config.h"
 #include "evconfig-private.h"
 
-#ifdef WIN32
+#ifdef _WIN32
 #include <winsock2.h>
 #define WIN32_LEAN_AND_MEAN
 #include <windows.h>
 #undef WIN32_LEAN_AND_MEAN
 #endif
 #include <sys/types.h>
-#if !defined(WIN32) && defined(_EVENT_HAVE_SYS_TIME_H)
+#if !defined(_WIN32) && defined(_EVENT_HAVE_SYS_TIME_H)
 #include <sys/time.h>
 #endif
 #include <sys/queue.h>
@@ -88,7 +88,7 @@ extern const struct eventop kqops;
 #ifdef _EVENT_HAVE_DEVPOLL
 extern const struct eventop devpollops;
 #endif
-#ifdef WIN32
+#ifdef _WIN32
 extern const struct eventop win32ops;
 #endif
 
@@ -112,7 +112,7 @@ static const struct eventop *eventops[] = {
 #ifdef _EVENT_HAVE_SELECT
        &selectops,
 #endif
-#ifdef WIN32
+#ifdef _WIN32
        &win32ops,
 #endif
        NULL
@@ -634,7 +634,7 @@ event_base_new_with_config(const struct event_config *cfg)
        }
 #endif
 
-#ifdef WIN32
+#ifdef _WIN32
        if (cfg && (cfg->flags & EVENT_BASE_FLAG_STARTUP_IOCP))
                event_base_start_iocp(base, cfg->n_cpus_hint);
 #endif
@@ -645,7 +645,7 @@ event_base_new_with_config(const struct event_config *cfg)
 int
 event_base_start_iocp(struct event_base *base, int n_cpus)
 {
-#ifdef WIN32
+#ifdef _WIN32
        if (base->iocp)
                return 0;
        base->iocp = event_iocp_port_launch(n_cpus);
@@ -662,7 +662,7 @@ event_base_start_iocp(struct event_base *base, int n_cpus)
 void
 event_base_stop_iocp(struct event_base *base)
 {
-#ifdef WIN32
+#ifdef _WIN32
        int rv;
 
        if (!base->iocp)
@@ -689,7 +689,7 @@ event_base_free(struct event_base *base)
        /* XXX(niels) - check for internal events first */
        EVUTIL_ASSERT(base);
 
-#ifdef WIN32
+#ifdef _WIN32
        event_base_stop_iocp(base);
 #endif
 
@@ -1924,7 +1924,7 @@ evthread_notify_base_default(struct event_base *base)
        char buf[1];
        int r;
        buf[0] = (char) 0;
-#ifdef WIN32
+#ifdef _WIN32
        r = send(base->th_notify_fd[1], buf, 1, 0);
 #else
        r = write(base->th_notify_fd[1], buf, 1);
@@ -2614,7 +2614,7 @@ event_mm_strdup_(const char *str)
                        memcpy(p, str, ln+1);
                return p;
        } else
-#ifdef WIN32
+#ifdef _WIN32
                return _strdup(str);
 #else
                return strdup(str);
@@ -2673,7 +2673,7 @@ evthread_notify_drain_default(evutil_socket_t fd, short what, void *arg)
 {
        unsigned char buf[1024];
        struct event_base *base = arg;
-#ifdef WIN32
+#ifdef _WIN32
        while (recv(fd, (char*)buf, sizeof(buf), 0) > 0)
                ;
 #else
@@ -2723,7 +2723,7 @@ evthread_make_base_notifiable(struct event_base *base)
        }
 #endif
 
-#ifdef WIN32
+#ifdef _WIN32
 #define LOCAL_SOCKETPAIR_AF AF_INET
 #else
 #define LOCAL_SOCKETPAIR_AF AF_UNIX
diff --git a/event.h b/event.h
index e75e075628a851860967da42d085691b9d6db86e..fda6b391b2fdd13314b061004054e2499a4a38c4 100644 (file)
--- a/event.h
+++ b/event.h
@@ -177,7 +177,7 @@ extern "C" {
 /* For int types. */
 #include <evutil.h>
 
-#ifdef WIN32
+#ifdef _WIN32
 #ifndef WIN32_LEAN_AND_MEAN
 #define WIN32_LEAN_AND_MEAN
 #endif
index 7fa39506118836ee9c6b7cf831d9e6714b6aae8e..fbeda703acac46042a22cede8bf95e8e1542f3f0 100644 (file)
@@ -279,7 +279,7 @@ event_iocp_activate_overlapped(
 struct event_iocp_port *
 event_base_get_iocp(struct event_base *base)
 {
-#ifdef WIN32
+#ifdef _WIN32
        return base->iocp;
 #else
        return NULL;
index f3ba1d2eac3209d53ef8d795af55a8c6ff1f938c..79ca3c9809770a8f9421109fdf4bd34c8c53c2a1 100644 (file)
@@ -35,7 +35,7 @@
 #include <sys/param.h>
 #endif
 
-#ifdef WIN32
+#ifdef _WIN32
 #define WIN32_LEAN_AND_MEAN
 #include <winsock2.h>
 #include <windows.h>
@@ -53,7 +53,7 @@
 #include <stdio.h>
 #include <stdlib.h>
 #include <string.h>
-#ifndef WIN32
+#ifndef _WIN32
 #include <syslog.h>
 #endif
 #ifdef _EVENT_HAVE_UNISTD_H
diff --git a/evmap.c b/evmap.c
index 3b7bc1c52ef58462277833ea4241050317675e19..8af448ea834782d2e053aeeeaa90c558000f5e02 100644 (file)
--- a/evmap.c
+++ b/evmap.c
 #include "event2/event-config.h"
 #include "evconfig-private.h"
 
-#ifdef WIN32
+#ifdef _WIN32
 #include <winsock2.h>
 #define WIN32_LEAN_AND_MEAN
 #include <windows.h>
 #undef WIN32_LEAN_AND_MEAN
 #endif
 #include <sys/types.h>
-#if !defined(WIN32) && defined(_EVENT_HAVE_SYS_TIME_H)
+#if !defined(_WIN32) && defined(_EVENT_HAVE_SYS_TIME_H)
 #include <sys/time.h>
 #endif
 #include <sys/queue.h>
 #include <stdio.h>
 #include <stdlib.h>
-#ifndef WIN32
+#ifndef _WIN32
 #include <unistd.h>
 #endif
 #include <errno.h>
diff --git a/evrpc.c b/evrpc.c
index b1f6cebacad24efc91644d1d580745f117eaa82e..4ad1be0a4101cc482361439a178e9b9ca6c66b38 100644 (file)
--- a/evrpc.c
+++ b/evrpc.c
@@ -27,7 +27,7 @@
 #include "event2/event-config.h"
 #include "evconfig-private.h"
 
-#ifdef WIN32
+#ifdef _WIN32
 #define WIN32_LEAN_AND_MEAN
 #include <winsock2.h>
 #include <windows.h>
@@ -35,7 +35,7 @@
 #endif
 
 #include <sys/types.h>
-#ifndef WIN32
+#ifndef _WIN32
 #include <sys/socket.h>
 #endif
 #ifdef _EVENT_HAVE_SYS_TIME_H
@@ -44,7 +44,7 @@
 #include <sys/queue.h>
 #include <stdio.h>
 #include <stdlib.h>
-#ifndef WIN32
+#ifndef _WIN32
 #include <unistd.h>
 #endif
 #include <errno.h>
index 847006ed1c7bba7dcf80a6171fb91e8a8e8f240d..da6184c4845954b52e22dd69947900cf2c0d749e 100644 (file)
@@ -38,7 +38,7 @@ extern "C" {
 
 struct event_base;
 
-#ifndef WIN32
+#ifndef _WIN32
 /* On Windows, the way we currently make DLLs, it's not allowed for us to
  * have shared global structures.  Thus, we only do the direct-call-to-function
  * code path if we know that the local shared library system supports it.
index 73e545bfa07bc8aba78d74f06a3f136b2604d479..7bb97bf96bffc7cacb6b28d31d2b4efa8467ec25 100644 (file)
@@ -26,7 +26,7 @@
 #include "event2/event-config.h"
 #include "evconfig-private.h"
 
-#ifdef WIN32
+#ifdef _WIN32
 #include <winsock2.h>
 #define WIN32_LEAN_AND_MEAN
 #include <windows.h>
index 05b5d294192ae78aa5100b915ab0fd82b70ed5fe..605bfa4bcd6fb500550eed963bfd9b810d59a301 100644 (file)
--- a/evutil.c
+++ b/evutil.c
@@ -27,7 +27,7 @@
 #include "event2/event-config.h"
 #include "evconfig-private.h"
 
-#ifdef WIN32
+#ifdef _WIN32
 #include <winsock2.h>
 #include <ws2tcpip.h>
 #define WIN32_LEAN_AND_MEAN
@@ -78,7 +78,7 @@
 #include "strlcpy-internal.h"
 #include "ipv6-internal.h"
 
-#ifdef WIN32
+#ifdef _WIN32
 #define open _open
 #define read _read
 #define close _close
@@ -130,7 +130,7 @@ evutil_read_file(const char *filename, char **content_out, size_t *len_out,
                return -2;
        }
        read_so_far = 0;
-#ifdef WIN32
+#ifdef _WIN32
 #define N_TO_READ(x) ((x) > INT_MAX) ? INT_MAX : ((int)(x))
 #else
 #define N_TO_READ(x) (x)
@@ -156,7 +156,7 @@ evutil_read_file(const char *filename, char **content_out, size_t *len_out,
 int
 evutil_socketpair(int family, int type, int protocol, evutil_socket_t fd[2])
 {
-#ifndef WIN32
+#ifndef _WIN32
        return socketpair(family, type, protocol, fd);
 #else
        return evutil_ersatz_socketpair(family, type, protocol, fd);
@@ -174,7 +174,7 @@ evutil_ersatz_socketpair(int family, int type, int protocol,
         * for now, and really, when localhost is down sometimes, we
         * have other problems too.
         */
-#ifdef WIN32
+#ifdef _WIN32
 #define ERR(e) WSA##e
 #else
 #define ERR(e) e
@@ -268,7 +268,7 @@ evutil_ersatz_socketpair(int family, int type, int protocol,
 int
 evutil_make_socket_nonblocking(evutil_socket_t fd)
 {
-#ifdef WIN32
+#ifdef _WIN32
        {
                u_long nonblocking = 1;
                if (ioctlsocket(fd, FIONBIO, &nonblocking) == SOCKET_ERROR) {
@@ -295,7 +295,7 @@ evutil_make_socket_nonblocking(evutil_socket_t fd)
 int
 evutil_make_listen_socket_reuseable(evutil_socket_t sock)
 {
-#ifndef WIN32
+#ifndef _WIN32
        int one = 1;
        /* REUSEADDR on Unix means, "don't hang on to this address after the
         * listener is closed."  On Windows, though, it means "don't keep other
@@ -310,7 +310,7 @@ evutil_make_listen_socket_reuseable(evutil_socket_t sock)
 int
 evutil_make_socket_closeonexec(evutil_socket_t fd)
 {
-#if !defined(WIN32) && defined(_EVENT_HAVE_SETFD)
+#if !defined(_WIN32) && defined(_EVENT_HAVE_SETFD)
        int flags;
        if ((flags = fcntl(fd, F_GETFD, NULL)) < 0) {
                event_warn("fcntl(%d, F_GETFD)", fd);
@@ -327,7 +327,7 @@ evutil_make_socket_closeonexec(evutil_socket_t fd)
 int
 evutil_closesocket(evutil_socket_t sock)
 {
-#ifndef WIN32
+#ifndef _WIN32
        return close(sock);
 #else
        return closesocket(sock);
@@ -341,7 +341,7 @@ evutil_strtoll(const char *s, char **endptr, int base)
        return (ev_int64_t)strtoll(s, endptr, base);
 #elif _EVENT_SIZEOF_LONG == 8
        return (ev_int64_t)strtol(s, endptr, base);
-#elif defined(WIN32) && defined(_MSC_VER) && _MSC_VER < 1300
+#elif defined(_WIN32) && defined(_MSC_VER) && _MSC_VER < 1300
        /* XXXX on old versions of MS APIs, we only support base
         * 10. */
        ev_int64_t r;
@@ -357,7 +357,7 @@ evutil_strtoll(const char *s, char **endptr, int base)
        if (endptr)
                *endptr = (char*) s;
        return r;
-#elif defined(WIN32)
+#elif defined(_WIN32)
        return (ev_int64_t) _strtoi64(s, endptr, base);
 #elif defined(_EVENT_SIZEOF_LONG_LONG) && _EVENT_SIZEOF_LONG_LONG == 8
        long long r;
@@ -434,7 +434,7 @@ evutil_gettimeofday(struct timeval *tv, struct timezone *tz)
 }
 #endif
 
-#ifdef WIN32
+#ifdef _WIN32
 int
 evutil_socket_geterror(evutil_socket_t sock)
 {
@@ -714,7 +714,7 @@ evutil_parse_servname(const char *servname, const char *protocol,
        int n = parse_numeric_servname(servname);
        if (n>=0)
                return n;
-#if defined(_EVENT_HAVE_GETSERVBYNAME) || defined(WIN32)
+#if defined(_EVENT_HAVE_GETSERVBYNAME) || defined(_WIN32)
        if (!(hints->ai_flags & EVUTIL_AI_NUMERICSERV)) {
                struct servent *ent = getservbyname(servname, protocol);
                if (ent) {
@@ -1214,7 +1214,7 @@ evutil_getaddrinfo(const char *nodename, const char *servname,
         *   ever resolving even a literal IPv6 address when
         *   ai_addrtype is PF_UNSPEC.
         */
-#ifdef WIN32
+#ifdef _WIN32
        {
                int tmp_port;
                err = evutil_getaddrinfo_common(nodename,servname,&hints,
@@ -1311,7 +1311,7 @@ evutil_getaddrinfo(const char *nodename, const char *servname,
                /* fall back to gethostbyname. */
                /* XXXX This needs a lock everywhere but Windows. */
                ent = gethostbyname(nodename);
-#ifdef WIN32
+#ifdef _WIN32
                err = WSAGetLastError();
 #else
                err = h_errno;
@@ -1447,7 +1447,7 @@ evutil_gai_strerror(int err)
        case EVUTIL_EAI_SYSTEM:
                return "system error";
        default:
-#if defined(USE_NATIVE_GETADDRINFO) && defined(WIN32)
+#if defined(USE_NATIVE_GETADDRINFO) && defined(_WIN32)
                return gai_strerrorA(err);
 #elif defined(USE_NATIVE_GETADDRINFO)
                return gai_strerror(err);
@@ -1457,7 +1457,7 @@ evutil_gai_strerror(int err)
        }
 }
 
-#ifdef WIN32
+#ifdef _WIN32
 #define E(code, s) { code, (s " [" #code " ]") }
 static struct { int code; const char *msg; } windows_socket_errors[] = {
   E(WSAEINTR, "Interrupted function call"),
@@ -2091,7 +2091,7 @@ evutil_getenv(const char *varname)
 long
 _evutil_weakrand(void)
 {
-#ifdef WIN32
+#ifdef _WIN32
        return rand();
 #else
        return random();
@@ -2150,7 +2150,7 @@ evutil_hex_char_to_int(char c)
        return -1;
 }
 
-#ifdef WIN32
+#ifdef _WIN32
 HANDLE
 evutil_load_windows_system_library(const TCHAR *library_name)
 {
diff --git a/http.c b/http.c
index fed40c39d680d8c19bca50bd5779fb37dceabd19..ac92898014714c34e0aa6e0fc6bb2ef4afd8b7bd 100644 (file)
--- a/http.c
+++ b/http.c
@@ -42,7 +42,7 @@
 #include <sys/ioccom.h>
 #endif
 
-#ifndef WIN32
+#ifndef _WIN32
 #include <sys/resource.h>
 #include <sys/socket.h>
 #include <sys/stat.h>
@@ -64,7 +64,7 @@
 #include <netdb.h>
 #endif
 
-#ifdef WIN32
+#ifdef _WIN32
 #include <winsock2.h>
 #endif
 
@@ -72,7 +72,7 @@
 #include <stdio.h>
 #include <stdlib.h>
 #include <string.h>
-#ifndef WIN32
+#ifndef _WIN32
 #include <syslog.h>
 #endif
 #include <signal.h>
@@ -497,12 +497,12 @@ evhttp_maybe_add_date_header(struct evkeyvalq *headers)
 {
        if (evhttp_find_header(headers, "Date") == NULL) {
                char date[50];
-#ifndef WIN32
+#ifndef _WIN32
                struct tm cur;
 #endif
                struct tm *cur_p;
                time_t t = time(NULL);
-#ifdef WIN32
+#ifdef _WIN32
                cur_p = gmtime(&t);
 #else
                gmtime_r(&t, &cur);
@@ -1360,7 +1360,7 @@ evhttp_connection_cb(struct bufferevent *bufev, short what, void *arg)
                 * when connecting to a local address.  the cleanup is going
                 * to reschedule this function call.
                 */
-#ifndef WIN32
+#ifndef _WIN32
                if (errno == ECONNREFUSED)
                        goto cleanup;
 #endif
index 3bb6f9eb4e55ed521272ebde9cb2f540a62f80ad..fea00e40836d346b325bf07a902b5b8a06e1cfc2 100644 (file)
@@ -446,7 +446,7 @@ int evdns_base_load_hosts(struct evdns_base *base, const char *hosts_fname);
   @return 0 if successful, or -1 if an error occurred
   @see evdns_resolv_conf_parse()
  */
-#ifdef WIN32
+#ifdef _WIN32
 int evdns_base_config_windows_nameservers(struct evdns_base *);
 #define EVDNS_BASE_CONFIG_WINDOWS_NAMESERVERS_IMPLEMENTED
 #endif
index 89b06fe6aaf68248c1e821192883ea78915992c3..1a63fb6f4d0d3e51de817da12a16ee8554d5e1b2 100644 (file)
@@ -323,7 +323,7 @@ void evdns_search_ndots_set(const int ndots);
 */
 struct evdns_server_port *evdns_add_server_port(evutil_socket_t socket, int flags, evdns_request_callback_fn_type callback, void *user_data);
 
-#ifdef WIN32
+#ifdef _WIN32
 int evdns_config_windows_nameservers(void);
 #define EVDNS_CONFIG_WINDOWS_NAMESERVERS_IMPLEMENTED
 #endif
index 66a2612e6391aa0591b5c5f82ed146d8d7d38de9..2fee4c2d1e4ea9bf2c59836be13665274dae25c6 100644 (file)
@@ -454,7 +454,7 @@ enum EVRPC_HOOK_TYPE {
        EVRPC_OUTPUT            /**< apply the function to an output hook */
 };
 
-#ifndef WIN32
+#ifndef _WIN32
 /** Deprecated alias for EVRPC_INPUT.  Not available on windows, where it
  * conflicts with platform headers. */
 #define INPUT EVRPC_INPUT
index f51bf3ef1021d5560891b28c92ab5d0456b0a601..f5b4fe3bd0e9cddc3b06f3d1f716eb88ae0c3f92 100644 (file)
@@ -183,7 +183,7 @@ int evthread_set_condition_callbacks(
 void evthread_set_id_callback(
     unsigned long (*id_fn)(void));
 
-#if defined(WIN32) && !defined(_EVENT_DISABLE_THREAD_SUPPORT)
+#if defined(_WIN32) && !defined(_EVENT_DISABLE_THREAD_SUPPORT)
 /** Sets up Libevent for use with Windows builtin locking and thread ID
        functions.  Unavailable if Libevent is not built for Windows.
 
index cada314ac6ada2b6ce41e4f306c0030add224c14..687c92d97249e0bd28dd588ccb17b1650d2dce16 100644 (file)
@@ -63,7 +63,7 @@ extern "C" {
 #include <netdb.h>
 #endif
 
-#ifdef WIN32
+#ifdef _WIN32
 #include <winsock2.h>
 #else
 #include <sys/socket.h>
@@ -86,7 +86,7 @@ extern "C" {
 #ifdef _EVENT_HAVE_UINT64_T
 #define ev_uint64_t uint64_t
 #define ev_int64_t int64_t
-#elif defined(WIN32)
+#elif defined(_WIN32)
 #define ev_uint64_t unsigned __int64
 #define ev_int64_t signed __int64
 #elif _EVENT_SIZEOF_LONG_LONG == 8
@@ -102,7 +102,7 @@ extern "C" {
 #ifdef _EVENT_HAVE_UINT32_T
 #define ev_uint32_t uint32_t
 #define ev_int32_t int32_t
-#elif defined(WIN32)
+#elif defined(_WIN32)
 #define ev_uint32_t unsigned int
 #define ev_int32_t signed int
 #elif _EVENT_SIZEOF_LONG == 4
@@ -118,7 +118,7 @@ extern "C" {
 #ifdef _EVENT_HAVE_UINT16_T
 #define ev_uint16_t uint16_t
 #define ev_int16_t  int16_t
-#elif defined(WIN32)
+#elif defined(_WIN32)
 #define ev_uint16_t unsigned short
 #define ev_int16_t  signed short
 #elif _EVENT_SIZEOF_INT == 2
@@ -163,7 +163,7 @@ extern "C" {
 #define ev_ssize_t ssize_t
 #endif
 
-#ifdef WIN32
+#ifdef _WIN32
 #define ev_off_t ev_int64_t
 #else
 #define ev_off_t off_t
@@ -201,7 +201,7 @@ extern "C" {
 
 #define EV_SSIZE_MIN ((-EV_SSIZE_MAX) - 1)
 
-#ifdef WIN32
+#ifdef _WIN32
 #define ev_socklen_t int
 #elif defined(_EVENT_socklen_t)
 #define ev_socklen_t _EVENT_socklen_t
@@ -216,7 +216,7 @@ extern "C" {
 #endif
 #endif
 
-#ifdef WIN32
+#ifdef _WIN32
 /** A type wide enough to hold the output of "socket()" or "accept()".  On
  * Windows, this is an intptr_t; elsewhere, it is an int. */
 #define evutil_socket_t intptr_t
@@ -273,7 +273,7 @@ int evutil_closesocket(evutil_socket_t sock);
  * function, and don't let you use strerror for the error codes.  And handling
  * EWOULDBLOCK is ... different. */
 
-#ifdef WIN32
+#ifdef _WIN32
 /** Return the most recent socket error.  Not idempotent on all platforms. */
 #define EVUTIL_SOCKET_ERROR() WSAGetLastError()
 /** Replace the most recent socket error with errcode */
index eb2eae49c20cf1e61f71554298d48f5ec99e9769..abfd5af6ae57829a1264a6f01c9ff861c3286bb1 100644 (file)
@@ -39,7 +39,7 @@ typedef void (*iocp_callback)(struct event_overlapped *, ev_uintptr_t, ev_ssize_
 /* This whole file is actually win32 only. We wrap the structures in a win32
  * ifdef so that we can test-compile code that uses these interfaces on
  * non-win32 platforms. */
-#ifdef WIN32
+#ifdef _WIN32
 
 /**
    Internal use only.  Wraps an OVERLAPPED that we're using for libevent
index 0f3cecf8ac0c0e37f532a73c7a66d76074fe33d7..aaceaae742a53bb5b8e0ada4a2e7f3310aaa9b66 100644 (file)
@@ -29,7 +29,7 @@
 
 #include <sys/types.h>
 
-#ifdef WIN32
+#ifdef _WIN32
 #include <winsock2.h>
 #include <ws2tcpip.h>
 #include <mswsock.h>
@@ -53,7 +53,7 @@
 #include "util-internal.h"
 #include "log-internal.h"
 #include "evthread-internal.h"
-#ifdef WIN32
+#ifdef _WIN32
 #include "iocp-internal.h"
 #include "defer-internal.h"
 #include "event-internal.h"
@@ -84,7 +84,7 @@ struct evconnlistener_event {
        struct event listener;
 };
 
-#ifdef WIN32
+#ifdef _WIN32
 struct evconnlistener_iocp {
        struct evconnlistener base;
        evutil_socket_t fd;
@@ -154,7 +154,7 @@ evconnlistener_new(struct event_base *base,
 {
        struct evconnlistener_event *lev;
 
-#ifdef WIN32
+#ifdef _WIN32
        if (base && event_base_get_iocp(base)) {
                const struct win32_extension_fns *ext =
                        event_get_win32_extension_fns();
@@ -379,7 +379,7 @@ listener_read_cb(evutil_socket_t fd, short what, void *p)
        LOCK(lev);
        while (1) {
                struct sockaddr_storage ss;
-#ifdef WIN32
+#ifdef _WIN32
                int socklen = sizeof(ss);
 #else
                socklen_t socklen = sizeof(ss);
@@ -427,7 +427,7 @@ listener_read_cb(evutil_socket_t fd, short what, void *p)
        }
 }
 
-#ifdef WIN32
+#ifdef _WIN32
 struct accepting_socket {
        CRITICAL_SECTION lock;
        struct event_overlapped overlapped;
diff --git a/log.c b/log.c
index 142719cc7fb00d032da01590e3a28dc2c7ff2411..8a3ca540c831df98589003b4f099910bd0d88846 100644 (file)
--- a/log.c
+++ b/log.c
@@ -40,7 +40,7 @@
 #include "event2/event-config.h"
 #include "evconfig-private.h"
 
-#ifdef WIN32
+#ifdef _WIN32
 #include <winsock2.h>
 #define WIN32_LEAN_AND_MEAN
 #include <windows.h>
index f2c1e020a0072ae76cda95ed5a215adb77102fb6..33a49cc77283712e65c2ce5d9a66ab2bf7b60c4b 100644 (file)
@@ -12,7 +12,7 @@
 
 #include <sys/types.h>
 
-#ifdef WIN32
+#ifdef _WIN32
 #include <winsock2.h>
 #include <ws2tcpip.h>
 #else
@@ -184,7 +184,7 @@ main(int c, char **v) {
                evdns_add_server_port_with_base(event_base, sock, 0, evdns_server_callback, NULL);
        }
        if (idx < c) {
-#ifdef WIN32
+#ifdef _WIN32
                evdns_base_config_windows_nameservers(evdns_base);
 #else
                evdns_base_resolv_conf_parse(evdns_base, DNS_OPTION_NAMESERVERS,
index e4d7a4238d61aa01aaa3435515b95019cffcf908..0bddcf4e9c1be7019426ce9975b30fcdee16acab 100644 (file)
@@ -12,7 +12,7 @@
 
 #include <sys/types.h>
 #include <sys/stat.h>
-#ifndef WIN32
+#ifndef _WIN32
 #include <sys/queue.h>
 #include <unistd.h>
 #include <sys/time.h>
@@ -34,7 +34,7 @@ fifo_read(int fd, short event, void *arg)
        char buf[255];
        int len;
        struct event *ev = arg;
-#ifdef WIN32
+#ifdef _WIN32
        DWORD dwBytesRead;
 #endif
 
@@ -43,7 +43,7 @@ fifo_read(int fd, short event, void *arg)
 
        fprintf(stderr, "fifo_read called with fd: %d, event: %d, arg: %p\n",
                fd, event, arg);
-#ifdef WIN32
+#ifdef _WIN32
        len = ReadFile((HANDLE)fd, buf, sizeof(buf) - 1, &dwBytesRead, NULL);
 
        /* Check for end of file. */
@@ -74,7 +74,7 @@ int
 main(int argc, char **argv)
 {
        struct event evfifo;
-#ifdef WIN32
+#ifdef _WIN32
        HANDLE socket;
        /* Open a file. */
        socket = CreateFileA("test.txt",        /* open File */
@@ -125,7 +125,7 @@ main(int argc, char **argv)
        event_init();
 
        /* Initalize one event */
-#ifdef WIN32
+#ifdef _WIN32
        event_set(&evfifo, (int)socket, EV_READ, fifo_read, &evfifo);
 #else
        event_set(&evfifo, socket, EV_READ, fifo_read, &evfifo);
@@ -135,7 +135,7 @@ main(int argc, char **argv)
        event_add(&evfifo, NULL);
 
        event_dispatch();
-#ifdef WIN32
+#ifdef _WIN32
        CloseHandle(socket);
 #endif
        return (0);
index d40af5296f4d28205b11218d0ef0bb27f287cac6..d3cf058a8b5550695b398a60988ed98e792d311f 100644 (file)
@@ -11,7 +11,7 @@
 #include <errno.h>
 #include <stdio.h>
 #include <signal.h>
-#ifndef WIN32
+#ifndef _WIN32
 #include <netinet/in.h>
 # ifdef _XOPEN_SOURCE_EXTENDED
 #  include <arpa/inet.h>
@@ -43,7 +43,7 @@ main(int argc, char **argv)
        struct event *signal_event;
 
        struct sockaddr_in sin;
-#ifdef WIN32
+#ifdef _WIN32
        WSADATA wsa_data;
        WSAStartup(0x0201, &wsa_data);
 #endif
index 75caa414e2bce4168ee3aa5f15470e52239c3293..2b2242bb5d7a9c0f5cb2ca1a8c66037780457e6d 100644 (file)
@@ -13,7 +13,7 @@
 #include <sys/types.h>
 #include <sys/stat.h>
 
-#ifdef WIN32
+#ifdef _WIN32
 #include <winsock2.h>
 #include <ws2tcpip.h>
 #include <windows.h>
@@ -47,7 +47,7 @@
 /* Compatibility for possible missing IPv6 declarations */
 #include "../util-internal.h"
 
-#ifdef WIN32
+#ifdef _WIN32
 #define stat _stat
 #define fstat _fstat
 #define open _open
@@ -203,7 +203,7 @@ send_document_cb(struct evhttp_request *req, void *arg)
        if (S_ISDIR(st.st_mode)) {
                /* If it's a directory, read the comments and make a little
                 * index page */
-#ifdef WIN32
+#ifdef _WIN32
                HANDLE d;
                WIN32_FIND_DATAA ent;
                char *pattern;
@@ -217,7 +217,7 @@ send_document_cb(struct evhttp_request *req, void *arg)
                if (!strlen(path) || path[strlen(path)-1] != '/')
                        trailing_slash = "/";
 
-#ifdef WIN32
+#ifdef _WIN32
                dirlen = strlen(whole_path);
                pattern = malloc(dirlen+3);
                memcpy(pattern, whole_path, dirlen);
@@ -244,7 +244,7 @@ send_document_cb(struct evhttp_request *req, void *arg)
                    uri_root, path, /* XXX html-escape this? */
                    trailing_slash,
                    decoded_path /* XXX html-escape this */);
-#ifdef WIN32
+#ifdef _WIN32
                do {
                        const char *name = ent.cFileName;
 #else
@@ -254,13 +254,13 @@ send_document_cb(struct evhttp_request *req, void *arg)
                        evbuffer_add_printf(evb,
                            "    <li><a href=\"%s\">%s</a>\n",
                            name, name);/* XXX escape this */
-#ifdef WIN32
+#ifdef _WIN32
                } while (FindNextFileA(d, &ent));
 #else
                }
 #endif
                evbuffer_add_printf(evb, "</ul></body></html>\n");
-#ifdef WIN32
+#ifdef _WIN32
                CloseHandle(d);
 #else
                closedir(d);
@@ -318,7 +318,7 @@ main(int argc, char **argv)
        struct evhttp_bound_socket *handle;
 
        unsigned short port = 0;
-#ifdef WIN32
+#ifdef _WIN32
        WSADATA WSAData;
        WSAStartup(0x101, &WSAData);
 #else
index 446bfb562783895bbe985f253adc069a0a04b4ef..4bab6a61a50832062974d8105e6c38f4935b335e 100644 (file)
@@ -11,7 +11,7 @@
 #include <string.h>
 #include <errno.h>
 
-#ifdef WIN32
+#ifdef _WIN32
 #include <winsock2.h>
 #include <ws2tcpip.h>
 #else
index 53c025f9cdce8f5fb6d233d72dca74285b6c550b..3772e2b7ed4ddd1a3ffa7d9e19138d1058a6ae4f 100644 (file)
@@ -9,7 +9,7 @@
 #include <event2/event-config.h>
 
 #include <sys/stat.h>
-#ifndef WIN32
+#ifndef _WIN32
 #include <sys/queue.h>
 #include <unistd.h>
 #include <sys/time.h>
@@ -50,7 +50,7 @@ main(int argc, char **argv)
 {
        struct event signal_int;
        struct event_base* base;
-#ifdef WIN32
+#ifdef _WIN32
        WORD wVersionRequested;
        WSADATA wsaData;
        int     err;
index 61b4a6c1d9aa59c36aed65148cb410d2d7cc7c6c..ddbc029a8a16188f38941305fbb367f164090d34 100644 (file)
@@ -13,7 +13,7 @@
 #include <event2/event-config.h>
 
 #include <sys/stat.h>
-#ifndef WIN32
+#ifndef _WIN32
 #include <sys/queue.h>
 #include <unistd.h>
 #endif
@@ -31,7 +31,7 @@
 #include <event2/event_struct.h>
 #include <event2/util.h>
 
-#ifdef WIN32
+#ifdef _WIN32
 #include <winsock2.h>
 #endif
 
@@ -71,7 +71,7 @@ main(int argc, char **argv)
        struct event_base *base;
        int flags;
 
-#ifdef WIN32
+#ifdef _WIN32
        WORD wVersionRequested;
        WSADATA wsaData;
        int     err;
index a700c12878d407ecfac9bf3d6b45d80e2cc7680f..bd52ced34ec6dc98c7575089b31d20df0289b6e1 100644 (file)
--- a/signal.c
+++ b/signal.c
@@ -29,7 +29,7 @@
 #include "event2/event-config.h"
 #include "evconfig-private.h"
 
-#ifdef WIN32
+#ifdef _WIN32
 #define WIN32_LEAN_AND_MEAN
 #include <winsock2.h>
 #include <windows.h>
@@ -82,7 +82,7 @@
   on Linux do a reasonable thing using signalfd.
 */
 
-#ifndef WIN32
+#ifndef _WIN32
 /* Windows wants us to call our signal handlers as __cdecl.  Nobody else
  * expects you to do anything crazy like this. */
 #define __cdecl
@@ -181,7 +181,7 @@ evsig_init(struct event_base *base)
         */
        if (evutil_socketpair(
                    AF_UNIX, SOCK_STREAM, 0, base->sig.ev_signal_pair) == -1) {
-#ifdef WIN32
+#ifdef _WIN32
                /* Make this nonfatal on win32, where sometimes people
                   have localhost firewalled. */
                event_sock_warn(-1, "%s: socketpair", __func__);
@@ -374,7 +374,7 @@ static void __cdecl
 evsig_handler(int sig)
 {
        int save_errno = errno;
-#ifdef WIN32
+#ifdef _WIN32
        int socket_errno = EVUTIL_SOCKET_ERROR();
 #endif
        ev_uint8_t msg;
@@ -394,7 +394,7 @@ evsig_handler(int sig)
        msg = sig;
        send(evsig_base_fd, (char*)&msg, 1, 0);
        errno = save_errno;
-#ifdef WIN32
+#ifdef _WIN32
        EVUTIL_SET_SOCKET_ERROR(socket_errno);
 #endif
 }
index d0f831b9f80723889c3270e14371dd4fd78099bd..47e8b4d2bc39a38419a0647d23e946be0c07dd3f 100644 (file)
@@ -40,7 +40,7 @@
 #ifdef _EVENT_HAVE_SYS_TIME_H
 #include <sys/time.h>
 #endif
-#ifdef WIN32
+#ifdef _WIN32
 #define WIN32_LEAN_AND_MEAN
 #include <windows.h>
 #else
@@ -125,14 +125,14 @@ run_once(void)
 int
 main(int argc, char **argv)
 {
-#ifndef WIN32
+#ifndef _WIN32
        struct rlimit rl;
 #endif
        int i, c;
        struct timeval *tv;
        int *cp;
 
-#ifdef WIN32
+#ifdef _WIN32
        WSADATA WSAData;
        WSAStartup(0x101, &WSAData);
 #endif
@@ -156,7 +156,7 @@ main(int argc, char **argv)
                }
        }
 
-#ifndef WIN32
+#ifndef _WIN32
        rl.rlim_cur = rl.rlim_max = num_pipes * 2 + 50;
        if (setrlimit(RLIMIT_NOFILE, &rl) == -1) {
                perror("setrlimit");
index c25255edd244bf42cba173a65ac2e8cab490e4df..f23b58c276993817b0928b8a41052e3eca08eb45 100644 (file)
@@ -32,7 +32,7 @@
 #ifdef _EVENT_HAVE_SYS_TIME_H
 #include <sys/time.h>
 #endif
-#ifdef WIN32
+#ifdef _WIN32
 #define WIN32_LEAN_AND_MEAN
 #include <windows.h>
 #else
@@ -134,7 +134,7 @@ run_once(int num_pipes)
 int
 main(int argc, char **argv)
 {
-#ifndef WIN32
+#ifndef _WIN32
        struct rlimit rl;
 #endif
        int i, c;
@@ -152,7 +152,7 @@ main(int argc, char **argv)
                }
        }
 
-#ifndef WIN32
+#ifndef _WIN32
        rl.rlim_cur = rl.rlim_max = num_pipes * 2 + 50;
        if (setrlimit(RLIMIT_NOFILE, &rl) == -1) {
                perror("setrlimit");
index dd3dde896056e22affa88bf2ee7b0f301c6b3690..1ec6ad50d4942b07d1c15c62e104f3ba8f0aad17 100644 (file)
@@ -27,7 +27,7 @@
 
 #include <sys/types.h>
 #include <sys/stat.h>
-#ifdef WIN32
+#ifdef _WIN32
 #include <winsock2.h>
 #else
 #include <sys/socket.h>
@@ -92,7 +92,7 @@ main(int argc, char **argv)
        int use_iocp = 0;
        unsigned short port = 8080;
 
-#ifdef WIN32
+#ifdef _WIN32
        WSADATA WSAData;
        WSAStartup(0x101, &WSAData);
 #else
@@ -122,7 +122,7 @@ main(int argc, char **argv)
                                exit(1);
                        }
                        break;
-#ifdef WIN32
+#ifdef _WIN32
                case 'i':
                        use_iocp = 1;
                        evthread_use_windows_threads();
index 25db4a7d8c4eeb6183532be0cd900bf1a91e5aa4..73797554a72152a8f2b11c2182b1f79964fc68f7 100644 (file)
@@ -26,7 +26,7 @@
  */
 
 #include <sys/types.h>
-#ifdef WIN32
+#ifdef _WIN32
 #include <winsock2.h>
 #else
 #include <sys/socket.h>
@@ -201,7 +201,7 @@ main(int argc, char **argv)
        throughput = total_n_handled /
            (total.tv_sec+ ((double)total.tv_usec)/1000000.0);
 
-#ifdef WIN32
+#ifdef _WIN32
 #define I64_FMT "%I64d"
 #define I64_TYP __int64
 #else
index abe6af8c2465f0b4eb8457750e916b11f34fbcb9..5d408dc9e70ae86a8fab0a4bcf6d9f8acb983af4 100644 (file)
@@ -25,7 +25,7 @@
  * THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
  */
 
-#ifdef WIN32
+#ifdef _WIN32
 #include <winsock2.h>
 #include <windows.h>
 #endif
@@ -38,7 +38,7 @@
 #include <sys/time.h>
 #endif
 #include <sys/queue.h>
-#ifndef WIN32
+#ifndef _WIN32
 #include <sys/socket.h>
 #include <sys/wait.h>
 #include <signal.h>
@@ -68,7 +68,7 @@
 
 #include "regress.h"
 
-#ifndef WIN32
+#ifndef _WIN32
 #include "regress.gen.h"
 #endif
 
@@ -93,7 +93,7 @@ static struct timeval tcalled;
 #define SHUT_WR 1
 #endif
 
-#ifdef WIN32
+#ifdef _WIN32
 #define write(fd,buf,len) send((fd),(buf),(int)(len),0)
 #define read(fd,buf,len) recv((fd),(buf),(int)(len),0)
 #endif
@@ -408,7 +408,7 @@ test_simpleclose(void *ptr)
        short got_read_on_close = 0, got_write_on_close = 0;
        char buf[1024];
        memset(buf, 99, sizeof(buf));
-#ifdef WIN32
+#ifdef _WIN32
 #define LOCAL_SOCKETPAIR_AF AF_INET
 #else
 #define LOCAL_SOCKETPAIR_AF AF_UNIX
@@ -776,7 +776,7 @@ end:
        data->base = NULL;
 }
 
-#ifndef WIN32
+#ifndef _WIN32
 static void signal_cb(evutil_socket_t fd, short event, void *arg);
 
 #define current_base event_global_current_base_
@@ -2061,7 +2061,7 @@ end:
        }
 }
 
-#ifndef WIN32
+#ifndef _WIN32
 /* You can't do this test on windows, since dup2 doesn't work on sockets */
 
 static void
@@ -2310,7 +2310,7 @@ struct testcase_t main_testcases[] = {
        { "event_once", test_event_once, TT_ISOLATED, &basic_setup, NULL },
        { "event_pending", test_event_pending, TT_ISOLATED, &basic_setup,
          NULL },
-#ifndef WIN32
+#ifndef _WIN32
        { "dup_fd", test_dup_fd, TT_ISOLATED, &basic_setup, NULL },
 #endif
        { "mm_functions", test_mm_functions, TT_FORK, NULL, NULL },
@@ -2319,7 +2319,7 @@ struct testcase_t main_testcases[] = {
 
        { "struct_event_size", test_struct_event_size, 0, NULL, NULL },
 
-#ifndef WIN32
+#ifndef _WIN32
        LEGACY(fork, TT_ISOLATED),
 #endif
        END_OF_TESTCASES
@@ -2335,7 +2335,7 @@ struct testcase_t evtag_testcases[] = {
 };
 
 struct testcase_t signal_testcases[] = {
-#ifndef WIN32
+#ifndef _WIN32
        LEGACY(simplesignal, TT_ISOLATED),
        LEGACY(multiplesignal, TT_ISOLATED),
        LEGACY(immediatesignal, TT_ISOLATED),
index cf68f848557701446da67bc14e63e400e7f31aaa..b5f21623a8f459b80ec86309e201a79d391af9a6 100644 (file)
@@ -25,7 +25,7 @@
  * THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
  */
 
-#ifdef WIN32
+#ifdef _WIN32
 #include <winsock2.h>
 #include <windows.h>
 #endif
@@ -38,7 +38,7 @@
 #include <sys/time.h>
 #endif
 #include <sys/queue.h>
-#ifndef WIN32
+#ifndef _WIN32
 #include <sys/socket.h>
 #include <sys/wait.h>
 #include <signal.h>
index d737b48d7827ef4ad2b0ddaa9e78ab6e26965614..79816396b8c14af902339976a08834394621dd69 100644 (file)
@@ -28,7 +28,7 @@
 /* The old tests here need assertions to work. */
 #undef NDEBUG
 
-#ifdef WIN32
+#ifdef _WIN32
 #include <winsock2.h>
 #include <windows.h>
 #endif
@@ -41,7 +41,7 @@
 #include <sys/time.h>
 #endif
 #include <sys/queue.h>
-#ifndef WIN32
+#ifndef _WIN32
 #include <sys/socket.h>
 #include <sys/wait.h>
 #include <signal.h>
@@ -74,7 +74,7 @@
 #include "event2/util.h"
 
 #include "bufferevent-internal.h"
-#ifdef WIN32
+#ifdef _WIN32
 #include "iocp-internal.h"
 #endif
 
@@ -486,7 +486,7 @@ test_bufferevent_connect(void *arg)
                be_flags |= BEV_OPT_THREADSAFE;
        }
        bufferevent_connect_test_flags = be_flags;
-#ifdef WIN32
+#ifdef _WIN32
        if (!strcmp((char*)data->setup_data, "unset_connectex")) {
                struct win32_extension_fns *ext =
                    (struct win32_extension_fns *)
index 7868bbb3d5950fdca8ad351e42c7f04595b04113..01cb0dbf975ac8b01d11e84e7a7941aeed57f0be 100644 (file)
@@ -25,7 +25,7 @@
  * THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
  */
 
-#ifdef WIN32
+#ifdef _WIN32
 #include <winsock2.h>
 #include <windows.h>
 #include <ws2tcpip.h>
@@ -39,7 +39,7 @@
 #include <sys/time.h>
 #endif
 #include <sys/queue.h>
-#ifndef WIN32
+#ifndef _WIN32
 #include <sys/socket.h>
 #include <signal.h>
 #include <netinet/in.h>
index 9da53fdb1b30f5ea9c7659f0bc235833a4bf71d3..ee6e6419219a35adec6a55c4df9f515e38c025a5 100644 (file)
@@ -26,7 +26,7 @@
 
 #include "event2/event-config.h"
 
-#ifdef WIN32
+#ifdef _WIN32
 #include <winsock2.h>
 #endif
 #include <sys/types.h>
@@ -38,7 +38,7 @@
 #include <stdlib.h>
 #include <stdio.h>
 #include <string.h>
-#ifndef WIN32
+#ifndef _WIN32
 #include <sys/time.h>
 #include <unistd.h>
 #endif
@@ -75,7 +75,7 @@ read_cb(evutil_socket_t fd, short event, void *arg)
 #define SHUT_WR 1
 #endif
 
-#ifdef WIN32
+#ifdef _WIN32
 #define LOCAL_SOCKETPAIR_AF AF_INET
 #else
 #define LOCAL_SOCKETPAIR_AF AF_UNIX
index cf0fb97147734fffa07f09a760e957206c9bb467..b232469c8eb1130d5d66be3471d1f44c4c78b0f3 100644 (file)
@@ -25,7 +25,7 @@
  * THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
  */
 
-#ifdef WIN32
+#ifdef _WIN32
 #include <winsock2.h>
 #include <ws2tcpip.h>
 #include <windows.h>
@@ -39,7 +39,7 @@
 #include <sys/time.h>
 #endif
 #include <sys/queue.h>
-#ifndef WIN32
+#ifndef _WIN32
 #include <sys/socket.h>
 #include <signal.h>
 #include <unistd.h>
@@ -154,7 +154,7 @@ http_connect(const char *address, u_short port)
 
        evutil_make_socket_nonblocking(fd);
        if (connect(fd, sa, slen) == -1) {
-#ifdef WIN32
+#ifdef _WIN32
                int tmp_err = WSAGetLastError();
                if (tmp_err != WSAEINPROGRESS && tmp_err != WSAEINVAL &&
                    tmp_err != WSAEWOULDBLOCK)
@@ -487,7 +487,7 @@ http_badreq_errorcb(struct bufferevent *bev, short what, void *arg)
 }
 
 #ifndef SHUT_WR
-#ifdef WIN32
+#ifdef _WIN32
 #define SHUT_WR SD_SEND
 #else
 #define SHUT_WR 1
index 44fee7f4c5ead3e0d426e903adf5bc5123a1e3b7..5a794cc434cce6fd46da1aebe5414d0da3453f12 100644 (file)
  * THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
  */
 
-#ifdef WIN32
+#ifdef _WIN32
 #include <winsock2.h>
 #include <windows.h>
 #endif
 
 #include <sys/types.h>
 
-#ifndef WIN32
+#ifndef _WIN32
 #include <sys/socket.h>
 #include <netinet/in.h>
 # ifdef _XOPEN_SOURCE_EXTENDED
@@ -119,7 +119,7 @@ regress_pick_a_port(void *arg)
        evutil_socket_connect(&fd2, (struct sockaddr*)&ss1, slen1);
        evutil_socket_connect(&fd3, (struct sockaddr*)&ss2, slen2);
 
-#ifdef WIN32
+#ifdef _WIN32
        Sleep(100); /* XXXX this is a stupid stopgap. */
 #endif
        event_base_dispatch(base);
index 849d7e0de42f00f786ff5d131f61c62fa690df7e..26635f9e359c29184e43a001d21ac8ecb2002813 100644 (file)
@@ -25,7 +25,7 @@
  * THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
  */
 
-#ifdef WIN32
+#ifdef _WIN32
 #include <winsock2.h>
 #include <windows.h>
 #include <io.h>
@@ -51,7 +51,7 @@
 
 #include <sys/types.h>
 
-#ifndef WIN32
+#ifndef _WIN32
 #include <sys/socket.h>
 #include <sys/wait.h>
 #include <signal.h>
@@ -111,7 +111,7 @@ static void dnslogcb(int w, const char *m)
 int
 regress_make_tmpfile(const void *data, size_t datalen, char **filename_out)
 {
-#ifndef WIN32
+#ifndef _WIN32
        char tmpfilename[32];
        int fd;
        *filename_out = NULL;
@@ -168,7 +168,7 @@ basic_test_setup(const struct testcase_t *testcase)
        evutil_socket_t spair[2] = { -1, -1 };
        struct basic_test_data *data = NULL;
 
-#ifndef WIN32
+#ifndef _WIN32
        if (testcase->flags & TT_ENABLE_IOCP_FLAG)
                return (void*)TT_SKIP;
 #endif
@@ -328,7 +328,7 @@ const struct testcase_setup_t legacy_setup = {
 
 /* ============================================================ */
 
-#if (!defined(_EVENT_HAVE_PTHREADS) && !defined(WIN32)) || defined(_EVENT_DISABLE_THREAD_SUPPORT)
+#if (!defined(_EVENT_HAVE_PTHREADS) && !defined(_WIN32)) || defined(_EVENT_DISABLE_THREAD_SUPPORT)
 struct testcase_t thread_testcases[] = {
        { "basic", NULL, TT_SKIP, NULL, NULL },
        END_OF_TESTCASES
@@ -349,7 +349,7 @@ struct testgroup_t testgroups[] = {
        { "rpc/", rpc_testcases },
        { "thread/", thread_testcases },
        { "listener/", listener_testcases },
-#ifdef WIN32
+#ifdef _WIN32
        { "iocp/", iocp_testcases },
        { "iocp/bufferevent/", bufferevent_iocp_testcases },
        { "iocp/listener/", listener_iocp_testcases },
@@ -363,7 +363,7 @@ struct testgroup_t testgroups[] = {
 int
 main(int argc, const char **argv)
 {
-#ifdef WIN32
+#ifdef _WIN32
        WORD wVersionRequested;
        WSADATA wsaData;
        int     err;
@@ -373,12 +373,12 @@ main(int argc, const char **argv)
        err = WSAStartup(wVersionRequested, &wsaData);
 #endif
 
-#ifndef WIN32
+#ifndef _WIN32
        if (signal(SIGPIPE, SIG_IGN) == SIG_ERR)
                return 1;
 #endif
 
-#ifdef WIN32
+#ifdef _WIN32
        tinytest_skip(testgroups, "http/connection_retry");
 #endif
 
index 9362e493da67b8fafd4eb836bc7d91dc170466e6..d9d59ec03ff384ab1f6805e5e3716462b3e1be50 100644 (file)
@@ -28,7 +28,7 @@
 /* The old tests here need assertions to work. */
 #undef NDEBUG
 
-#ifdef WIN32
+#ifdef _WIN32
 #include <winsock2.h>
 #include <windows.h>
 #endif
@@ -41,7 +41,7 @@
 #include <sys/time.h>
 #endif
 #include <sys/queue.h>
-#ifndef WIN32
+#ifndef _WIN32
 #include <sys/socket.h>
 #include <signal.h>
 #include <unistd.h>
index e16bf8b3160ec45652c978542c7309c606c48bb8..c2f7a14da5a45973ab6390f6365a4cb4b2c4d3a6 100644 (file)
  * THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
  */
 
-#ifdef WIN32
+#ifdef _WIN32
 #include <winsock2.h>
 #include <windows.h>
 #endif
 
-#ifndef WIN32
+#ifndef _WIN32
 #include <sys/socket.h>
 #include <netinet/in.h>
 #endif
index 8902e63180529037dac742ee31f98bc628a76a45..b9446ae7fbe462c265417976a1b036677f40442c 100644 (file)
@@ -24,7 +24,7 @@
  * THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
  */
 
-#ifdef WIN32
+#ifdef _WIN32
 #include <winsock2.h>
 #include <windows.h>
 #include <ws2tcpip.h>
@@ -38,7 +38,7 @@
 #include <sys/time.h>
 #endif
 #include <sys/queue.h>
-#ifndef WIN32
+#ifndef _WIN32
 #include <sys/socket.h>
 #include <signal.h>
 #include <netinet/in.h>
index cbc1efef4e5c68be2d6509393c0a82b29a0abc5d..d08edf3671afd624888552c629cbc1907639992d 100644 (file)
@@ -42,7 +42,7 @@
 
 #ifdef _EVENT_HAVE_PTHREADS
 #include <pthread.h>
-#elif defined(WIN32)
+#elif defined(_WIN32)
 #include <process.h>
 #endif
 #include <assert.h>
@@ -156,7 +156,7 @@ basic_thread(void *arg)
 }
 
 static int notification_fd_used = 0;
-#ifndef WIN32
+#ifndef _WIN32
 static int got_sigchld = 0;
 static void
 sigchld_cb(evutil_socket_t fd, short event, void *arg)
@@ -199,7 +199,7 @@ thread_basic(void *arg)
                tt_abort_msg("Couldn't make base notifiable!");
        }
 
-#ifndef WIN32
+#ifndef _WIN32
        if (data->setup_data && !strcmp(data->setup_data, "forking")) {
                pid_t pid;
                int status;
@@ -403,7 +403,7 @@ end:
 #define CB_COUNT 128
 #define QUEUE_THREAD_COUNT 8
 
-#ifdef WIN32
+#ifdef _WIN32
 #define SLEEP_MS(ms) Sleep(ms)
 #else
 #define SLEEP_MS(ms) usleep((ms) * 1000)
@@ -500,7 +500,7 @@ end:
 struct testcase_t thread_testcases[] = {
        { "basic", thread_basic, TT_FORK|TT_NEED_THREADS|TT_NEED_BASE,
          &basic_setup, NULL },
-#ifndef WIN32
+#ifndef _WIN32
        { "forking", thread_basic, TT_FORK|TT_NEED_THREADS|TT_NEED_BASE,
          &basic_setup, (char*)"forking" },
 #endif
index f31bb4a24a258ec49634812b2b6d244974f1bae1..00b87c13e2433be46142b98daf82f05d4cd4a81b 100644 (file)
@@ -23,7 +23,7 @@
  * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF
  * THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
  */
-#ifdef WIN32
+#ifdef _WIN32
 #include <winsock2.h>
 #include <windows.h>
 #include <ws2tcpip.h>
@@ -33,7 +33,7 @@
 
 #include <sys/types.h>
 
-#ifndef WIN32
+#ifndef _WIN32
 #include <sys/socket.h>
 #include <netinet/in.h>
 #include <arpa/inet.h>
@@ -441,7 +441,7 @@ fatalfn(int exitcode)
                exit(exitcode);
 }
 
-#ifndef WIN32
+#ifndef _WIN32
 #define CAN_CHECK_ERR
 static void
 check_error_logging(void (*fn)(void), int wantexitcode,
@@ -481,7 +481,7 @@ static void
 sock_err_fn(void)
 {
        evutil_socket_t fd = socket(AF_INET, SOCK_STREAM, 0);
-#ifdef WIN32
+#ifdef _WIN32
        EVUTIL_SET_SOCKET_ERROR(WSAEWOULDBLOCK);
 #else
        errno = EAGAIN;
@@ -553,7 +553,7 @@ test_evutil_log(void *ptr)
 
        /* Try with a socket errno. */
        fd = socket(AF_INET, SOCK_STREAM, 0);
-#ifdef WIN32
+#ifdef _WIN32
        evutil_snprintf(buf, sizeof(buf),
            "Unhappy socket: %s",
            evutil_socket_error_to_string(WSAEWOULDBLOCK));
@@ -1037,7 +1037,7 @@ end:
                evutil_freeaddrinfo(ai);
 }
 
-#ifdef WIN32
+#ifdef _WIN32
 static void
 test_evutil_loadsyslib(void *arg)
 {
@@ -1068,7 +1068,7 @@ struct testcase_t util_testcases[] = {
        { "integers", test_evutil_integers, 0, NULL, NULL },
        { "rand", test_evutil_rand, TT_FORK, NULL, NULL },
        { "getaddrinfo", test_evutil_getaddrinfo, TT_FORK, NULL, NULL },
-#ifdef WIN32
+#ifdef _WIN32
        { "loadsyslib", test_evutil_loadsyslib, TT_FORK, NULL, NULL },
 #endif
        END_OF_TESTCASES,
index 6dd7bf8f611e0feb60e1142f39987b47cf78c73b..e74c1fff60393955da4ee376f575b33cd3d0dc9f 100644 (file)
@@ -27,7 +27,7 @@
 /* The old tests here need assertions to work. */
 #undef NDEBUG
 
-#ifdef WIN32
+#ifdef _WIN32
 #include <winsock2.h>
 #include <windows.h>
 #endif
@@ -35,7 +35,7 @@
 #include "event2/event-config.h"
 
 #include <sys/types.h>
-#ifndef WIN32
+#ifndef _WIN32
 #include <sys/socket.h>
 #include <sys/wait.h>
 #include <unistd.h>
index f368f1cbf2e38a4429fe1a6722574078eae8048f..1b2af0e8ad51b98ac0ef8251733c34ea147061f5 100644 (file)
@@ -4,7 +4,7 @@
 
 #include "event2/event-config.h"
 
-#ifdef WIN32
+#ifdef _WIN32
 #include <winsock2.h>
 #include <windows.h>
 #else
@@ -30,7 +30,7 @@
 #include <time.h>
 
 struct cpu_usage_timer {
-#ifdef WIN32
+#ifdef _WIN32
        HANDLE thread;
        FILETIME usertimeBegin;
        FILETIME kerneltimeBegin;
@@ -42,7 +42,7 @@ struct cpu_usage_timer {
 static void
 start_cpu_usage_timer(struct cpu_usage_timer *timer)
 {
-#ifdef WIN32
+#ifdef _WIN32
        int r;
        FILETIME createtime, exittime;
        timer->thread = GetCurrentThread();
@@ -55,7 +55,7 @@ start_cpu_usage_timer(struct cpu_usage_timer *timer)
 
        evutil_gettimeofday(&timer->timeBegin, NULL);
 }
-#ifdef WIN32
+#ifdef _WIN32
 static ev_int64_t
 filetime_to_100nsec(const FILETIME *ft)
 {
@@ -82,7 +82,7 @@ static void
 get_cpu_usage(struct cpu_usage_timer *timer, double *secElapsedOut,
     double *secUsedOut, double *usageOut)
 {
-#ifdef WIN32
+#ifdef _WIN32
        double usertime_seconds, kerneltime_seconds;
        FILETIME createtime, exittime, usertimeEnd, kerneltimeEnd;
        int r;
@@ -92,7 +92,7 @@ get_cpu_usage(struct cpu_usage_timer *timer, double *secElapsedOut,
        struct timeval timeEnd, timeDiff;
        double secondsPassed, secondsUsed;
 
-#ifdef WIN32
+#ifdef _WIN32
        r = GetThreadTimes(timer->thread, &createtime, &exittime,
            &usertimeEnd, &kerneltimeEnd);
        if (r==0) printf("GetThreadTimes failed.");
@@ -149,7 +149,7 @@ main(int argc, char **argv)
 
        double usage, secPassed, secUsed;
 
-#ifdef WIN32
+#ifdef _WIN32
        WORD wVersionRequested;
        WSADATA wsaData;
        int     err;
index 417476e801d3b6c81557b7b97a13d6ddcc0bb003..b3cd7dfdcd8b205d638a7b214d9d17673e07b5a7 100644 (file)
@@ -4,7 +4,7 @@
  */
 #include "event2/event-config.h"
 
-#ifdef WIN32
+#ifdef _WIN32
 #include <winsock2.h>
 #else
 #include <unistd.h>
@@ -70,7 +70,7 @@ main(int argc, char **argv)
        const char *test = "test string";
        evutil_socket_t pair[2];
 
-#ifdef WIN32
+#ifdef _WIN32
        WORD wVersionRequested;
        WSADATA wsaData;
        int     err;
index 967a0131d6d9472c171f73d63ea03f96f69ff57c..7e1bf8c7afc37530ac6959330c57629bda720402 100644 (file)
@@ -16,7 +16,7 @@
 #include <stdlib.h>
 #include <stdio.h>
 #include <string.h>
-#ifndef WIN32
+#ifndef _WIN32
 #include <unistd.h>
 #endif
 #include <errno.h>
@@ -26,7 +26,7 @@
 int
 main(int argc, char **argv)
 {
-#ifdef WIN32
+#ifdef _WIN32
        WORD wVersionRequested;
        WSADATA wsaData;
        int     err;
index bbbd760809015c97f59fbc08ab30c48e052246c4..5c4b2a21ccc64d4da995de1ec414103d3c2b00c6 100644 (file)
@@ -30,7 +30,7 @@
 #include <assert.h>
 #include <math.h>
 
-#ifdef WIN32
+#ifdef _WIN32
 #include <winsock2.h>
 #include <ws2tcpip.h>
 #else
@@ -85,7 +85,7 @@ loud_writecb(struct bufferevent *bev, void *ctx)
        struct client_state *cs = ctx;
        struct evbuffer *output = bufferevent_get_output(bev);
        char buf[1024];
-#ifdef WIN32
+#ifdef _WIN32
        int r = rand() % 256;
 #else
        int r = random() % 256;
@@ -404,7 +404,7 @@ main(int argc, char **argv)
        int i,j;
        double ratio;
 
-#ifdef WIN32
+#ifdef _WIN32
        WORD wVersionRequested = MAKEWORD(2,2);
        WSADATA wsaData;
        int err;
@@ -412,7 +412,7 @@ main(int argc, char **argv)
        err = WSAStartup(wVersionRequested, &wsaData);
 #endif
 
-#ifndef WIN32
+#ifndef _WIN32
        if (signal(SIGPIPE, SIG_IGN) == SIG_ERR)
                return 1;
 #endif
@@ -446,7 +446,7 @@ main(int argc, char **argv)
        {
                struct timeval tv;
                evutil_gettimeofday(&tv, NULL);
-#ifdef WIN32
+#ifdef _WIN32
                srand(tv.tv_usec);
 #else
                srandom(tv.tv_usec);
index 5628696ed43ce50b469f2f3d7ebbed99ab156c77..8e4314875fdfba8cdeff6d2a2607b2d5c30d2898 100644 (file)
@@ -10,7 +10,7 @@
 #include <stdlib.h>
 #include <stdio.h>
 #include <string.h>
-#ifndef WIN32
+#ifndef _WIN32
 #include <unistd.h>
 #include <sys/time.h>
 #endif
@@ -29,7 +29,7 @@ struct event *ev[NEVENT];
 static int
 rand_int(int n)
 {
-#ifdef WIN32
+#ifdef _WIN32
        return (int)(rand() % n);
 #else
        return (int)(random() % n);
@@ -62,7 +62,7 @@ main(int argc, char **argv)
 {
        struct timeval tv;
        int i;
-#ifdef WIN32
+#ifdef _WIN32
        WORD wVersionRequested;
        WSADATA wsaData;
        int     err;
index b20f27e1847452d71943baaf976bcf9bd723b625..87a04a289c89541bdb05adbfbe4d933dcdc2bf5f 100644 (file)
@@ -4,7 +4,7 @@
  */
 #include "event2/event-config.h"
 
-#ifdef WIN32
+#ifdef _WIN32
 #include <winsock2.h>
 #else
 #include <unistd.h>
@@ -63,7 +63,7 @@ main(int argc, char **argv)
 {
        struct event ev;
 
-#ifdef WIN32
+#ifdef _WIN32
        WORD wVersionRequested;
        WSADATA wsaData;
        int     err;
@@ -73,7 +73,7 @@ main(int argc, char **argv)
        err = WSAStartup(wVersionRequested, &wsaData);
 #endif
 
-#ifndef WIN32
+#ifndef _WIN32
        if (signal(SIGPIPE, SIG_IGN) == SIG_ERR)
                return (1);
 #endif
index d0b77f74255f5b54624d4725ed59606bddf5c8b0..8caa4f5453dc5ce6a682e3a898b67267e4f5962c 100644 (file)
@@ -32,7 +32,7 @@
 #include "tinytest_local.h"
 #endif
 
-#ifdef WIN32
+#ifdef _WIN32
 #include <windows.h>
 #else
 #include <sys/types.h>
@@ -65,7 +65,7 @@ const char *cur_test_prefix = NULL; /**< prefix of the current test group */
 /** Name of the current test, if we haven't logged is yet. Used for --quiet */
 const char *cur_test_name = NULL;
 
-#ifdef WIN32
+#ifdef _WIN32
 /** Pointer to argv[0] for win32. */
 static const char *commandname = NULL;
 #endif
@@ -104,7 +104,7 @@ static enum outcome
 _testcase_run_forked(const struct testgroup_t *group,
                     const struct testcase_t *testcase)
 {
-#ifdef WIN32
+#ifdef _WIN32
        /* Fork? On Win32?  How primitive!  We'll do what the smart kids do:
           we'll invoke our own exe (whose name we recall from the command
           line) with a command line that tells it to run just the test we
@@ -290,7 +290,7 @@ tinytest_main(int c, const char **v, struct testgroup_t *groups)
 {
        int i, j, n=0;
 
-#ifdef WIN32
+#ifdef _WIN32
        commandname = v[0];
 #endif
        for (i=1; i<c; ++i) {
index 9f80fcd73158136a37c8a8bc635b569d5ad38281..d3ef301326f0c38cda97729fd21e2d803b464cae 100644 (file)
@@ -1,5 +1,5 @@
 
-#ifdef WIN32
+#ifdef _WIN32
 #include <winsock2.h>
 #endif
 
index a941dbac411a9c34d618255b7584f597ee5e3c14..770d158cf5e2fd583d705c74b949271974039863 100644 (file)
@@ -73,7 +73,7 @@ extern "C" {
    data," and we need to look at the error code.  Second, Windows defines
    a different set of error codes for sockets. */
 
-#ifndef WIN32
+#ifndef _WIN32
 
 /* True iff e is an error that means a read/write operation can be retried. */
 #define EVUTIL_ERR_RW_RETRIABLE(e)                             \
@@ -268,7 +268,7 @@ long evutil_tv_to_msec(const struct timeval *tv);
 
 int evutil_hex_char_to_int(char c);
 
-#ifdef WIN32
+#ifdef _WIN32
 HANDLE evutil_load_windows_system_library(const TCHAR *library_name);
 #endif