_get_amblksiz
Gets the current block size used in memory allocations.
errno_t _get_amblksiz( size_t * blockSize );
Parameters
- [out] blockSize
-
The block size will be written to this variable.
The _amblksiz global variable controls the block size used by the memory allocation functions such as malloc. This function provides a secure way of getting access to the value of this variable.
If blockSize is NULL, this function invokes an invalid parameter handler, as described in Parameter Validation. If execution is allowed to continue, this function returns -1 and sets errno to EINVAL.
| Routine | Required header | Compatibility |
|---|---|---|
| _get_amblksiz | <malloc.h> | Windows 95, Windows 98, Windows 98 Second Edition, Windows Millennium Edition, Windows NT 4.0, Windows 2000, Windows XP Home Edition, Windows XP Professional, Windows Server 2003 |
For more compatibility information, see Compatibility in the Introduction.
Not applicable. To call the standard C function, use PInvoke. For more information, see Platform Invoke Examples.