MCPcopy Create free account
hub / github.com/coreboot/coreboot / delay

Function delay

src/lib/delay.c:14–18  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

12}
13
14void delay(unsigned int secs)
15{
16 assert(secs <= UINT_MAX / MSECS_PER_SEC);
17 return mdelay(secs * MSECS_PER_SEC);
18}

Callers 10

panicFunction · 0.50
die_notifyFunction · 0.50
die_notifyFunction · 0.50
die_notifyFunction · 0.50
die_notifyFunction · 0.50
die_notifyFunction · 0.50
pci_bus_resetFunction · 0.50
vbe_textmode_consoleFunction · 0.50
vbe_textmode_consoleFunction · 0.50

Calls 1

mdelayFunction · 0.70

Tested by

no test coverage detected