Ada Programming/Libraries/System.Storage_Pools.Subpools
Appearance
This language feature has been introduced in Ada 2012.
System.Storage_Pools.Subpools is a unit of the Predefined Language Environment since Ada 2012.
Specification
[edit | edit source]-- Standard Ada library specification -- Copyright (c) 2004-2016 AXE Consultants -- Copyright (c) 2004, 2005, 2006 Ada-Europe -- Copyright (c) 2000 The MITRE Corporation, Inc. -- Copyright (c) 1992, 1993, 1994, 1995 Intermetrics, Inc. -- SPDX-License-Identifier: BSD-3-Clause and LicenseRef-AdaReferenceManual -- -------------------------------------------------------------------------package
System.Storage_Pools.Subpoolsis
pragma
Preelaborate (Subpools);type
Root_Storage_Pool_With_Subpoolsis
abstract
new
Root_Storage_Poolwith
private
;type
Root_Subpoolis
abstract
tagged
limited
private
;type
Subpool_Handleis
access
all
Root_Subpool'Class;for
Subpool_Handle'Storage_Sizeuse
0;function
Create_Subpool (Pool :in
out
Root_Storage_Pool_With_Subpools)return
not
null
Subpool_Handleis
abstract
; -- The following operations are intended for pool implementers:function
Pool_of_Subpool (Subpool :not
null
Subpool_Handle)return
access
Root_Storage_Pool_With_Subpools'Class;procedure
Set_Pool_of_Subpool ( Subpool :in
not
null
Subpool_Handle; To :in
out
Root_Storage_Pool_With_Subpools'Class);procedure
Allocate_From_Subpool ( Pool :in
out
Root_Storage_Pool_With_Subpools; Storage_Address :out
Address; Size_In_Storage_Elements :in
Storage_Elements.Storage_Count; Alignment :in
Storage_Elements.Storage_Count; Subpool :in
not
null
Subpool_Handle)is
abstract
with
Pre => 'Class => Pool_of_Subpool(Subpool) = Pool'Access;procedure
Deallocate_Subpool ( Pool :in
out
Root_Storage_Pool_With_Subpools; Subpool :in
out
Subpool_Handle)is
abstract
with
Pre => 'Class => Pool_of_Subpool(Subpool) = Pool'Access;function
Default_Subpool_for_Pool ( Pool :in
out
Root_Storage_Pool_With_Subpools)return
not
null
Subpool_Handle;overriding
procedure
Allocate ( Pool :in
out
Root_Storage_Pool_With_Subpools; Storage_Address :out
Address; Size_In_Storage_Elements :in
Storage_Elements.Storage_Count; Alignment :in
Storage_Elements.Storage_Count);overriding
procedure
Deallocate ( Pool :in
out
Root_Storage_Pool_With_Subpools; Storage_Address :in
Address; Size_In_Storage_Elements :in
Storage_Elements.Storage_Count; Alignment :in
Storage_Elements.Storage_Count)is
null
;overriding
function
Storage_Size (Pool : Root_Storage_Pool_With_Subpools)return
Storage_Elements.Storage_Countis
(Storage_Elements.Storage_Count'Last);private
-- not specified by the languageend
System.Storage_Pools.Subpools;
See also
[edit | edit source]Wikibook
[edit | edit source]External examples
[edit source]- Search for examples of
System.Storage_Pools.Subpools
in: Rosetta Code, GitHub (gists), any Alire crate or this Wikibook. - Search for posts related to
System.Storage_Pools.Subpools
in: Stack Overflow, comp.lang.ada or any Ada related page.
Ada Reference Manual
[edit | edit source]Ada 2012
[edit | edit source]Open-Source Implementations
[edit | edit source]FSF GNAT
- Specification: s-stposu.ads
- Body: s-stposu.adb
drake
- Specification: s-stposu.ads
- Body: s-stposu.adb