Lines Matching +full:straight +full:- +full:forward
1 /*-
2 * Copyright (c) 1991-1997 Regents of the University of California.
66 * straight forward to add but we don't want to pay the extra memory
68 * accidentally builds a workstation with a decent clock - e.g., Sun & HP).)
73 #define TV_LT(a, b) (((a)->tv_sec < (b)->tv_sec) || \
74 (((a)->tv_usec < (b)->tv_usec) && ((a)->tv_sec <= (b)->tv_sec)))
79 delta = (a)->tv_usec - (b)->tv_usec; \
80 if ((xxs = (a)->tv_sec - (b)->tv_sec)) { \
98 int xxus = (a)->tv_usec + (delta); \
100 (res)->tv_sec = (a)->tv_sec; \
102 ++((res)->tv_sec); \
103 xxus -= 1000000; \
105 (res)->tv_usec = xxus; \
189 int wrr_; /* Enable Weighted Round-Robin */
223 int cutoff_; /* Cut-off depth for borrowing */
237 #define RMCF_FLOWVALVE 0x0008 /* use flowvalve (aka penalty-box) */
245 #define is_a_parent_class(cl) ((cl)->children_ != NULL)