common_library: gettid is multiple declaration in cl_error
[staging/basesystem.git] / video_in_hal / stub / clock / client_clock / src / Clock_API.cpp
1 /*
2  * @copyright Copyright (c) 2016-2020 TOYOTA MOTOR CORPORATION.
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 /*
18  * Information.
19  * This source code is a sample source code .
20  * Implementation of the function must be performed by the vendor.
21  */
22
23 #include <stub/Clock_API.h>
24
25 /* static variable definition */
26 /* * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * */
27
28 /*
29  function prototype
30 * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * */
31
32 CLOCK_RETURN Clock_getSystemTime(struct timespec* time, uint8_t* status) {
33   /*
34    *  Note.
35    *  This feature needs to be implemented by the vendor.
36    */
37     return CLOCK_OK;
38 }
39
40 CLOCK_RETURN Clock_getLocalTime(const time_t* base_time, struct tm* local_time) {
41   /*
42    *  Note.
43    *  This feature needs to be implemented by the vendor.
44    */
45     return CLOCK_OK;
46 }
47
48 CLOCK_RETURN Clock_CnvSecToDate(const time_t* timep, struct tm *result) {
49   /*
50    *  Note.
51    *  This feature needs to be implemented by the vendor.
52    */
53     return CLOCK_OK;
54 }
55
56 CLOCK_RETURN Clock_CnvDateToSec(const struct tm* tm, time_t* result) {
57   /*
58    *  Note.
59    *  This feature needs to be implemented by the vendor.
60    */
61     return CLOCK_OK;
62 }
63
64 CLOCK_RETURN Clock_setUserTime(const time_t* user_time) {
65   /*
66    *  Note.
67    *  This feature needs to be implemented by the vendor.
68    */
69     return CLOCK_OK;
70 }
71
72 CLOCK_RETURN Clock_getUserTime(time_t* user_time, uint8_t* status) {
73   /*
74    *  Note.
75    *  This feature needs to be implemented by the vendor.
76    */
77     return CLOCK_OK;
78 }
79
80 CLOCK_RETURN Clock_addUserTimeOffset(const struct tm* offset) {
81   /*
82    *  Note.
83    *  This feature needs to be implemented by the vendor.
84    */
85     return CLOCK_OK;
86 }
87
88 CLOCK_RETURN Clock_getSystemTimeY2K38(uint32_t* time, uint8_t* status) {
89   /*
90    *  Note.
91    *  This feature needs to be implemented by the vendor.
92    */
93     return CLOCK_OK;
94 }
95
96 CLOCK_RETURN Clock_getLocalTimeY2K38(const uint32_t* base_time, struct tm* local_time) {
97   /*
98    *  Note.
99    *  This feature needs to be implemented by the vendor.
100    */
101     return CLOCK_OK;
102 }
103
104 CLOCK_RETURN Clock_CnvSecToDateY2K38(const uint32_t* time, struct tm *result) {
105   /*
106    *  Note.
107    *  This feature needs to be implemented by the vendor.
108    */
109     return CLOCK_OK;
110 }
111
112 CLOCK_RETURN Clock_CnvDateToSecY2K38(const struct tm* tm, uint32_t* result) {
113   /*
114    *  Note.
115    *  This feature needs to be implemented by the vendor.
116    */
117     return CLOCK_OK;
118 }