[LTP] [PATCH 2/3] perf_event_open02: make do_work() run for specified time
Jan Stancek
jstancek@redhat.com
Thu Nov 21 09:48:24 CET 2019
----- Original Message -----
> > -static void do_work(void)
> > +void alarm_handler(int sig LTP_ATTRIBUTE_UNUSED)
>
> static void ?
Yes
>
> > +{
> > + work_done = 1;
> > +}
> > +
> > +static void do_work(int time_ms)
> > {
> > int i;
> > + struct sigaction sa;
> > + struct itimerval val;
> >
> > - for (i = 0; i < LOOPS; ++i)
> > - asm volatile (""::"g" (i));
> > -}
> > + work_done = 0;
> > + memset(&val, 0, sizeof(val));
> > + val.it_value.tv_sec = time_ms / 1000;
> > + val.it_value.tv_usec = (time_ms % 1000) * 1000;
> >
> > + sa.sa_handler = alarm_handler;
> > + sa.sa_flags = SA_RESETHAND;
> > + SAFE_SIGACTION(SIGALRM, &sa, NULL);
>
> I would have set up the signal handler just once in the test setup.
I'll move it.
More information about the ltp
mailing list