Refactor job to allow synchronous calls
[src/app-framework-binder.git] / src / jobs.h
1 /*
2  * Copyright (C) 2016, 2017 "IoT.bzh"
3  * Author José Bollo <jose.bollo@iot.bzh>
4  *
5  * Licensed under the Apache License, Version 2.0 (the "License");
6  * you may not use this file except in compliance with the License.
7  * You may obtain a copy of the License at
8  *
9  *   http://www.apache.org/licenses/LICENSE-2.0
10  *
11  * Unless required by applicable law or agreed to in writing, software
12  * distributed under the License is distributed on an "AS IS" BASIS,
13  * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
14  * See the License for the specific language governing permissions and
15  * limitations under the License.
16  */
17
18 #pragma once
19
20 extern int jobs_queue0(
21                 void *group,
22                 int timeout,
23                 void (*callback)(int signum));
24
25 extern int jobs_queue(
26                 void *group,
27                 int timeout,
28                 void (*callback)(int signum, void* arg),
29                 void *arg);
30
31 extern int jobs_queue2(
32                 void *group,
33                 int timeout,
34                 void (*callback)(int signum, void* arg1, void *arg2),
35                 void *arg1,
36                 void *arg2);
37
38 extern int jobs_queue3(
39                 void *group,
40                 int timeout,
41                 void (*callback)(int signum, void* arg1, void *arg2, void *arg3),
42                 void *arg1,
43                 void *arg2,
44                 void *arg3);
45
46 extern int jobs_invoke0(
47                 int timeout,
48                 void (*callback)(int signum));
49
50 extern int jobs_invoke(
51                 int timeout,
52                 void (*callback)(int signum, void* arg),
53                 void *arg);
54
55 extern int jobs_invoke2(
56                 int timeout,
57                 void (*callback)(int signum, void* arg1, void *arg2),
58                 void *arg1,
59                 void *arg2);
60
61 extern int jobs_invoke3(
62                 int timeout,
63                 void (*callback)(int signum, void* arg1, void *arg2, void *arg3),
64                 void *arg1,
65                 void *arg2,
66                 void *arg3);
67
68 extern int jobs_add_event_loop(void *key, int timeout, void (*evloop)(int, void*), void *closure);
69
70 extern int jobs_init(int allowed_count, int start_count, int waiter_count);
71 extern int jobs_add_me();
72 extern void jobs_terminate();
73
74