49 lines
1.2 KiB
49 lines
1.2 KiB
/* Copyright (c) 2018 PaddlePaddle Authors. All Rights Reserved.
|
|
|
|
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. */
|
|
|
|
#pragma once
|
|
|
|
#include <pthread.h>
|
|
|
|
#include "paddle/fluid/platform/enforce.h"
|
|
|
|
namespace paddle {
|
|
namespace framework {
|
|
|
|
struct RWLock {
|
|
RWLock() { pthread_rwlock_init(&lock_, nullptr); }
|
|
|
|
~RWLock() { pthread_rwlock_destroy(&lock_); }
|
|
|
|
void RDLock() {
|
|
PADDLE_ENFORCE_EQ(pthread_rwlock_rdlock(&lock_), 0,
|
|
"acquire read lock failed");
|
|
}
|
|
|
|
void WRLock() {
|
|
PADDLE_ENFORCE_EQ(pthread_rwlock_wrlock(&lock_), 0,
|
|
"acquire write lock failed");
|
|
}
|
|
|
|
void UNLock() {
|
|
PADDLE_ENFORCE_EQ(pthread_rwlock_unlock(&lock_), 0, "unlock failed");
|
|
}
|
|
|
|
private:
|
|
pthread_rwlock_t lock_;
|
|
};
|
|
|
|
} // namespace framework
|
|
} // namespace paddle
|