Code
Hub
Workspaces
Following
Trending
Connect
MCP
copy
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
14
void delay(unsigned int secs)
15
{
16
assert(secs <= UINT_MAX / MSECS_PER_SEC);
17
return mdelay(secs * MSECS_PER_SEC);
18
}
Callers
10
panic
Function · 0.50
die_notify
Function · 0.50
die_notify
Function · 0.50
die_notify
Function · 0.50
die_notify
Function · 0.50
die_notify
Function · 0.50
platform_handle_emergency_low_battery
Function · 0.50
pci_bus_reset
Function · 0.50
vbe_textmode_console
Function · 0.50
vbe_textmode_console
Function · 0.50
Calls
1
mdelay
Function · 0.70
Tested by
no test coverage detected