あることをご存知でしたら、その目的を教えていただけますか? そうでない場合は、そう言ってください:)ありがとう。
Signature : void * malloc(unsigned long size, struct malloc_type type, int flags);
例えば。他のフラグは...
M_ZERO
Causes the allocated memory to be set to all zeros.
M_WAITOK
Indicates that it is OK to wait for resources. If the request
cannot be immediately fulfilled, the current process is put to
sleep to wait for resources to be released by other processes.
The malloc(), realloc(), and reallocf() functions cannot return
NULL if M_WAITOK is specified.**
これが私の混乱の根源です
編集:
M_FAST の説明は、以下の私の回答で行われます。