Re: AW: question about posix timer expiration

2021-05-26 Thread Chris Johns
On 21/5/21 9:44 pm, gabriel.moy...@dlr.de wrote: > Did you compile ptpd with kqueue only? I’ve tried with posix timer, which are > implemented in rtems, but it seems that the handler with siginfo_t is not > called > correctly. I’ve managed to get it working using a workaround but I’ll continue > w

AW: question about posix timer expiration

2021-05-21 Thread Gabriel.Moyano
Hi Chris, Did you compile ptpd with kqueue only? I’ve tried with posix timer, which are implemented in rtems, but it seems that the handler with siginfo_t is not called correctly. I’ve managed to get it working using a workaround but I’ll continue with kqueue, thx!. Regards, Gabriel Von: Chr

AW: question about posix timer expiration

2021-05-18 Thread Gabriel.Moyano
>From further investigation I've found that when a timer expires, >_POSIX_Timer_TSR() is called and this uses pthread_kill() to send a signal. >Shouldn't ptimer->inf.sigev_value be used here in order to create a siginfo_t >object with the right value? Did anyone have to deal with this while usi