Connecting two open-collector INT outputs to one Interrupt

DrDiettrich:
Why do you want to use an interrupt, if you have to check in code which device triggered the interrupt? You need at least as many inputs as you have interrupt sources.

If ever, I'd use a PCINT (Pin Change), where up to 8 interrupts can be watched in one ISR, and the interrupt source(s) can be determined immediately.

Thanks for your help.