mirror of
https://git.postgresql.org/git/postgresql.git
synced 2026-04-10 10:57:02 +08:00
Also "make reformat-dat-files". The only change worthy of note is that pgindent messed up the formatting of launcher.c's struct LogicalRepWorkerId, which led me to notice that that struct wasn't used at all anymore, so I just took it out.
26 lines
871 B
C
26 lines
871 B
C
/*-------------------------------------------------------------------------
|
|
* execAsync.h
|
|
* Support functions for asynchronous execution
|
|
*
|
|
* Portions Copyright (c) 1996-2021, PostgreSQL Global Development Group
|
|
* Portions Copyright (c) 1994, Regents of the University of California
|
|
*
|
|
* IDENTIFICATION
|
|
* src/include/executor/execAsync.h
|
|
*-------------------------------------------------------------------------
|
|
*/
|
|
|
|
#ifndef EXECASYNC_H
|
|
#define EXECASYNC_H
|
|
|
|
#include "nodes/execnodes.h"
|
|
|
|
extern void ExecAsyncRequest(AsyncRequest *areq);
|
|
extern void ExecAsyncConfigureWait(AsyncRequest *areq);
|
|
extern void ExecAsyncNotify(AsyncRequest *areq);
|
|
extern void ExecAsyncResponse(AsyncRequest *areq);
|
|
extern void ExecAsyncRequestDone(AsyncRequest *areq, TupleTableSlot *result);
|
|
extern void ExecAsyncRequestPending(AsyncRequest *areq);
|
|
|
|
#endif /* EXECASYNC_H */
|