Sha256: c3fbacc4b19bafb5969f3fe64b71e2e36e01e67947a6f8b331bda9f7ffaec493
Contents?: true
Size: 1.04 KB
Versions: 3
Compression:
Stored size: 1.04 KB
Contents
/* * Copyright 2019-present MongoDB, Inc. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. */ #include "../mongocrypt-mutex-private.h" #ifdef _WIN32 void _mongocrypt_mutex_init(mongocrypt_mutex_t *mutex) { InitializeCriticalSection(mutex); } void _mongocrypt_mutex_cleanup(mongocrypt_mutex_t *mutex) { DeleteCriticalSection(mutex); } void _mongocrypt_mutex_lock(mongocrypt_mutex_t *mutex) { EnterCriticalSection(mutex); } void _mongocrypt_mutex_unlock(mongocrypt_mutex_t *mutex) { LeaveCriticalSection(mutex); } #endif /* _WIN32 */
Version data entries
3 entries across 3 versions & 1 rubygems