summaryrefslogtreecommitdiffstats
path: root/usr.sbin/nginx/src/os/unix/ngx_shmem.h
diff options
context:
space:
mode:
authorrobert <robert@openbsd.org>2014-08-26 19:35:31 +0000
committerrobert <robert@openbsd.org>2014-08-26 19:35:31 +0000
commitc11519ffeda73deab560cc100658d89d70c26934 (patch)
tree5d718501b01d61c85227fde68121a14d950853c8 /usr.sbin/nginx/src/os/unix/ngx_shmem.h
parentusr.sbin (diff)
downloadwireguard-openbsd-c11519ffeda73deab560cc100658d89d70c26934.tar.xz
wireguard-openbsd-c11519ffeda73deab560cc100658d89d70c26934.zip
remove nginx from the base system in favor of OpenBSD's own httpd(8)
Diffstat (limited to 'usr.sbin/nginx/src/os/unix/ngx_shmem.h')
-rw-r--r--usr.sbin/nginx/src/os/unix/ngx_shmem.h29
1 files changed, 0 insertions, 29 deletions
diff --git a/usr.sbin/nginx/src/os/unix/ngx_shmem.h b/usr.sbin/nginx/src/os/unix/ngx_shmem.h
deleted file mode 100644
index 566a7d3300b..00000000000
--- a/usr.sbin/nginx/src/os/unix/ngx_shmem.h
+++ /dev/null
@@ -1,29 +0,0 @@
-
-/*
- * Copyright (C) Igor Sysoev
- * Copyright (C) Nginx, Inc.
- */
-
-
-#ifndef _NGX_SHMEM_H_INCLUDED_
-#define _NGX_SHMEM_H_INCLUDED_
-
-
-#include <ngx_config.h>
-#include <ngx_core.h>
-
-
-typedef struct {
- u_char *addr;
- size_t size;
- ngx_str_t name;
- ngx_log_t *log;
- ngx_uint_t exists; /* unsigned exists:1; */
-} ngx_shm_t;
-
-
-ngx_int_t ngx_shm_alloc(ngx_shm_t *shm);
-void ngx_shm_free(ngx_shm_t *shm);
-
-
-#endif /* _NGX_SHMEM_H_INCLUDED_ */