summaryrefslogtreecommitdiff
path: root/os/unix
diff options
context:
space:
mode:
authorJeff Trawick <trawick@apache.org>2009-03-27 00:05:18 +0000
committerJeff Trawick <trawick@apache.org>2009-03-27 00:05:18 +0000
commitcb8a82faed9782ab3255e473dc46cd60130282ca (patch)
tree67e2e20bf557f7dd8375717cc65b0334f68ed0a0 /os/unix
parentee32468a33d082bf8ea5c804efbee76676ef6d68 (diff)
downloadhttpd-cb8a82faed9782ab3255e473dc46cd60130282ca.tar.gz
remove TPF support
git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@758936 13f79535-47bb-0310-9956-ffa450edef68
Diffstat (limited to 'os/unix')
-rw-r--r--os/unix/unixd.c12
1 files changed, 0 insertions, 12 deletions
diff --git a/os/unix/unixd.c b/os/unix/unixd.c
index 91263d9fd3..1eb43732a0 100644
--- a/os/unix/unixd.c
+++ b/os/unix/unixd.c
@@ -415,17 +415,6 @@ AP_DECLARE(apr_status_t) ap_unixd_accept(void **accepted, ap_listen_rec *lr,
return APR_EGENERAL;
#endif /*ENETDOWN*/
-#ifdef TPF
- case EINACT:
- ap_log_error(APLOG_MARK, APLOG_EMERG, status, ap_server_conf,
- "offload device inactive");
- return APR_EGENERAL;
- break;
- default:
- ap_log_error(APLOG_MARK, APLOG_ERR, 0, ap_server_conf,
- "select/accept error (%d)", status);
- return APR_EGENERAL;
-#else
default:
#ifdef _OSD_POSIX /* Possibly on other platforms too */
/* If the socket has been closed in ap_close_listeners()
@@ -438,7 +427,6 @@ AP_DECLARE(apr_status_t) ap_unixd_accept(void **accepted, ap_listen_rec *lr,
ap_log_error(APLOG_MARK, APLOG_ERR, status, ap_server_conf,
"apr_socket_accept: (client socket)");
return APR_EGENERAL;
-#endif
}
return status;
}