On Thu, Oct 18, 2018 at 3:58 PM, Laurent Bourgès <[email protected]>
wrote:
> Hi Martin,
>
> PS: could you tell me what lines to change to discard non sequenced events
>>> in your patch ? I will then try it
>>>
>>
>> Instead of "if (ev.getID() == ID) { ... } return FilterAction.ACCEPT;",
>> do:
>>
>> "if (ev.getID() == ID) { ... } else if (ev.getID() == SentEvent.ID) {
>> return FilterAction.ACCEPT; } return FilterAction.REJECT;"
>>
>> SequencedEvent and SentEvent events accepted, others rejected.
>>
>
>
It would be really nice if you could:
1) find if hardware generated events are wrapped or not in SequencedEvent
events; and,
2) find which are the non-SequencedEvent events, and what kind of
dependency there could be with SequencedEvents events.
Thanks!
Martin.-