It's not a QE error but it comes from the message-passing interface that allows to run calculations in parallel, like on multiple cores or on a computing cluster. It might happen because the MPI library or the QE itself were compiled incorrectly.
Without knowing anything about QE, I looked at the source code for information about calls to MPI_Abort and that particular functions gets called in these files:
./Doc/ChangeLog.pw:464: through a call to MPI_ABORT (CC)
I would just put a print message right before all of them or the ones you think your code is hitting to narrow down the problem. I would also try running with a single rank and see if the error persists. If it does then running GDB or another debugger should help.
Sorry can't provide more insight than that, but maybe it helps.