| 625 | |
| 626 | #if !TARGET_OS_EXCLAVEKIT |
| 627 | static void closeSplitCacheFiles(CacheInfo infoArray[16], uint32_t numFiles) { |
| 628 | for ( unsigned i = 0; i < numFiles; ++i ) { |
| 629 | int subCachefd = infoArray[i].fd; |
| 630 | if ( subCachefd != -1 ) |
| 631 | ::close(subCachefd); |
| 632 | } |
| 633 | } |
| 634 | #endif // !TARGET_OS_EXCLAVEKIT |
| 635 | |
| 636 |
no test coverage detected