brintos

brintos / llvm-project-archived public Read only

0
0
Text · 241 B · 32d3fee Raw
13 lines · plain
1%extend lldb::SBMutex {2#ifdef SWIGPYTHON3    %pythoncode %{4        def __enter__(self):5            self.lock()6            return self7 8        def __exit__(self, exc_type, exc_value, traceback):9            self.unlock()10    %}11#endif12}13