Skip to main content

Struct AllocationInfo

A collection of device memory-allocation statistics

Assembly: Meadow.Contracts.dll
View Source
Declaration
public struct AllocationInfo

Properties

Arena

This is the total size of memory allocated for use by malloc in bytes.

View Source
Declaration
public int Arena { readonly get; set; }

FreeBlocks

This is the number of free (not in use) chunks

View Source
Declaration
public int FreeBlocks { readonly get; set; }

LargestFreeBlock

Size of the largest free (not in use) chunk

View Source
Declaration
public int LargestFreeBlock { readonly get; set; }

TotalAllocated

This is the total size of memory occupied by chunks handed out by malloc.

View Source
Declaration
public int TotalAllocated { readonly get; set; }

TotalFree

This is the total size of memory occupied by free (not in use) chunks.

View Source
Declaration
public int TotalFree { readonly get; set; }