Added timer_get_runtime_ms to know how long the timer has been running
git-svn-id: https://svn.musicpd.org/mpd/trunk@6521 09075e82-0dd4-0310-85a5-a0d7c8717e4f
This commit is contained in:
parent
9ccf0d8a25
commit
a886600474
@ -51,7 +51,7 @@ void timer_free(Timer *timer)
|
|||||||
|
|
||||||
void timer_start(Timer *timer)
|
void timer_start(Timer *timer)
|
||||||
{
|
{
|
||||||
timer->time = now();
|
timer->start_time = timer->time = now();
|
||||||
timer->started = 1;
|
timer->started = 1;
|
||||||
}
|
}
|
||||||
|
|
||||||
@ -59,6 +59,7 @@ void timer_reset(Timer *timer)
|
|||||||
{
|
{
|
||||||
timer->time = 0;
|
timer->time = 0;
|
||||||
timer->started = 0;
|
timer->started = 0;
|
||||||
|
timer->start_time = 0;
|
||||||
}
|
}
|
||||||
|
|
||||||
void timer_add(Timer *timer, int size)
|
void timer_add(Timer *timer, int size)
|
||||||
@ -78,3 +79,8 @@ void timer_sync(Timer *timer)
|
|||||||
if (sleep > 0)
|
if (sleep > 0)
|
||||||
my_usleep(sleep);
|
my_usleep(sleep);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
int timer_get_runtime_ms(Timer *timer)
|
||||||
|
{
|
||||||
|
return (now() - timer->start_time)/1000;
|
||||||
|
}
|
||||||
|
@ -23,6 +23,7 @@
|
|||||||
#include "mpd_types.h"
|
#include "mpd_types.h"
|
||||||
|
|
||||||
typedef struct _Timer {
|
typedef struct _Timer {
|
||||||
|
uint64_t start_time;
|
||||||
uint64_t time;
|
uint64_t time;
|
||||||
int started;
|
int started;
|
||||||
int rate;
|
int rate;
|
||||||
@ -40,4 +41,6 @@ void timer_add(Timer *timer, int size);
|
|||||||
|
|
||||||
void timer_sync(Timer *timer);
|
void timer_sync(Timer *timer);
|
||||||
|
|
||||||
|
int timer_get_runtime_ms(Timer *timer);
|
||||||
|
|
||||||
#endif
|
#endif
|
||||||
|
Loading…
Reference in New Issue
Block a user