Remove leftover function declaration
authorHeikki Linnakangas <[email protected]>
Tue, 30 Jul 2024 12:19:46 +0000 (15:19 +0300)
committerHeikki Linnakangas <[email protected]>
Tue, 30 Jul 2024 12:19:46 +0000 (15:19 +0300)
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.

src/include/postmaster/postmaster.h

index 4cc59a662eead9a7c62d8abbc8a490f07a8d0f96..63c12917cfe2bf13c0537945e458087e5d3cc2e8 100644 (file)
@@ -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