From: Heikki Linnakangas Date: Mon, 13 Sep 2010 10:14:25 +0000 (+0000) Subject: Remove prototype for non-existent function from walreceiver.h. Tidy up by X-Git-Tag: REL9_1_ALPHA2~205 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=d1c33ccf62faaf16ac58418c73870e8fe1129dd5;p=postgresql Remove prototype for non-existent function from walreceiver.h. Tidy up by separating prototypes for functions in walreceiver.c and walreceiverfuncs.c with comments. --- diff --git a/src/include/replication/walreceiver.h b/src/include/replication/walreceiver.h index 9e59db4ee0..ef033ceb2c 100644 --- a/src/include/replication/walreceiver.h +++ b/src/include/replication/walreceiver.h @@ -5,7 +5,7 @@ * * Portions Copyright (c) 2010-2010, PostgreSQL Global Development Group * - * $PostgreSQL: pgsql/src/include/replication/walreceiver.h,v 1.11 2010/07/06 19:19:00 momjian Exp $ + * $PostgreSQL: pgsql/src/include/replication/walreceiver.h,v 1.12 2010/09/13 10:14:25 heikki Exp $ * *------------------------------------------------------------------------- */ @@ -87,12 +87,14 @@ extern PGDLLIMPORT walrcv_receive_type walrcv_receive; typedef void (*walrcv_disconnect_type) (void); extern PGDLLIMPORT walrcv_disconnect_type walrcv_disconnect; +/* prototypes for functions in walreceiver.c */ extern void WalReceiverMain(void); + +/* prototypes for functions in walreceiverfuncs.c */ extern Size WalRcvShmemSize(void); extern void WalRcvShmemInit(void); extern void ShutdownWalRcv(void); extern bool WalRcvInProgress(void); -extern XLogRecPtr WaitNextXLogAvailable(XLogRecPtr recptr, bool *finished); extern void RequestXLogStreaming(XLogRecPtr recptr, const char *conninfo); extern XLogRecPtr GetWalRcvWriteRecPtr(XLogRecPtr *latestChunkStart);