Subversion Repositories HelenOS-historic

Compare Revisions

Ignore whitespace Rev 1719 → Rev 1649

/uspace/trunk/ns/ns.c
81,6 → 81,8
ipcarg_t in_phone_hash; /**< Incoming phone hash. */
} hashed_service_t;
 
int static ping_phone;
 
static void *clockaddr = NULL;
static void *klogaddr = NULL;
 
104,8 → 106,9
{
ipc_call_t call;
ipc_callid_t callid;
char *as_area;
ipcarg_t retval;
ipcarg_t retval, arg1, arg2;
 
if (!hash_table_create(&ns_hash_table, NS_HASH_TABLE_CHAINS, 3, &ns_hash_table_ops)) {
return ENOMEM;
146,7 → 149,7
break;
}
if (! (callid & IPC_CALLID_NOTIFICATION)) {
ipc_answer_fast(callid, retval, 0, 0);
ipc_answer_fast(callid, retval, arg1, arg2);
}
}
}
254,7 → 257,6
assert(item);
free(hash_table_get_instance(item, hashed_service_t, link));
}
 
/**
* @}
*/