| 1782 | } |
| 1783 | |
| 1784 | void TFE_Py_TapeVariableAccessed(PyObject* variable) { |
| 1785 | if (*ThreadTapeIsStopped()) { |
| 1786 | return; |
| 1787 | } |
| 1788 | for (TFE_Py_Tape* tape : SafeTapeSet()) { |
| 1789 | tape->tape->VariableAccessed(variable); |
| 1790 | } |
| 1791 | } |
| 1792 | |
| 1793 | void TFE_Py_TapeWatchVariable(PyObject* tape, PyObject* variable) { |
| 1794 | if (*ThreadTapeIsStopped()) { |
no test coverage detected