Force a checkpoint in CREATE DATABASE before starting to copy the files,
[PostgreSQL.git] / src / backend / port / dynloader / nextstep.h
blobe13debf2cf149a7a832ff30d4ab360e638764fe2
1 /*-------------------------------------------------------------------------
3 * port_protos.h
4 * port-specific prototypes for NeXT
6 * $PostgreSQL$
7 */
9 #ifndef PORT_PROTOS_H
10 #define PORT_PROTOS_H
12 #include "utils/dynamic_loader.h"
14 void *next_dlopen(char *name);
15 int next_dlclose(void *handle);
16 void *next_dlsym(void *handle, char *symbol);
17 char *next_dlerror(void);
19 #define pg_dlopen(f) next_dlopen
20 #define pg_dlsym next_dlsym
21 #define pg_dlclose next_dlclose
22 #define pg_dlerror next_dlerror
24 /* port.c */
26 #endif /* PORT_PROTOS_H */