2007-09-08 21:50:59 +02:00
|
|
|
/****************************************************************************
|
2014-06-29 01:25:18 +02:00
|
|
|
* net/utils/net_timeval2dsec.c
|
2007-09-08 21:50:59 +02:00
|
|
|
*
|
2021-02-19 12:45:37 +01:00
|
|
|
* Licensed to the Apache Software Foundation (ASF) under one or more
|
|
|
|
* contributor license agreements. See the NOTICE file distributed with
|
|
|
|
* this work for additional information regarding copyright ownership. The
|
|
|
|
* ASF licenses this file to you under the Apache License, Version 2.0 (the
|
|
|
|
* "License"); you may not use this file except in compliance with the
|
|
|
|
* License. You may obtain a copy of the License at
|
2007-09-08 21:50:59 +02:00
|
|
|
*
|
2021-02-19 12:45:37 +01:00
|
|
|
* http://www.apache.org/licenses/LICENSE-2.0
|
2007-09-08 21:50:59 +02:00
|
|
|
*
|
2021-02-19 12:45:37 +01:00
|
|
|
* Unless required by applicable law or agreed to in writing, software
|
|
|
|
* distributed under the License is distributed on an "AS IS" BASIS, WITHOUT
|
|
|
|
* WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the
|
|
|
|
* License for the specific language governing permissions and limitations
|
|
|
|
* under the License.
|
2007-09-08 21:50:59 +02:00
|
|
|
*
|
|
|
|
****************************************************************************/
|
|
|
|
|
|
|
|
/****************************************************************************
|
|
|
|
* Included Files
|
|
|
|
****************************************************************************/
|
|
|
|
|
|
|
|
#include <nuttx/config.h>
|
|
|
|
|
2015-02-15 22:18:35 +01:00
|
|
|
#include <sys/time.h>
|
|
|
|
|
2007-09-09 13:58:50 +02:00
|
|
|
#include <nuttx/clock.h>
|
2007-09-08 21:50:59 +02:00
|
|
|
|
2014-06-29 01:25:18 +02:00
|
|
|
#include "utils/utils.h"
|
2007-09-08 21:50:59 +02:00
|
|
|
|
|
|
|
/****************************************************************************
|
2015-01-19 23:02:56 +01:00
|
|
|
* Public Functions
|
2007-09-08 21:50:59 +02:00
|
|
|
****************************************************************************/
|
|
|
|
|
|
|
|
/****************************************************************************
|
2017-04-22 00:33:14 +02:00
|
|
|
* Name: net_timeval2dsec
|
2007-09-08 21:50:59 +02:00
|
|
|
*
|
|
|
|
* Description:
|
|
|
|
* Convert a struct timeval to deciseconds. Needed by setsockopt() to
|
|
|
|
* save new timeout values.
|
|
|
|
*
|
2018-03-13 16:52:27 +01:00
|
|
|
* Input Parameters:
|
2015-05-29 15:17:15 +02:00
|
|
|
* tv - The struct timeval to convert
|
|
|
|
* remainder - Determines how to handler the microsecond remainder
|
2007-09-08 21:50:59 +02:00
|
|
|
*
|
|
|
|
* Returned Value:
|
2014-06-29 01:25:18 +02:00
|
|
|
* The converted value
|
2007-09-08 21:50:59 +02:00
|
|
|
*
|
|
|
|
* Assumptions:
|
|
|
|
*
|
|
|
|
****************************************************************************/
|
|
|
|
|
2015-05-29 15:17:15 +02:00
|
|
|
unsigned int net_timeval2dsec(FAR struct timeval *tv,
|
|
|
|
enum tv2ds_remainder_e remainder)
|
2007-09-08 21:50:59 +02:00
|
|
|
{
|
2015-05-29 15:17:15 +02:00
|
|
|
unsigned long adjust = 0;
|
|
|
|
|
|
|
|
switch (remainder)
|
|
|
|
{
|
|
|
|
default:
|
|
|
|
case TV2DS_TRUNC: /* Truncate microsecond remainder */
|
|
|
|
break;
|
|
|
|
|
|
|
|
case TV2DS_ROUND: /* Round to the nearest full decisecond */
|
|
|
|
adjust = (USEC_PER_DSEC / 2);
|
|
|
|
break;
|
|
|
|
|
|
|
|
case TV2DS_CEIL: /* Force to next larger full decisecond */
|
|
|
|
adjust = (USEC_PER_DSEC - 1);
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
|
|
|
|
return (unsigned int)(tv->tv_sec * DSEC_PER_SEC +
|
|
|
|
(tv->tv_usec + adjust) / USEC_PER_DSEC);
|
2007-09-08 21:50:59 +02:00
|
|
|
}
|