| 1972 | |
| 1973 | |
| 1974 | void PAG_set_sweep_interval(thread_db* tdbb, SLONG interval) |
| 1975 | { |
| 1976 | /************************************** |
| 1977 | * |
| 1978 | * P A G _ s e t _ s w e e p _ i n t e r v a l |
| 1979 | * |
| 1980 | ************************************** |
| 1981 | * |
| 1982 | * Functional description |
| 1983 | * Set sweep interval. |
| 1984 | * |
| 1985 | **************************************/ |
| 1986 | |
| 1987 | SET_TDBB(tdbb); |
| 1988 | add_clump(tdbb, HDR_sweep_interval, sizeof(SLONG), (UCHAR*) &interval, CLUMP_REPLACE); |
| 1989 | } |
| 1990 | |
| 1991 | |
| 1992 | static void find_clump_space(thread_db* tdbb, |
no test coverage detected