summaryrefslogtreecommitdiff
path: root/poll/os2
diff options
context:
space:
mode:
authorrbb <rbb@13f79535-47bb-0310-9956-ffa450edef68>2002-07-11 15:32:18 +0000
committerrbb <rbb@13f79535-47bb-0310-9956-ffa450edef68>2002-07-11 15:32:18 +0000
commit3d1844504568b1a720bdbb3af029d0ba3449e9b4 (patch)
tree096c17e09bc409ec8b8ca17b5a65dab6ddfec821 /poll/os2
parent8881970ff87866e165a720f22affd678ff3d84ef (diff)
downloadlibapr-3d1844504568b1a720bdbb3af029d0ba3449e9b4.tar.gz
Split the apr_poll() implementation from the accessor functions. This
allows all platforms to use the same implementation for the accessor functions. Submitted by: Brian Havard git-svn-id: http://svn.apache.org/repos/asf/apr/apr/trunk@63611 13f79535-47bb-0310-9956-ffa450edef68
Diffstat (limited to 'poll/os2')
-rwxr-xr-xpoll/os2/Makefile.in3
-rw-r--r--poll/os2/pollacc.c1
2 files changed, 3 insertions, 1 deletions
diff --git a/poll/os2/Makefile.in b/poll/os2/Makefile.in
index 8848b5621..86098162b 100755
--- a/poll/os2/Makefile.in
+++ b/poll/os2/Makefile.in
@@ -2,7 +2,8 @@ srcdir = @srcdir@
VPATH = @srcdir@
TARGETS = \
- poll.lo
+ poll.lo \
+ pollacc.lo
# bring in rules.mk for standard functionality
@INCLUDE_RULES@
diff --git a/poll/os2/pollacc.c b/poll/os2/pollacc.c
new file mode 100644
index 000000000..ac87d0aa1
--- /dev/null
+++ b/poll/os2/pollacc.c
@@ -0,0 +1 @@
+#include "../unix/pollacc.c"