Cygwin Exception : open stack dump file
问题 I am developing in C language a linux command interpreter on windows 7, using Cygwin. My code was compiling and running correctly, until I get this error: cygwin_exception::open_stackdumpfile:Dumping stack trace to jstack dump 回答1: I find that I get this error when I try passing a value into a function when the funtion is expecting a pointer. For example: int arr[] = {1, 2, 3}; int i = 3; memmove(i, arr, 3); This code will get a cygwin_exception::open_stackdumpfile because you are passing int