| 300 | } |
| 301 | |
| 302 | int ProcessMemoryWindowsProvider::size() const |
| 303 | { |
| 304 | #ifdef _WIN32 |
| 305 | return m_handle ? 0x10000 : 0; |
| 306 | #elif defined(__linux__) |
| 307 | return (m_fd >= 0) ? 0x10000 : 0; |
| 308 | #endif |
| 309 | } |
| 310 | |
| 311 | // ────────────────────────────────────────────────────────────────────────── |
| 312 | // ProcessMemoryWindowsPlugin implementation |
no outgoing calls
no test coverage detected