MCPcopy Create free account
hub / github.com/RT-Thread/rt-thread / rt_pic_find_ipi

Function rt_pic_find_ipi

components/drivers/pic/pic.c:271–279  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

269}
270
271struct rt_pic_irq *rt_pic_find_ipi(struct rt_pic *pic, int ipi_index)
272{
273 struct rt_pic_irq *pirq = &_pirq_hash[ipi_index];
274
275 RT_ASSERT(ipi_index < RT_MAX_IPI);
276 RT_ASSERT(pirq->pic == pic);
277
278 return pirq;
279}
280
281struct rt_pic_irq *rt_pic_find_pirq(struct rt_pic *pic, int irq)
282{

Callers 3

gicv3_handlerFunction · 0.85
gic_common_sgi_configFunction · 0.85
gicv2_handlerFunction · 0.85

Calls

no outgoing calls

Tested by

no test coverage detected