upstream nginx-0.7.31
[nginx.git] / nginx / src / os / unix / ngx_shmem.h
1
2 /*
3  * Copyright (C) Igor Sysoev
4  */
5
6
7 #ifndef _NGX_SHMEM_H_INCLUDED_
8 #define _NGX_SHMEM_H_INCLUDED_
9
10
11 #include <ngx_config.h>
12 #include <ngx_core.h>
13
14
15 typedef struct {
16     u_char      *addr;
17     size_t       size;
18     ngx_log_t   *log;
19 } ngx_shm_t;
20
21
22 ngx_int_t ngx_shm_alloc(ngx_shm_t *shm);
23 void ngx_shm_free(ngx_shm_t *shm);
24
25
26 #endif /* _NGX_SHMEM_H_INCLUDED_ */