summaryrefslogtreecommitdiff
path: root/file_io/os2
diff options
context:
space:
mode:
authorbjh <bjh@13f79535-47bb-0310-9956-ffa450edef68>2010-03-30 11:31:54 +0000
committerbjh <bjh@13f79535-47bb-0310-9956-ffa450edef68>2010-03-30 11:31:54 +0000
commit2acc05d1c922ee4cf0bb80967c54764fb75e181e (patch)
treed7e0ab103f84b8ce01be384d74f4b8556a261b62 /file_io/os2
parent9e8a1e4bf342f99d1e17bb990750cf435003fffb (diff)
downloadlibapr-2acc05d1c922ee4cf0bb80967c54764fb75e181e.tar.gz
OS/2: Add ENOTIMPL stubs for apr_file_rotating_*(). Can't reasonably implement
as OS/2 file systems don't allow renaming open files. git-svn-id: http://svn.apache.org/repos/asf/apr/apr/trunk@929093 13f79535-47bb-0310-9956-ffa450edef68
Diffstat (limited to 'file_io/os2')
-rw-r--r--file_io/os2/readwrite.c14
1 files changed, 14 insertions, 0 deletions
diff --git a/file_io/os2/readwrite.c b/file_io/os2/readwrite.c
index e8347dff4..28e672c39 100644
--- a/file_io/os2/readwrite.c
+++ b/file_io/os2/readwrite.c
@@ -407,3 +407,17 @@ apr_status_t apr_file_check_read(apr_file_t *fd)
return APR_FROM_OS_ERROR(rc);
}
+
+
+
+APR_DECLARE(apr_status_t) apr_file_rotating_check(apr_file_t *thefile)
+{
+ return APR_ENOTIMPL;
+}
+
+
+
+APR_DECLARE(apr_status_t) apr_file_rotating_manual_check(apr_file_t *thefile, apr_time_t n)
+{
+ return APR_ENOTIMPL;
+}