| 901 | } |
| 902 | |
| 903 | ~GlobalPortLock() |
| 904 | { |
| 905 | if (handle != INVALID_HANDLE_VALUE) |
| 906 | { |
| 907 | if (!ReleaseMutex(handle)) |
| 908 | { |
| 909 | system_call_failed::raise("ReleaseMutex"); |
| 910 | } |
| 911 | |
| 912 | CloseHandle(handle); |
| 913 | } |
| 914 | } |
| 915 | |
| 916 | private: |
| 917 | HANDLE handle; |