Commit 7a142713 authored by Kenton Varda's avatar Kenton Varda

Split WorkQueue into a separate file.

parent a2c1269c
...@@ -198,6 +198,7 @@ libkj_la_SOURCES= \ ...@@ -198,6 +198,7 @@ libkj_la_SOURCES= \
libkj_async_la_LIBADD = libkj.la $(PTHREAD_LIBS) -lpthread libkj_async_la_LIBADD = libkj.la $(PTHREAD_LIBS) -lpthread
libkj_async_la_LDFLAGS = -release $(VERSION) -no-undefined libkj_async_la_LDFLAGS = -release $(VERSION) -no-undefined
libkj_async_la_SOURCES= \ libkj_async_la_SOURCES= \
src/kj/work-queue.h \
src/kj/async.c++ \ src/kj/async.c++ \
src/kj/async-unix.c++ \ src/kj/async-unix.c++ \
src/kj/async-io.c++ src/kj/async-io.c++
......
This diff is collapsed.
...@@ -83,9 +83,9 @@ protected: ...@@ -83,9 +83,9 @@ protected:
void wake() const override; void wake() const override;
private: private:
class PollItem; class PollJob;
class PollPromiseAdapter; class PollPromiseAdapter;
class SignalItem; class SignalJob;
class SignalPromiseAdapter; class SignalPromiseAdapter;
struct Impl; struct Impl;
......
This diff is collapsed.
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