From: wessels <> Date: Wed, 16 Dec 1998 13:34:31 +0000 (+0000) Subject: these functions can be static X-Git-Tag: SQUID_3_0_PRE1~2453 X-Git-Url: http://git.ipfire.org/?a=commitdiff_plain;h=d54f0ab39b7707dc6d1ea10dca42f9e67e8ebcfc;p=thirdparty%2Fsquid.git these functions can be static --- 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;