_set_new_mode

Sets a new handler mode for malloc.

int_set_new_mode(intnewhandlermode**);**

Routine Required Header Compatibility
_set_new_mode <new.h> Win 95, Win NT

For additional compatibility information, see Compatibility in the Introduction.

Libraries

LIBC.LIB Single thread static library, retail version
LIBCMT.LIB Multithread static library, retail version
MSVCRT.LIB Import library for MSVCRT.DLL, retail version

Return Value

_set_new_mode returns the previous handler mode set for malloc. A return value of 1 indicates that, on failure to allocate memory, malloc previously called the new handler routine; a return value of 0 indicates that it did not. If the newhandlermode argument does not equal 0 or 1, _set_new_mode returns –1.

Parameter

newhandlermode

New handler mode for malloc; valid value is 0 or 1

Remarks

The C++ _set_new_mode function sets the new handler mode for malloc. The new handler mode indicates whether, on failure, malloc is to call the new handler routine as set by _set_new_handler. By default, malloc does not call the new handler routine on failure to allocate memory. You can override this default behavior so that, when malloc fails to allocate memory, malloc calls the new handler routine in the same way that the new operator does when it fails for the same reason. For more information, see the new and delete operators in the Language Quick Reference. To override the default, call

_set_new_mode(1)

early in your program, or link with NEWMODE.OBJ.

Memory Allocation Routines

See Also   calloc, free, realloc, _query_new_handler, _query_new_mode