hpux.c

来自「关系型数据库 Postgresql 6.5.2」· C语言 代码 · 共 58 行

C
58
字号
/*------------------------------------------------------------------------- * * dynloader.c *	  dynamic loader for HP-UX using the shared library mechanism * * Copyright (c) 1994, Regents of the University of California * * * IDENTIFICATION *	  $Header: /usr/local/cvsroot/pgsql/src/backend/port/dynloader/hpux.c,v 1.7 1999/02/13 23:17:20 momjian Exp $ * *	NOTES *		all functions are defined here -- it's impossible to trace the *		shl_* routines from the bundled HP-UX debugger. * *------------------------------------------------------------------------- *//* System includes */#include <stdio.h>#include <a.out.h>#include <dl.h>#include "postgres.h"#include "fmgr.h"#include "utils/dynamic_loader.h"#include "dynloader.h"void *pg_dlopen(char *filename){	shl_t		handle = shl_load(filename, BIND_DEFERRED, 0);	return (void *) handle;}func_ptrpg_dlsym(void *handle, char *funcname){	func_ptr	f;	if (shl_findsym((shl_t *) & handle, funcname, TYPE_PROCEDURE, &f) == -1)		f = (func_ptr) NULL;	return f;}voidpg_dlclose(void *handle){	shl_unload((shl_t) handle);}char *pg_dlerror(){	static char errmsg[] = "shl_load failed";	return errmsg;}

⌨️ 快捷键说明

复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?