blob: e27a87b85e77d1855e538f19bb145005e600f3b3 [file] [log] [blame]
Irina Tirdeaeac9eb42012-09-08 09:28:30 +03001/*
2 * Copyright (C) 2012 The Android Open Source Project
3 *
4 * Licensed under the Apache License, Version 2.0 (the "License");
5 * you may not use this file except in compliance with the License.
6 * You may obtain a copy of the License at
7 *
8 * http://www.apache.org/licenses/LICENSE-2.0
9 *
10 * Unless required by applicable law or agreed to in writing, software
11 * distributed under the License is distributed on an "AS IS" BASIS,
12 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13 * See the License for the specific language governing permissions and
14 * limitations under the License.
15 */
16
Elliott Hughes64f8e7b2018-09-20 13:27:41 -070017#pragma once
Irina Tirdeaeac9eb42012-09-08 09:28:30 +030018
Elliott Hughes6b3f49a2013-03-06 16:20:55 -080019#define _REENTRANT
20
Irina Tirdeaeac9eb42012-09-08 09:28:30 +030021#include <pthread.h>
22#include <signal.h>
23
Elliott Hughes6b3f49a2013-03-06 16:20:55 -080024//
Elliott Hughes64f8e7b2018-09-20 13:27:41 -070025// Map NetBSD libc internal locking onto regular pthread locking.
Elliott Hughes6b3f49a2013-03-06 16:20:55 -080026//
27
28#define MUTEX_INITIALIZER PTHREAD_MUTEX_INITIALIZER
29#define mutex_t pthread_mutex_t
Elliott Hughes205c7882014-03-13 16:17:43 -070030#define mutex_lock(x) pthread_mutex_lock(x)
31#define mutex_unlock(x) pthread_mutex_unlock(x)