PostgreSQL Source Code git master
All Data Structures Namespaces Files Functions Variables Typedefs Enumerations Enumerator Macros Pages
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-2025, 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
15extern pid_t fork_process(void);
16
17#endif /* FORK_PROCESS_H */
pid_t fork_process(void)
Definition: fork_process.c:33