blob: 379c373344d620a8f1969799e1347520c5f83dcd [file] [log] [blame]
The Android Open Source Projectdd7bc332009-03-03 19:32:55 -08001/*
David 'Digit' Turnerebefc482009-05-29 14:45:04 +02002 * Copyright (C) 2009 The Android Open Source Project
The Android Open Source Projectdd7bc332009-03-03 19:32:55 -08003 *
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 _ANDROID_CUTILS_LOGD_H
18#define _ANDROID_CUTILS_LOGD_H
19
David 'Digit' Turnerebefc482009-05-29 14:45:04 +020020/* the stable/frozen log-related definitions have been
21 * moved to this header, which is exposed by the NDK
22 */
23#include <android/log.h>
24
25/* the rest is only used internally by the system */
The Android Open Source Projectdd7bc332009-03-03 19:32:55 -080026#include <time.h>
27#include <stdio.h>
28#include <unistd.h>
29#include <stdint.h>
30#include <sys/types.h>
31#ifdef HAVE_PTHREADS
32#include <pthread.h>
33#endif
Colin Cross9227bd32013-07-23 16:59:20 -070034#include <log/uio.h>
The Android Open Source Projectdd7bc332009-03-03 19:32:55 -080035#include <stdarg.h>
36
37#ifdef __cplusplus
38extern "C" {
39#endif
40
The Android Open Source Projectdd7bc332009-03-03 19:32:55 -080041int __android_log_bwrite(int32_t tag, const void *payload, size_t len);
42int __android_log_btwrite(int32_t tag, char type, const void *payload,
43 size_t len);
44
The Android Open Source Projectdd7bc332009-03-03 19:32:55 -080045#ifdef __cplusplus
46}
47#endif
48
49#endif /* _LOGD_H */