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 @@ -3299,7 +3299,7 @@ void get_local_address_mac(struct Stacktrace *d) {
3299
3299
printf ("The stack address was not found in any shared library or"
3300
3300
" the main program, the stack is probably corrupted.\n"
3301
3301
"Aborting...\n" );
3302
- abort ( );
3302
+ exit ( 1 );
3303
3303
}
3304
3304
#endif // HAVE_LFORTRAN_MACHO
3305
3305
@@ -3315,7 +3315,7 @@ void get_local_address(struct Stacktrace *d) {
3315
3315
printf ("The stack address was not found in any shared library or"
3316
3316
" the main program, the stack is probably corrupted.\n"
3317
3317
"Aborting...\n" );
3318
- abort ( );
3318
+ exit ( 1 );
3319
3319
}
3320
3320
#else
3321
3321
#ifdef HAVE_LFORTRAN_MACHO
Original file line number Diff line number Diff line change @@ -135,7 +135,7 @@ void get_local_address(StacktraceItem &item)
135
135
// happen if the stacktrace is somehow corrupted. In that case, we simply
136
136
// abort here.
137
137
std::cout << " The stack address was not found in any shared library or the main program, the stack is probably corrupted. Aborting." << std::endl;
138
- abort ( );
138
+ exit ( 1 );
139
139
}
140
140
#else
141
141
#ifdef HAVE_LFORTRAN_MACHO
@@ -179,7 +179,7 @@ void get_local_address(StacktraceItem &item)
179
179
}
180
180
}
181
181
std::cout << " The stack address was not found in any shared library or the main program, the stack is probably corrupted. Aborting." << std::endl;
182
- abort ( );
182
+ exit ( 1 );
183
183
#else
184
184
item.local_pc =0 ;
185
185
#endif // HAVE_LFORTRAN_MACHO
You can’t perform that action at this time.
0 commit comments