mirror of
https://github.com/postgres/postgres.git
synced 2025-06-27 23:21:58 +03:00
This is the minimal version of the Darwin support patch from
Bruce Hartzler <bruceh@mail.utexas.edu>. It contains shared library support, regression test map, and the usual template files. The dynamic loader is missing, the spin lock code apparently doesn't assemble due to syntax problems, and semaphores are to be hoped for from Apple.
This commit is contained in:
5
src/backend/port/dynloader/darwin.h
Normal file
5
src/backend/port/dynloader/darwin.h
Normal file
@ -0,0 +1,5 @@
|
||||
/* $Header: /cvsroot/pgsql/src/backend/port/dynloader/darwin.h,v 1.1 2000/10/31 19:55:19 petere Exp $ */
|
||||
void *pg_dlopen(char *filename);
|
||||
PGFunction pg_dlsym(void *handle, char *funcname);
|
||||
void pg_dlclose(void *handle);
|
||||
char *pg_dlerror();
|
Reference in New Issue
Block a user