Changeset 75fe97b in mainline for uspace/lib/c/generic/irc.c
- Timestamp:
- 2014-09-03T10:52:10Z (11 years ago)
- Branches:
- lfn, master, serial, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
- Children:
- 95b2276
- Parents:
- b3222a3
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
uspace/lib/c/generic/irc.c
rb3222a3 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.