Enlightenment CVS committal

Author  : raster
Project : e17
Module  : libs/ecore

Dir     : e17/libs/ecore/src/bin


Modified Files:
      Tag: SPLIT
        ecore_test.c 


Log Message:


test program goodies

===================================================================
RCS file: /cvsroot/enlightenment/e17/libs/ecore/src/bin/Attic/ecore_test.c,v
retrieving revision 1.1.2.2
retrieving revision 1.1.2.3
diff -u -3 -r1.1.2.2 -r1.1.2.3
--- ecore_test.c        16 Jan 2003 10:30:30 -0000      1.1.2.2
+++ ecore_test.c        16 Jan 2003 12:04:35 -0000      1.1.2.3
@@ -12,7 +12,7 @@
 void
 job_call(void *data)
 {
-   printf("Job done!\n");
+   printf("Job done \"%s\"!\n", (char *)data);
 }
 
 int
@@ -33,7 +33,9 @@
 timer(void *data)
 {
    printf("Timer tick %3.8f\n", ecore_time_get() - start_time);
-   ecore_job_add(job_call, NULL);
+   ecore_job_add(job_call, "1");
+   ecore_job_add(job_call, "2");
+   ecore_job_add(job_call, "3");
    return 1;
 }
 
@@ -130,6 +132,7 @@
 main(int argc, const char **argv)
 {
    start_time = ecore_time_get();
+   
    ecore_init();
    ecore_app_args_set(argc, argv);
 




-------------------------------------------------------
This SF.NET email is sponsored by: Thawte.com
Understand how to protect your customers personal information by implementing
SSL on your Apache Web Server. Click here to get our FREE Thawte Apache 
Guide: http://ads.sourceforge.net/cgi-bin/redirect.pl?thaw0029en
_______________________________________________
enlightenment-cvs mailing list
[EMAIL PROTECTED]
https://lists.sourceforge.net/lists/listinfo/enlightenment-cvs

Reply via email to