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

数据库系统

开发平台:

Unix_Linux

  1. /*-------------------------------------------------------------------------
  2.  *
  3.  * async.h
  4.  *   Asynchronous notification: NOTIFY, LISTEN, UNLISTEN
  5.  *
  6.  * Copyright (c) 1994, Regents of the University of California
  7.  *
  8.  * $Id: async.h,v 1.11 1999/02/13 23:21:17 momjian Exp $
  9.  *
  10.  *-------------------------------------------------------------------------
  11.  */
  12. #ifndef ASYNC_H
  13. #define ASYNC_H
  14. #include <postgres.h>
  15. /* notify-related SQL statements */
  16. extern void Async_Notify(char *relname);
  17. extern void Async_Listen(char *relname, int pid);
  18. extern void Async_Unlisten(char *relname, int pid);
  19. /* perform (or cancel) outbound notify processing at transaction commit */
  20. extern void AtCommit_Notify(void);
  21. extern void AtAbort_Notify(void);
  22. /* signal handler for inbound notifies (SIGUSR2) */
  23. extern void Async_NotifyHandler(SIGNAL_ARGS);
  24. /*
  25.  * enable/disable processing of inbound notifies directly from signal handler.
  26.  * The enable routine first performs processing of any inbound notifies that
  27.  * have occurred since the last disable.  These are meant to be called ONLY
  28.  * from the appropriate places in PostgresMain().
  29.  */
  30. extern void EnableNotifyInterrupt(void);
  31. extern void DisableNotifyInterrupt(void);
  32. #endif  /* ASYNC_H */