correct email address
[platform/core/uifw/libtdm.git] / src / tdm_thread.h
1 /**************************************************************************
2  *
3  * libtdm
4  *
5  * Copyright 2015 Samsung Electronics co., Ltd. All Rights Reserved.
6  *
7  * Contact: Eunchul Kim <chulspro.kim@samsung.com>,
8  *          JinYoung Jeon <jy0.jeon@samsung.com>,
9  *          Taeheon Kim <th908.kim@samsung.com>,
10  *          YoungJun Cho <yj44.cho@samsung.com>,
11  *          SooChan Lim <sc1.lim@samsung.com>,
12  *          Boram Park <boram1288.park@samsung.com>
13  *
14  * Permission is hereby granted, free of charge, to any person obtaining a
15  * copy of this software and associated documentation files (the
16  * "Software"), to deal in the Software without restriction, including
17  * without limitation the rights to use, copy, modify, merge, publish,
18  * distribute, sub license, and/or sell copies of the Software, and to
19  * permit persons to whom the Software is furnished to do so, subject to
20  * the following conditions:
21  *
22  * The above copyright notice and this permission notice (including the
23  * next paragraph) shall be included in all copies or substantial portions
24  * of the Software.
25  *
26  * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS
27  * OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
28  * MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NON-INFRINGEMENT.
29  * IN NO EVENT SHALL PRECISION INSIGHT AND/OR ITS SUPPLIERS BE LIABLE FOR
30  * ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT,
31  * TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE
32  * SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
33  *
34 **************************************************************************/
35
36 #ifndef _TDM_THREAD_H_
37 #define _TDM_THREAD_H_
38
39 #include "tdm_private_types.h"
40
41 #ifdef __cplusplus
42 extern "C" {
43 #endif
44
45 tdm_error
46 tdm_thread_init(tdm_private_loop *private_loop);
47 void
48 tdm_thread_deinit(tdm_private_loop *private_loop);
49 int
50 tdm_thread_get_fd(tdm_private_loop *private_loop);
51 tdm_error
52 tdm_thread_send_cb(tdm_private_loop *private_loop, tdm_thread_cb_base *base);
53 tdm_error
54 tdm_thread_handle_cb(tdm_private_loop *private_loop);
55 int
56 tdm_thread_in_display_thread(pid_t tid);
57 int
58 tdm_thread_is_running(void);
59
60 typedef void* (*tdm_thread_find_object)(tdm_private_display *private_display, double stamp);
61 typedef void (*tdm_thread_cb)(tdm_private_display *private_display, void *object, tdm_thread_cb_base *cb_base, void *user_data);
62
63 void
64 tdm_thread_cb_set_find_func(tdm_thread_cb_type cb_type, tdm_thread_find_object func);
65 tdm_error
66 tdm_thread_cb_add(void *object, tdm_thread_cb_type cb_type, void *cb_data, tdm_thread_cb func, void *user_data);
67 void
68 tdm_thread_cb_remove(void *object, tdm_thread_cb_type cb_type, void *cb_data, tdm_thread_cb func, void *user_data);
69 tdm_error
70 tdm_thread_cb_call(void *object, tdm_thread_cb_base *cb_base, unsigned int propagation);
71
72
73 #ifdef __cplusplus
74 }
75 #endif
76
77 #endif /* _TDM_THREAD_H_ */
78