Commit e51ca908 authored by Swetank Srivastava's avatar Swetank Srivastava

indentation aligned

parent cb8aad51
......@@ -354,7 +354,7 @@ int nfapi_vnf_p7_start(nfapi_vnf_p7_config_t* config)
}
//original_pselect_timeout = pselect_timeout;
//original_pselect_timeout = pselect_timeout;
// detemine how long to sleep in ns before the start of the next 1ms
//pselect_timeout.tv_nsec = 1e6 - (pselect_start.tv_nsec % 1000000);
......@@ -395,7 +395,7 @@ int nfapi_vnf_p7_start(nfapi_vnf_p7_config_t* config)
*/
//long wraps = pselect_timeout.tv_nsec % 1e9;
//long wraps = pselect_timeout.tv_nsec % 1e9;
selectRetval = pselect(maxSock+1, &rfds, NULL, NULL, &pselect_timeout, NULL);
......@@ -404,13 +404,13 @@ int nfapi_vnf_p7_start(nfapi_vnf_p7_config_t* config)
nfapi_vnf_p7_connection_info_t* phy = vnf_p7->p7_connections;
if (selectRetval==-1 && errno == 22)
{
if (selectRetval==-1 && errno == 22)
{
NFAPI_TRACE(NFAPI_TRACE_ERROR, "INVAL: pselect_timeout:%ld.%ld adj[dur:%d adj:%d], sf_dur:%ld.%ld\n",
pselect_timeout.tv_sec, pselect_timeout.tv_nsec,
phy->insync_minor_adjustment_duration, phy->insync_minor_adjustment,
sf_duration.tv_sec, sf_duration.tv_nsec);
}
}
if(selectRetval == 0)
{
// calculate the start of the next subframe
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment