Exemplo n.º 1
0
void odp_time_wait_ns(uint64_t ns)
{
	odp_time_t cur = time_local();
	odp_time_t wait = time_local_from_ns(ns);
	odp_time_t end_time = time_sum(cur, wait);

	time_wait_until(end_time);
}
Exemplo n.º 2
0
int main()
{
int seconds,swi=1;
char enter;
printf("1 example of program:\ni\n60\nresult: 00:01:00\n");
printf("2 example of program:\nd\n15:00:20 15:00:00\nresult: 20 seconds\n");
t_1.hours=0;
t_1.minutes=0;
t_1.seconds=0;
t_2.hours=0;
t_2.minutes=0;
t_2.seconds=0;
printf("\nstart %02d:%02d:%02d\n",t_1.hours,t_1.minutes,t_1.seconds);
while (swi)
{
    scanf("%c",&enter);
    fflush(stdin);
    if(enter=='i')
    {
        scanf("%d",&seconds);
        fflush(stdin);
        t_1=time_sum(seconds,t_1);
        printf("\n%02d:%02d:%02d\n",t_1.hours,t_1.minutes,t_1.seconds);
    }
    if(enter=='d')
    {
        scanf("%d:%d:%d",&t_1.hours,&t_1.minutes,&t_1.seconds);
        fflush(stdin);
        scanf("%d:%d:%d",&t_2.hours,&t_2.minutes,&t_2.seconds);
        fflush(stdin);
        printf("\nresult: %d seconds\n",time_difference(t_1,t_2));
    }
    if (enter!='i' && enter!='d')
    printf("\nInvalid operation!\n");
    printf("\nDo you want to exit the program? - yes (y) no (n)\n");
    scanf("%c",&enter);
    fflush(stdin);
    if (enter=='y')
    swi=0;
}
return 0;
}
Exemplo n.º 3
0
odp_time_t odp_time_sum(odp_time_t t1, odp_time_t t2)
{
	return time_sum(t1, t2);
}