(entry)
| 291 | } |
| 292 | |
| 293 | function touchEntry(entry) { |
| 294 | if (!entry) return; |
| 295 | const now = Date.now(); |
| 296 | entry.lastUsedAt = now; |
| 297 | entry._evictAt = now; |
| 298 | } |
| 299 | |
| 300 | function markIntentionalShutdown(entryOrProc) { |
| 301 | const proc = entryOrProc?.process || entryOrProc; |
no outgoing calls
no test coverage detected