c++ error on start 0xc0000017 (process exited with code -1073741801) with big heap size

462 Views Asked by At

I'm trying to create c++ program in Visual Studio 2019 that can use more than 4Gb of heap size, I created a new "Hello World" solution, selected x64 platform everywhere, and set 4300000000 of Heap Reserve Size in Linker -> System screen of Properties, build succeeded but I can't run program, I'm getting 0xc0000017 error code in separate error window (like this), and "(process 23616) exited with code -1073741801." in console.

With heap size 4200000000 program start and work correctly.

How to create/configure program for using big amount of heap space?

1

There are 1 best solutions below

3
On

I'm trying to create c++ program in Visual Studio 2019 that can use more than 4Gb of heap size

Building your program as x64 is enough. You don't need (or want) those other tricks.