From d54f0ab39b7707dc6d1ea10dca42f9e67e8ebcfc Mon Sep 17 00:00:00 2001 From: wessels <> Date: Wed, 16 Dec 1998 13:34:31 +0000 Subject: [PATCH] these functions can be static --- src/store_swapout.cc | 8 +++++--- 1 file changed, 5 insertions(+), 3 deletions(-) diff --git a/src/store_swapout.cc b/src/store_swapout.cc index 542c666b70..667cd436b8 100644 --- a/src/store_swapout.cc +++ b/src/store_swapout.cc @@ -1,6 +1,6 @@ /* - * $Id: store_swapout.cc,v 1.38 1998/12/05 00:54:45 wessels Exp $ + * $Id: store_swapout.cc,v 1.39 1998/12/16 06:34:31 wessels Exp $ * * DEBUG: section 20 Storage Manager Swapout Functions * AUTHOR: Duane Wessels @@ -43,9 +43,11 @@ typedef struct swapout_ctrl_t { static FOCB storeSwapOutFileOpened; static off_t storeSwapOutObjectBytesOnDisk(const MemObject *); +static void storeSwapOutStart(StoreEntry * e); +static DWCB storeSwapOutHandle; /* start swapping object to disk */ -void +static void storeSwapOutStart(StoreEntry * e) { swapout_ctrl_t *ctrlp = xmalloc(sizeof(swapout_ctrl_t)); @@ -65,7 +67,7 @@ storeSwapOutStart(StoreEntry * e) e); } -void +static void storeSwapOutHandle(int fdnotused, int flag, size_t len, void *data) { swapout_ctrl_t *ctrlp = data; -- 2.47.2