2
0

auxprocess.h 627 B

1234567891011121314151617181920
  1. /*-------------------------------------------------------------------------
  2. * auxprocess.h
  3. * include file for functions related to auxiliary processes.
  4. *
  5. *
  6. * Portions Copyright (c) 1996-2022, PostgreSQL Global Development Group
  7. * Portions Copyright (c) 1994, Regents of the University of California
  8. *
  9. * IDENTIFICATION
  10. * src/include/postmaster/auxprocess.h
  11. *-------------------------------------------------------------------------
  12. */
  13. #ifndef AUXPROCESS_H
  14. #define AUXPROCESS_H
  15. #include "miscadmin.h"
  16. extern void AuxiliaryProcessMain(AuxProcType auxtype) pg_attribute_noreturn();
  17. #endif /* AUXPROCESS_H */