Shows the difference between the three time functions. See the example explained.
#include <Ecore.h>
#include <unistd.h>
{
printf("\nSleep for 1 second...\n\n");
sleep(1);
}
int
main(void)
{
{
printf("ERROR: Cannot init Ecore!\n");
return -1;
}
ecore_timer_add(0.1, _timer_cb, NULL);
}