nginx 0.1.9
[nginx-catap.git] / src / os / unix / ngx_alloc.h
blob66562a1914b8dba8ba8edbd6074bba6e0a25544c
2 /*
3 * Copyright (C) Igor Sysoev
4 */
7 #ifndef _NGX_ALLOC_H_INCLUDED_
8 #define _NGX_ALLOC_H_INCLUDED_
11 #include <ngx_config.h>
12 #include <ngx_core.h>
15 void *ngx_alloc(size_t size, ngx_log_t *log);
16 void *ngx_calloc(size_t size, ngx_log_t *log);
18 #define ngx_free free
22 * Linux has memalign() or posix_memalign()
23 * Solaris has memalign()
24 * FreeBSD has not memalign() or posix_memalign() but its malloc() alignes
25 * allocations bigger than page size at the page boundary.
28 #if (NGX_HAVE_POSIX_MEMALIGN || NGX_HAVE_MEMALIGN)
30 void *ngx_memalign(size_t alignment, size_t size, ngx_log_t *log);
32 #else
34 #define ngx_memalign(alignment, size, log) ngx_alloc(size, log)
36 #endif
39 extern int ngx_pagesize;
42 #endif /* _NGX_ALLOC_H_INCLUDED_ */