The Android Open Source Project | edbf3b6 | 2009-03-03 19:31:44 -0800 | [diff] [blame] | 1 | /* |
| 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 Agopian | f91bb05 | 2012-02-25 23:02:14 -0800 | [diff] [blame] | 20 | /* |
| 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 Project | edbf3b6 | 2009-03-03 19:31:44 -0800 | [diff] [blame] | 27 | |
Mathias Agopian | f91bb05 | 2012-02-25 23:02:14 -0800 | [diff] [blame] | 28 | #include <utils/AndroidThreads.h> |
The Android Open Source Project | edbf3b6 | 2009-03-03 19:31:44 -0800 | [diff] [blame] | 29 | |
| 30 | #ifdef __cplusplus |
Mathias Agopian | f91bb05 | 2012-02-25 23:02:14 -0800 | [diff] [blame] | 31 | #include <utils/Condition.h> |
The Android Open Source Project | edbf3b6 | 2009-03-03 19:31:44 -0800 | [diff] [blame] | 32 | #include <utils/Errors.h> |
Mathias Agopian | f91bb05 | 2012-02-25 23:02:14 -0800 | [diff] [blame] | 33 | #include <utils/Mutex.h> |
| 34 | #include <utils/RWLock.h> |
| 35 | #include <utils/Thread.h> |
Mathias Agopian | ec0f1f6 | 2009-07-12 23:11:20 -0700 | [diff] [blame] | 36 | #endif |
The Android Open Source Project | edbf3b6 | 2009-03-03 19:31:44 -0800 | [diff] [blame] | 37 | |
| 38 | #endif // _LIBS_UTILS_THREADS_H |