| 1756 | struct QiFunc_mutex_unlock : public QiFunc |
| 1757 | { |
| 1758 | QiFunc_mutex_unlock() : QiFunc(1) {} |
| 1759 | QiVar exec(const std::vector<QiVar>& args, QiScriptInterpreter* inter) const override |
| 1760 | { |
| 1761 | QiScriptInterpreter::mutex_map()->unlock(args[0].toString()); |
| 1762 | return {}; |
| 1763 | } |
| 1764 | }; |