blob: 9de3382118697fffe0a97037346c4e3e338a5fd6 [file] [log] [blame]
The Android Open Source Projectcbb10112009-03-03 19:31:44 -08001/*
2 * Copyright (C) 2007 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
17#ifndef _LIBS_UTILS_THREADS_H
18#define _LIBS_UTILS_THREADS_H
19
Mathias Agopian2bd99592012-02-25 23:02:14 -080020/*
21 * Please, DO NOT USE!
22 *
23 * This file is here only for legacy reasons. Instead, include directly
24 * the headers you need below.
25 *
26 */
The Android Open Source Projectcbb10112009-03-03 19:31:44 -080027
Mathias Agopian2bd99592012-02-25 23:02:14 -080028#include <utils/AndroidThreads.h>
The Android Open Source Projectcbb10112009-03-03 19:31:44 -080029
30#ifdef __cplusplus
Mathias Agopian2bd99592012-02-25 23:02:14 -080031#include <utils/Condition.h>
The Android Open Source Projectcbb10112009-03-03 19:31:44 -080032#include <utils/Errors.h>
Mathias Agopian2bd99592012-02-25 23:02:14 -080033#include <utils/Mutex.h>
34#include <utils/RWLock.h>
35#include <utils/Thread.h>
Mathias Agopian15554362009-07-12 23:11:20 -070036#endif
The Android Open Source Projectcbb10112009-03-03 19:31:44 -080037
38#endif // _LIBS_UTILS_THREADS_H