| 780 | } |
| 781 | |
| 782 | void |
| 783 | AbstractProcessManager::setPythonVersion(const std::pair<int, int>& version) |
| 784 | { |
| 785 | d_py_v = getCPythonOffsets(version.first, version.second); |
| 786 | // Note: getCPythonOffsets can throw. Don't set these if it does. |
| 787 | d_major = version.first; |
| 788 | d_minor = version.second; |
| 789 | } |
| 790 | |
| 791 | void |
| 792 | AbstractProcessManager::warnIfOffsetsAreMismatched(remote_addr_t runtime_addr) const |
nothing calls this directly
no test coverage detected