mirror of
https://github.com/simtactics/niotso.git
synced 2025-03-24 11:49:07 +00:00
17 lines
447 B
C
17 lines
447 B
C
/*-------------------------------------------------------------------------
|
|
*
|
|
* fork_process.h
|
|
* Exports from postmaster/fork_process.c.
|
|
*
|
|
* Copyright (c) 1996-2011, PostgreSQL Global Development Group
|
|
*
|
|
* src/include/postmaster/fork_process.h
|
|
*
|
|
*-------------------------------------------------------------------------
|
|
*/
|
|
#ifndef FORK_PROCESS_H
|
|
#define FORK_PROCESS_H
|
|
|
|
extern pid_t fork_process(void);
|
|
|
|
#endif /* FORK_PROCESS_H */
|