summaryrefslogtreecommitdiff
path: root/src/ivyperf.c
diff options
context:
space:
mode:
Diffstat (limited to 'src/ivyperf.c')
-rwxr-xr-xsrc/ivyperf.c7
1 files changed, 4 insertions, 3 deletions
diff --git a/src/ivyperf.c b/src/ivyperf.c
index 11e9522..999fb69 100755
--- a/src/ivyperf.c
+++ b/src/ivyperf.c
@@ -76,9 +76,10 @@ void TimerCall(TimerId id, void *user_data, unsigned long delta)
int main(int argc, char *argv[])
{
-
+ long time=200;
/* Mainloop management */
+ if ( argc > 1 ) time = atol( argv[1] );
IvyInit ("IvyPerf", "IvyPerf ready", NULL,NULL,NULL,NULL);
@@ -87,9 +88,9 @@ int main(int argc, char *argv[])
IvyStart (0);
- TimerRepeatAfter (TIMER_LOOP, 200, TimerCall, (void*)1);
+ TimerRepeatAfter (TIMER_LOOP, time, TimerCall, (void*)1);
- IvyMainLoop (0);
+ IvyMainLoop (0,0);
return 0;
}