mirror of
https://github.com/simtactics/niotso.git
synced 2025-03-23 11:22:20 +00:00
26 lines
680 B
C
26 lines
680 B
C
|
/*-------------------------------------------------------------------------
|
||
|
*
|
||
|
* pqsignal.h
|
||
|
* prototypes for the reliable BSD-style signal(2) routine.
|
||
|
*
|
||
|
*
|
||
|
* Portions Copyright (c) 1996-2011, PostgreSQL Global Development Group
|
||
|
* Portions Copyright (c) 1994, Regents of the University of California
|
||
|
*
|
||
|
* src/interfaces/libpq/pqsignal.h
|
||
|
*
|
||
|
* NOTES
|
||
|
* This shouldn't be in libpq, but the monitor and some other
|
||
|
* things need it...
|
||
|
*
|
||
|
*-------------------------------------------------------------------------
|
||
|
*/
|
||
|
#ifndef PQSIGNAL_H
|
||
|
#define PQSIGNAL_H
|
||
|
|
||
|
typedef void (*pqsigfunc) (int);
|
||
|
|
||
|
extern pqsigfunc pqsignal(int signo, pqsigfunc func);
|
||
|
|
||
|
#endif /* PQSIGNAL_H */
|