📄 mpiu_malloc.tex
字号:
\startmanpage\mantitle{MPIU{\tt \char`\_}Malloc}{tex}{10/7/2002}\manname{MPIU{\tt \char`\_}Malloc}--- Allocate memory \subhead{Synopsis}\startvb\begin{verbatim}void *MPIU_Malloc( size_t len )\end{verbatim}\endvb\subhead{Input Parameter}\startarg{len }{Length of memory to allocate in bytes}\par\subhead{Return Value}Pointer to allocated memory, or null if memory could not be allocated.\par\subhead{Notes}This routine will often be implemented as the simple macro\begin{verbatim} #define MPIU_Malloc(n) malloc(n)\end{verbatim}However, it can also be defined as\begin{verbatim} #define MPIU_Malloc(n) MPIU_trmalloc(n,__FILE__,__LINE__)\end{verbatim}where {\tt MPIU{\tt \char`\_}trmalloc} is a tracing version of {\tt malloc} that is included withMPICH.\par\subhead{Module}Utility\endmanpage
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -