Changes in uspace/lib/c/generic/irc.c [e5424e9:75fe97b] in mainline
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
uspace/lib/c/generic/irc.c
re5424e9 r75fe97b 49 49 static int irc_init(void) 50 50 { 51 sysarg_t apic;52 sysarg_t i8259;53 54 51 assert(irc_sess == NULL); 55 52 56 if (((sysinfo_get_value("apic", &apic) == EOK) && (apic)) 57 || ((sysinfo_get_value("i8259", &i8259) == EOK) && (i8259))) { 58 irc_sess = service_connect_blocking(EXCHANGE_SERIALIZE, 59 SERVICE_IRC, 0, 0); 60 } 53 irc_sess = service_connect_blocking(EXCHANGE_SERIALIZE, 54 SERVICE_IRC, 0, 0); 61 55 62 56 if (irc_sess == NULL)
Note:
See TracChangeset
for help on using the changeset viewer.