#include "src/pthread/pthread_rwlock_destroy.h"
#include "src/__support/common.h"
#include "src/__support/macros/config.h"
#include "src/__support/threads/linux/rwlock.h"
#include <errno.h>
#include <pthread.h>
namespace LIBC_NAMESPACE_DECL {
LLVM_LIBC_FUNCTION(int, pthread_rwlock_destroy, (pthread_rwlock_t * rwlock)) {
if (!rwlock)
return EINVAL;
auto *rw = reinterpret_cast<RwLock *>(rwlock);
RwLock::LockResult res = rw->check_for_destroy();
if (res == RwLock::LockResult::Success)
rw->~RwLock();
return static_cast<int>(res);
}
}