Allow to set event loop type with api
[platform/core/api/vine.git] / src / vine-utils.cpp
1 /*
2  * Copyright (c) 2021 Samsung Electronics Co., Ltd. All rights reserved.
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 #include <string.h>
19
20 #include "vine-utils.h"
21
22 void vine_mutex_lock(pthread_mutex_t *mutex, const char *func, int line)
23 {
24         int ret = pthread_mutex_lock(mutex);
25         if (ret != 0)
26                 VINE_LOGE("%s:%d error %d", func, line, ret);
27 }
28
29 void vine_mutex_unlock(pthread_mutex_t *mutex, const char *func, int line)
30 {
31         int ret = pthread_mutex_unlock(mutex);
32         if (ret != 0)
33                 VINE_LOGE("%s:%d error %d", func, line, ret);
34 }
35
36 char *strndup(const char *s, size_t n) {
37         char *p;
38         size_t n1;
39
40         for (n1 = 0; n1 < n && s[n1] != '\0'; n1++)
41                 continue;
42         p = (char *)malloc(n + 1);
43         if (p != NULL) {
44                 memcpy(p, s, n1);
45                 p[n1] = '\0';
46         }
47         return p;
48 }