diff options
author | Heikki Linnakangas <heikki.linnakangas@iki.fi> | 2024-07-30 15:19:46 +0300 |
---|---|---|
committer | Heikki Linnakangas <heikki.linnakangas@iki.fi> | 2024-07-30 15:19:46 +0300 |
commit | 47c98035c6fbff01724b9a646196c92b99faa6bf (patch) | |
tree | e4616c591c60ac6cbb46e44ad516f8cc1dff0315 /src | |
parent | 524d490a9f4ab81d86bbedc6e429fbc27776351c (diff) | |
download | postgresql-47c98035c6fbff01724b9a646196c92b99faa6bf.tar.gz postgresql-47c98035c6fbff01724b9a646196c92b99faa6bf.zip |
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.
Diffstat (limited to 'src')
-rw-r--r-- | src/include/postmaster/postmaster.h | 2 |
1 files changed, 0 insertions, 2 deletions
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 |