File tree Expand file tree Collapse file tree 2 files changed +4
-4
lines changed Expand file tree Collapse file tree 2 files changed +4
-4
lines changed Original file line number Diff line number Diff line change @@ -2681,7 +2681,7 @@ void get_local_address_mac(struct Stacktrace *d) {
2681
2681
printf ("The stack address was not found in any shared library or"
2682
2682
" the main program, the stack is probably corrupted.\n"
2683
2683
"Aborting...\n" );
2684
- abort ( );
2684
+ exit ( 1 );
2685
2685
}
2686
2686
#endif // HAVE_LFORTRAN_MACHO
2687
2687
@@ -2697,7 +2697,7 @@ void get_local_address(struct Stacktrace *d) {
2697
2697
printf ("The stack address was not found in any shared library or"
2698
2698
" the main program, the stack is probably corrupted.\n"
2699
2699
"Aborting...\n" );
2700
- abort ( );
2700
+ exit ( 1 );
2701
2701
}
2702
2702
#else
2703
2703
#ifdef HAVE_LFORTRAN_MACHO
Original file line number Diff line number Diff line change @@ -139,7 +139,7 @@ void get_local_address(StacktraceItem &item)
139
139
// happen if the stacktrace is somehow corrupted. In that case, we simply
140
140
// abort here.
141
141
std::cout << " The stack address was not found in any shared library or the main program, the stack is probably corrupted. Aborting." << std::endl;
142
- abort ( );
142
+ exit ( 1 );
143
143
}
144
144
#else
145
145
#ifdef HAVE_LFORTRAN_MACHO
@@ -183,7 +183,7 @@ void get_local_address(StacktraceItem &item)
183
183
}
184
184
}
185
185
std::cout << " The stack address was not found in any shared library or the main program, the stack is probably corrupted. Aborting." << std::endl;
186
- abort ( );
186
+ exit ( 1 );
187
187
#else
188
188
item.local_pc =0 ;
189
189
#endif // HAVE_LFORTRAN_MACHO
You can’t perform that action at this time.
0 commit comments