OSDN Git Service

Add a simple dummy memtrack HAL
[android-x86/hardware-memtrack.git] / memtrack.c
1 /*
2  * Copyright (C) 2019 The Android-x86 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 #include <hardware/memtrack.h>
18
19 static int memtrack_init(const struct memtrack_module *module)
20 {
21     if (!module)
22         return -1;
23
24     return 0;
25 }
26
27 static struct hw_module_methods_t memtrack_module_methods = {
28     .open = NULL,
29 };
30
31 struct memtrack_module HAL_MODULE_INFO_SYM = {
32     .common = {
33         .tag = HARDWARE_MODULE_TAG,
34         .module_api_version = MEMTRACK_MODULE_API_VERSION_0_1,
35         .hal_api_version = HARDWARE_HAL_API_VERSION,
36         .id = MEMTRACK_HARDWARE_MODULE_ID,
37         .name = "Dummy Memory Tracker HAL",
38         .author = "The Android-x86 Open Source Project",
39         .methods = &memtrack_module_methods,
40     },
41
42     .init = memtrack_init,
43 };