| 215 | return NULL; |
| 216 | } |
| 217 | static const char *cachefilemmap(cmd_parms *cmd, void *dummy, const char *filename) |
| 218 | { |
| 219 | #if APR_HAS_MMAP |
| 220 | cache_the_file(cmd, filename, 1); |
| 221 | #else |
| 222 | /* MMAP not supported by this OS */ |
| 223 | ap_log_error(APLOG_MARK, APLOG_WARNING, 0, cmd->server, APLOGNO(00801) |
| 224 | "unable to cache file: %s. MMAP is not supported by this OS", filename); |
| 225 | #endif |
| 226 | return NULL; |
| 227 | } |
| 228 | |
| 229 | static int file_cache_post_config(apr_pool_t *p, apr_pool_t *plog, |
| 230 | apr_pool_t *ptemp, server_rec *s) |
nothing calls this directly
no test coverage detected