Displaying 2 results from an estimated 2 matches for "timerisset".
Did you mean:
timer_set
2003 Mar 17
0
scp.c: u_int64_t in bwlimit()
...?
-----------------------------------
--- scp.c.old 2003-03-09 17:16:43.000000000 -0800
+++ scp.c 2003-03-16 16:17:57.095520029 -0800
@@ -670,7 +670,7 @@
{
static struct timeval bwstart, bwend;
static int lamt, thresh = 16384;
- u_int64_t wait;
+ off_t wait;
struct timespec ts, rm;
if (!timerisset(&bwstart)) {
-----------------------------------
--
Tim Rice Multitalents (707) 887-1469
tim at multitalents.net
2016 Jan 19
2
OpenSSH portability & buildsystem fixes
...compat/.
* bzero is used in deattack.c (and in regress/) instead of the standard
memset. The code should be changed to use memset or the compatibility
layer should provide its own bzero if absent.
* misc.c uses gettimeofday but doesn't include <sys/time.h> to get it.
* timerclear, timerisset and timercmp are used in misc.c and
ssh-keyscan.c. They are non-standard BSD extensions from <sys/time.h>.
The build system should detect their lack and provide its own
versions, or the code could be rewritten to not use them.
* u_short and u_long are used across the codebase, but defi...