** Returns true if there is a shared memory entry for the specified filename, ** and false otherwise. */
| 684 | ** and false otherwise. |
| 685 | */ |
| 686 | bool vfsAsyncIsOpen(std::string filename) { |
| 687 | return SharedMemoryInfo::table.count(abspath(filename)) > 0; |
| 688 | } |
| 689 | |
| 690 | /* |
| 691 | ** The following four VFS methods: |
no test coverage detected