Function 関数

NSZoneFree

Deallocates a block of memory in the specified zone. 指定されたゾーンの中のあるブロックのメモリをデアロケートします。

Declaration 宣言

void NSZoneFree(NSZone *zone, void *ptr);

Discussion 議論

Returns memory to the zone from which it was allocated. The standard C function free does the same, but spends time finding which zone the memory belongs to. メモリを、それからそれがアロケートされたzoneに戻します。標準C関数freeは同じことをします、しかしメモリが属しているのはどのゾーンか見つける時間を費やします。

See Also 参照

Managing Zones ゾーンを管理する