Actions
Feature #5357
open203: All allocated IO-memory should be freed
Status:
New
Priority:
Normal
Assignee:
-
Start date:
10/20/2014
Due date:
% Done:
0%
Estimated time:
Published in build:
Description
The region of memory is allocated by macrofunction request_mem_region(start, n, name), which takes a start of memory region and its size. The allocated memory region is freed by macrofunction release_mem_region(start, n). The rules of correct usage are:
- freeing all allocated regions to avoid a memory leak;
- freeing an allocated memory region only once;
- freeing only allocated memory region;
- allocate a particular memory region only once.
Actions