Please note, this is a STATIC archive of website developer.mozilla.org from 03 Nov 2016, cach3.com does not collect or store any user information, there is no "phishing" involved.

PR_MALLOC

« NSPR API リファレンス « Memory Management Operations

ヒープ領域に指定されたサイズのメモリを確保します。

構文

#include <prmem.h>

void * PR_MALLOC(_bytes);

パラメータ

_bytes
必要とするメモリブロックのサイズ。

戻り値

確保されたメモリ領域への型無しのポインタ、もしくはメモリ確保に失敗した場合は NULL を返します。PR_GetError() を呼ぶことで、libc の関数 malloc() が戻したエラーを取得できます。

解説

このマクロは、要求されたサイズのメモリをヒープ領域に確保します。

ドキュメントのタグと貢献者

 このページの貢献者: Shimono
 最終更新者: Shimono,