pqsignal.h
上传用户:blenddy
上传日期:2007-01-07
资源大小:6495k
文件大小:1k
源码类别:

数据库系统

开发平台:

Unix_Linux

  1. /*-------------------------------------------------------------------------
  2.  *
  3.  * pqsignal.h
  4.  *   prototypes for the reliable BSD-style signal(2) routine.
  5.  *
  6.  *
  7.  * Copyright (c) 1994, Regents of the University of California
  8.  *
  9.  * $Id: pqsignal.h,v 1.9 1999/02/13 23:21:36 momjian Exp $
  10.  *
  11.  * NOTES
  12.  *   This shouldn't be in libpq, but the monitor and some other
  13.  *   things need it...
  14.  *
  15.  *-------------------------------------------------------------------------
  16.  */
  17. #ifndef PQSIGNAL_H
  18. #define PQSIGNAL_H
  19. typedef void (*pqsigfunc) (int);
  20. extern pqsigfunc pqsignal(int signo, pqsigfunc func);
  21. #endif  /* PQSIGNAL_H */