mirror of
https://github.com/postgres/postgres.git
synced 2026-01-13 12:22:55 +03:00
18 lines
506 B
C
18 lines
506 B
C
/*-------------------------------------------------------------------------
|
|
*
|
|
* fork_process.h
|
|
* Exports from postmaster/fork_process.c.
|
|
*
|
|
* Copyright (c) 1996-2005, PostgreSQL Global Development Group
|
|
*
|
|
* $PostgreSQL: pgsql/src/include/postmaster/fork_process.h,v 1.3 2005/10/15 02:49:46 momjian Exp $
|
|
*
|
|
*-------------------------------------------------------------------------
|
|
*/
|
|
#ifndef FORK_PROCESS_H
|
|
#define FORK_PROCESS_H
|
|
|
|
extern pid_t fork_process(void);
|
|
|
|
#endif /* FORK_PROCESS_H */
|