aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/libraries/ecore/src/examples/ecore_job_example.c
blob: 1d28b7b4f16899c5bffcf7006f6cd81797a3ea6b (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
#include <Ecore.h>
#include <unistd.h>

static void
_job_print_cb(void *data)
{
   char *str = data;

   printf("%s\n", str);
}

static void
_job_quit_cb(void *data)
{
   ecore_main_loop_quit();
}

int main(int argc, char **argv)
{
   Ecore_Job *job1, *job2, *job3, *job_quit;
   char *str1 = "Job 1 started.";
   char *str2 = "Job 2 started.";
   char *str3 = "Job 3 started.";

   if (!ecore_init())
     {
	printf("ERROR: Cannot init Ecore!\n");
	return -1;
     }

   job1 = ecore_job_add(_job_print_cb, str1);
   job2 = ecore_job_add(_job_print_cb, str2);
   job3 = ecore_job_add(_job_print_cb, str3);

   job_quit = ecore_job_add(_job_quit_cb, NULL);
   printf("Created jobs 1, 2, 3 and quit.\n");

   if (job2)
     {
	char *str;
	str = ecore_job_del(job2);
	job2 = NULL;
	printf("Deleted job 2. Its data was: \"%s\"\n", str);
     }

   ecore_main_loop_begin();
   ecore_shutdown();
}