MCPcopy Create free account
hub / github.com/FirebirdSQL/firebird / CPR_exit

Function CPR_exit

src/gpre/gpre.cpp:962–981  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

960//
961
962void CPR_exit( int stat)
963{
964#ifdef LINUX
965
966 if (trace_file_name[0])
967 {
968 if (trace_file)
969 fclose(trace_file);
970 unlink(trace_file_name);
971 }
972
973#else
974 if (trace_file)
975 fclose(trace_file);
976 if (trace_file_name[0])
977 unlink(trace_file_name);
978#endif
979
980 exit(stat);
981}
982
983
984//____________________________________________________________

Callers 2

mainFunction · 0.85
MET_get_primary_keyFunction · 0.85

Calls 2

fcloseFunction · 0.85
unlinkFunction · 0.50

Tested by

no test coverage detected