mirror of
https://github.com/gnustep/libs-base.git
synced 2025-05-30 08:21:25 +00:00
Memory allocation functions now implemented.
git-svn-id: svn+ssh://svn.gna.org/svn/gnustep/libs/base/trunk@1602 72102866-910b-0410-8b05-ffd578937521
This commit is contained in:
parent
8cbcf00784
commit
3e6dbb0d90
1 changed files with 3 additions and 7 deletions
10
STATUS
10
STATUS
|
@ -176,16 +176,16 @@ Functions
|
||||||
Memory Allocation Functions
|
Memory Allocation Functions
|
||||||
---------------------------
|
---------------------------
|
||||||
|
|
||||||
[0] Get the Virtual Memory Page Size
|
[8] Get the Virtual Memory Page Size
|
||||||
`unsigned NSPageSize (void)'
|
`unsigned NSPageSize (void)'
|
||||||
`unsigned NSLogPageSize (void)'
|
`unsigned NSLogPageSize (void)'
|
||||||
`unsigned NSRoundDownToMultipleOfPageSize (unsigned BYTECOUNT)'
|
`unsigned NSRoundDownToMultipleOfPageSize (unsigned BYTECOUNT)'
|
||||||
`unsigned NSRoundUpToMultipleOfPageSize (unsigned BYTECOUNT)'
|
`unsigned NSRoundUpToMultipleOfPageSize (unsigned BYTECOUNT)'
|
||||||
|
|
||||||
[0] Get the Amount of Real Memory
|
[2] Get the Amount of Real Memory
|
||||||
`unsigned NSRealMemoryAvailable (void)'
|
`unsigned NSRealMemoryAvailable (void)'
|
||||||
|
|
||||||
[0] Allocate or Free Virtual Memory
|
[8] Allocate or Free Virtual Memory
|
||||||
`void *NSAllocateMemoryPages (unsigned BYTECOUNT)'
|
`void *NSAllocateMemoryPages (unsigned BYTECOUNT)'
|
||||||
`void NSDeallocateMemoryPages (void *POINTER, unsigned BYTECOUNT)'
|
`void NSDeallocateMemoryPages (void *POINTER, unsigned BYTECOUNT)'
|
||||||
`void NSCopyMemoryPages (const void *SOURCE, void *DESTINATION, unsigned BYTECOUNT)'
|
`void NSCopyMemoryPages (const void *SOURCE, void *DESTINATION, unsigned BYTECOUNT)'
|
||||||
|
@ -322,8 +322,6 @@ Hash Table Functions
|
||||||
--------------------
|
--------------------
|
||||||
|
|
||||||
[8]
|
[8]
|
||||||
NSHashTable functions have been implemented by Albin Jones.
|
|
||||||
However, integrating the code is not necessarily trivial
|
|
||||||
|
|
||||||
Create a Table
|
Create a Table
|
||||||
`NSHashTable * NSCreateHashTable(NSHashTableCallBacks CALLBACKS, unsigned CAPACITY)'
|
`NSHashTable * NSCreateHashTable(NSHashTableCallBacks CALLBACKS, unsigned CAPACITY)'
|
||||||
|
@ -360,8 +358,6 @@ Map Table Functions
|
||||||
-------------------
|
-------------------
|
||||||
|
|
||||||
[8]
|
[8]
|
||||||
NSMapTable functions have been implemented by Albin Jones.
|
|
||||||
However, integrating the code is not necessarily trivial
|
|
||||||
|
|
||||||
Create a Table
|
Create a Table
|
||||||
`NSMapTable * NSCreateMapTable(NSMapTableKeyCallBacks KEYCALLBACKS, NSMapTableValueCallBacks VALUECALLBACKS, unsigned CAPACITY)'
|
`NSMapTable * NSCreateMapTable(NSMapTableKeyCallBacks KEYCALLBACKS, NSMapTableValueCallBacks VALUECALLBACKS, unsigned CAPACITY)'
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue