MCPcopy Create free account
hub / github.com/Meituan-Dianping/SQLAdvisor / my_print_open_files

Function my_print_open_files

mysys/my_open.c:234–248  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

232#ifdef EXTRA_DEBUG
233
234void my_print_open_files(void)
235{
236 if (my_file_opened | my_stream_opened)
237 {
238 uint i;
239 for (i= 0 ; i < my_file_limit ; i++)
240 {
241 if (my_file_info[i].type != UNOPEN)
242 {
243 fprintf(stderr, EE(EE_FILE_NOT_CLOSED), my_file_info[i].name, i);
244 fputc('\n', stderr);
245 }
246 }
247 }
248}
249
250#endif

Callers 1

my_endFunction · 0.85

Calls

no outgoing calls

Tested by

no test coverage detected