diff options
Diffstat (limited to '')
-rw-r--r-- | src/nxt_job_cache_file.c | 24 |
1 files changed, 24 insertions, 0 deletions
diff --git a/src/nxt_job_cache_file.c b/src/nxt_job_cache_file.c new file mode 100644 index 00000000..786691f6 --- /dev/null +++ b/src/nxt_job_cache_file.c @@ -0,0 +1,24 @@ + +/* + * Copyright (C) Igor Sysoev + * Copyright (C) NGINX, Inc. + */ + + +#include <nxt_main.h> + + +nxt_job_cache_file_t * +nxt_job_cache_file_create(nxt_mem_pool_t *mp) +{ + nxt_job_cache_file_t *jbc; + + jbc = nxt_job_create(mp, sizeof(nxt_job_cache_file_t)); + + if (nxt_fast_path(jbc != NULL)) { + jbc->file.fd = NXT_FILE_INVALID; + jbc->read_required = nxt_job_file_read_required; + } + + return jbc; +} |