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