PostgreSQL Source Code  git master
fork_process.h
Go to the documentation of this file.
1 /*-------------------------------------------------------------------------
2  *
3  * fork_process.h
4  * Exports from postmaster/fork_process.c.
5  *
6  * Copyright (c) 1996-2024, PostgreSQL Global Development Group
7  *
8  * src/include/postmaster/fork_process.h
9  *
10  *-------------------------------------------------------------------------
11  */
12 #ifndef FORK_PROCESS_H
13 #define FORK_PROCESS_H
14 
15 extern pid_t fork_process(void);
16 
17 #endif /* FORK_PROCESS_H */
pid_t fork_process(void)
Definition: fork_process.c:32