Nginx 원본 을 위 한 ngxalloc. c 첨가 ngxrealloc 와 ngxprealloc 방법
필요:
Nginx 소스 코드 에 ngx 가 제공 되 지 않 았 기 때 문 입 니 다.realloc 와 ngxprealloc 방법 은 2011 년 10 월 에 Tengine (타 오 바 오 판 Nginx) 소스 코드 에 이 두 가지 방법의 실현 에 기 여 했 습 니 다.
해결 방안:
솔 루 션 을 소개 하기 전에 realloc 의 기능 정 의 를 소개 해 야 합 니 다.
Linux 에서 man realloc 의 결과 에 따 르 면
DESCRIPTION
realloc() changes the size of the memory block pointed to by ptr to size bytes. The contents will be unchanged to the minimum of the old and new sizes; newly allocated memory will be uninitialized. If ptr is NULL, the call is equivalent to malloc(size); if size is equal to zero, the call is equivalent to free(ptr). Unless ptr is NULL, it must have been returned by an earlier call to malloc(), calloc() or realloc(). If the area pointed to was moved, a free(ptr) is done.
RETURN VALUE
realloc() returns a pointer to the newly allocated memory, which is suitably aligned for any kind of variable and may be different from ptr, or NULL if the request fails. If size was equal to 0, either NULL or a pointer suitable to be passed to free() is returned. If realloc() fails the original block is left untouched; it is not freed or moved.
다음 소개 코드 구현:
// ngx_realloc
// new , C realloc p ,
// null nginx , debug nginx debug
void *
ngx_realloc(void *p, size_t size, ngx_log_t *log)
{
void *new;
new = realloc(p, size);
if (new == NULL) {
ngx_log_error(NGX_LOG_EMERG, log, ngx_errno,
"realloc(%p:%uz) failed", p, size);
}
ngx_log_debug2(NGX_LOG_DEBUG_ALLOC, log, 0, "realloc: %p:%uz", new, size);
return new;
}
// ngx_prealloc 코드 구현 및 분석
void *
ngx_prealloc(ngx_pool_t *pool, void *p, size_t old_size, size_t new_size)
{
void *new;
// p , pool
if (p == NULL) {
return ngx_palloc(pool, new_size);
}
// 0, pool ,
// , pool d.last ;
// , ngx_pfree pool ;
// null。
if (new_size == 0) {
if ((u_char *) p + old_size == pool->d.last) {
pool->d.last = p;
} else {
ngx_pfree(pool, p);
}
return NULL;
}
// pool , pool
// , pool d.last
// 。
if ((u_char *) p + old_size == pool->d.last
&& (u_char *) p + new_size <= pool->d.end)
{
pool->d.last = (u_char *) p + new_size;
return p;
}
// , ngx_palloc pool
// , ,
// , 。
new = ngx_palloc(pool, new_size);
if (new == NULL) {
return NULL;
}
ngx_memcpy(new, p, old_size);
ngx_pfree(pool, p);
return new;
}
ok, 모두 소개 완료.
이 내용에 흥미가 있습니까?
현재 기사가 여러분의 문제를 해결하지 못하는 경우 AI 엔진은 머신러닝 분석(스마트 모델이 방금 만들어져 부정확한 경우가 있을 수 있음)을 통해 가장 유사한 기사를 추천합니다:
간단! Certbot을 사용하여 웹 사이트를 SSL(HTTPS)화하는 방법초보자가 인프라 주위를 정돈하는 것은 매우 어렵습니다. 이번은 사이트를 간단하게 SSL화(HTTP에서 HTTPS통신)로 변경하는 방법을 소개합니다! 이번에는 소프트웨어 시스템 Nginx CentOS7 의 환경에서 S...
텍스트를 자유롭게 공유하거나 복사할 수 있습니다.하지만 이 문서의 URL은 참조 URL로 남겨 두십시오.
CC BY-SA 2.5, CC BY-SA 3.0 및 CC BY-SA 4.0에 따라 라이센스가 부여됩니다.