2004-09-28 16:34:51 +08:00
|
|
|
|
|
|
|
/*
|
2004-09-30 00:00:49 +08:00
|
|
|
* Copyright (C) Igor Sysoev
|
2012-01-18 23:07:43 +08:00
|
|
|
* Copyright (C) Nginx, Inc.
|
2004-09-28 16:34:51 +08:00
|
|
|
*/
|
|
|
|
|
|
|
|
|
2004-06-17 03:36:07 +08:00
|
|
|
#ifndef _NGX_SLAB_H_INCLUDED_
|
|
|
|
#define _NGX_SLAB_H_INCLUDED_
|
|
|
|
|
|
|
|
|
|
|
|
#include <ngx_config.h>
|
|
|
|
#include <ngx_core.h>
|
|
|
|
|
|
|
|
|
2006-11-20 16:51:45 +08:00
|
|
|
typedef struct ngx_slab_page_s ngx_slab_page_t;
|
2004-06-17 03:36:07 +08:00
|
|
|
|
2006-11-20 16:51:45 +08:00
|
|
|
struct ngx_slab_page_s {
|
|
|
|
uintptr_t slab;
|
|
|
|
ngx_slab_page_t *next;
|
|
|
|
uintptr_t prev;
|
2004-06-17 03:36:07 +08:00
|
|
|
};
|
|
|
|
|
|
|
|
|
|
|
|
typedef struct {
|
2011-11-23 21:55:38 +08:00
|
|
|
ngx_shmtx_sh_t lock;
|
2006-11-20 16:51:45 +08:00
|
|
|
|
|
|
|
size_t min_size;
|
|
|
|
size_t min_shift;
|
2004-06-17 03:36:07 +08:00
|
|
|
|
2006-11-20 16:51:45 +08:00
|
|
|
ngx_slab_page_t *pages;
|
|
|
|
ngx_slab_page_t free;
|
2004-06-17 03:36:07 +08:00
|
|
|
|
2006-11-20 16:51:45 +08:00
|
|
|
u_char *start;
|
|
|
|
u_char *end;
|
|
|
|
|
|
|
|
ngx_shmtx_t mutex;
|
2009-03-28 01:00:42 +08:00
|
|
|
|
|
|
|
u_char *log_ctx;
|
|
|
|
u_char zero;
|
2009-04-19 03:27:28 +08:00
|
|
|
|
2014-04-01 01:38:30 +08:00
|
|
|
unsigned log_nomem:1;
|
|
|
|
|
2009-04-19 03:27:28 +08:00
|
|
|
void *data;
|
2009-06-02 21:57:59 +08:00
|
|
|
void *addr;
|
2004-06-17 03:36:07 +08:00
|
|
|
} ngx_slab_pool_t;
|
|
|
|
|
|
|
|
|
2006-11-20 16:51:45 +08:00
|
|
|
void ngx_slab_init(ngx_slab_pool_t *pool);
|
|
|
|
void *ngx_slab_alloc(ngx_slab_pool_t *pool, size_t size);
|
2007-01-03 07:10:42 +08:00
|
|
|
void *ngx_slab_alloc_locked(ngx_slab_pool_t *pool, size_t size);
|
2006-11-20 16:51:45 +08:00
|
|
|
void ngx_slab_free(ngx_slab_pool_t *pool, void *p);
|
2007-01-03 07:10:42 +08:00
|
|
|
void ngx_slab_free_locked(ngx_slab_pool_t *pool, void *p);
|
2006-11-20 16:51:45 +08:00
|
|
|
|
|
|
|
|
2004-06-17 03:36:07 +08:00
|
|
|
#endif /* _NGX_SLAB_H_INCLUDED_ */
|