c - gdb: Program exited with code 030000000375 -
i teaching myself use gdb , running random tests. may worth mentioning using portable installation of mingw on windows 7 x64. i've created program know results in stack overflow, , run through in gdb first 2 sigsegv signals (no surprise), , exits (again no surprise) code 030000000375.
program received signal sigsegv, segmentation fault. program received signal sigsegv, segmentation fault. program exited code 030000000375. curiosity getting best of me... heck code? googled , found little.
thanks!
update: reference tried same program on ubuntu, , results different:
program received signal sigsegv, segmentation fault. program terminated signal sigsegv, segmentation fault. program no longer exists.
gdb prints out exit code in octal format. not obvious, indicated leading 0.
so 030000000375 0xc00000fd in hex, makes code more common windows programmer.
0xc00000fd status_stack_overflow , should defined in ntstatus.h.
Comments
Post a Comment