xSemaphoreGiveFromISR() problems

I have two ISRs using  xSemaphoreGiveFromISR() fuction call and one over a long period of time never gets called and the other has missed its call here and there. I suspect that there is a priority issue with this function that causes it to fail. I am using version 7 of freeRTOS. Has anyone had this issue where the ist just gets blocked?

xSemaphoreGiveFromISR() problems

Which port are you using?
What type of semaphore is it (binary/counting/etc.)?
one over a long period of time never gets called
What doesn’t get called?  The ISR?  What is triggering the ISR (UART, DMA, SPI, external, etc.)?  Are you sure the ISR is configured and cleared correctly? 
the other has missed its call here and there
What has missed its call?  The interrupt?  Do you have critical sections that are too long for the frequency at which the interrupts are arriving? Regards.