مشاركة عبر


_get_amblksiz

Gets the current block size used in memory allocations.

errno_t _get_amblksiz( 
   size_t * blockSize 
);

Parámetros

  • [out] blockSize
    The block size will be written to this variable.

Valor devuelto

Zero if successful; an error code on failure.

Comentarios

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.

Requisitos

Routine

Required header

_get_amblksiz

<malloc.h>

For more compatibility information, see Compatibility in the Introduction.

Equivalente en .NET Framework

Not applicable. To call the standard C function, use PInvoke. For more information, see Platform Invoke Examples.

Vea también

Referencia

_amblksiz

_set_amblksiz