From: Heikki Linnakangas Date: Tue, 30 Jul 2024 12:19:46 +0000 (+0300) Subject: Remove leftover function declaration X-Git-Tag: REL_18_BETA1~2253 X-Git-Url: http://git.ipfire.org/?a=commitdiff_plain;h=47c98035c6fbff01724b9a646196c92b99faa6bf;p=thirdparty%2Fpostgresql.git Remove leftover function declaration Commit 9d9b9d46f3 removed the function (or rather, moved it to a different source file and renamed it to SendCancelRequest), but forgot the declaration in the header file. --- diff --git a/src/include/postmaster/postmaster.h b/src/include/postmaster/postmaster.h index 4cc59a662ee..63c12917cfe 100644 --- a/src/include/postmaster/postmaster.h +++ b/src/include/postmaster/postmaster.h @@ -63,8 +63,6 @@ extern int MaxLivePostmasterChildren(void); extern bool PostmasterMarkPIDForWorkerNotify(int); -extern void processCancelRequest(int backendPID, int32 cancelAuthCode); - #ifdef WIN32 extern void pgwin32_register_deadchild_callback(HANDLE procHandle, DWORD procId); #endif