Commit 7086bb35 authored by Kenton Varda's avatar Kenton Varda

Rename async-io.c++ to async-io-unix.c++, in preparation for factoring out…

Rename async-io.c++ to async-io-unix.c++, in preparation for factoring out common bits from async-io-win32.c++.
parent a93eb5f2
...@@ -232,7 +232,7 @@ libkj_async_la_SOURCES= \ ...@@ -232,7 +232,7 @@ libkj_async_la_SOURCES= \
src/kj/async.c++ \ src/kj/async.c++ \
src/kj/async-unix.c++ \ src/kj/async-unix.c++ \
src/kj/async-win32.c++ \ src/kj/async-win32.c++ \
src/kj/async-io.c++ \ src/kj/async-io-unix.c++ \
src/kj/async-io-win32.c++ \ src/kj/async-io-win32.c++ \
src/kj/time.c++ src/kj/time.c++
endif !LITE_MODE endif !LITE_MODE
......
...@@ -92,7 +92,7 @@ install(FILES ${kj-test-compat_headers} DESTINATION "${CMAKE_INSTALL_INCLUDEDIR} ...@@ -92,7 +92,7 @@ install(FILES ${kj-test-compat_headers} DESTINATION "${CMAKE_INSTALL_INCLUDEDIR}
set(kj-async_sources set(kj-async_sources
async.c++ async.c++
async-unix.c++ async-unix.c++
async-io.c++ async-io-unix.c++
time.c++ time.c++
) )
set(kj-async_headers set(kj-async_headers
......
...@@ -20,7 +20,7 @@ ...@@ -20,7 +20,7 @@
// THE SOFTWARE. // THE SOFTWARE.
#if _WIN32 #if _WIN32
// For Unix implementation, see async-io.c++. // For Unix implementation, see async-io-unix.c++.
// Request Vista-level APIs. // Request Vista-level APIs.
#define WINVER 0x0600 #define WINVER 0x0600
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment