mirror of
https://github.com/nginx/nginx.git
synced 2025-01-10 20:18:29 +08:00
13 lines
214 B
C
13 lines
214 B
C
|
#ifndef _NGX_SHARED_H_INCLUDED_
|
||
|
#define _NGX_SHARED_H_INCLUDED_
|
||
|
|
||
|
|
||
|
#include <ngx_config.h>
|
||
|
#include <ngx_core.h>
|
||
|
|
||
|
|
||
|
void *ngx_create_shared_memory(size_t size, ngx_log_t *log);
|
||
|
|
||
|
|
||
|
#endif /* _NGX_SHARED_H_INCLUDED_ */
|