⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 tclloaddld.c

📁 rtai-3.1-test3的源代码(Real-Time Application Interface )
💻 C
字号:
/*  * tclLoadDld.c -- * *	This procedure provides a version of dlopen() that *	works with the "dld_link" and "dld_get_func" library procedures *	for dynamic loading.  It has been tested on Linux 1.1.95 and *	dld-3.2.7.  This file probably isn't needed anymore, since it *	makes more sense to use "dl_open" etc. * * Copyright (c) 1995 Sun Microsystems, Inc. * * See the file "license.terms" for information on usage and redistribution * of this file, and for a DISCLAIMER OF ALL WARRANTIES. * * SCCS: @(#) tclLoadDld.c 1.4 96/02/15 11:58:46 */#include "tcl.h"#include "compat/dlfcn.h"#include "dld.h"/* *---------------------------------------------------------------------- * * dlopen -- * *	This function is an implementation of dlopen() using *	the dld library. * * Results: *	Returns the handle of the newly loaded library, or NULL on *	failure. * * Side effects: *	Loads the specified library into the process. * *---------------------------------------------------------------------- */static int returnCode = 0;extern char *tclExecutableName;VOID *dlopen(path, mode)    CONST char *path;    int mode;{    static int firstTime = 1;    /*     *  The dld package needs to know the pathname to the tcl binary.     *  If that's not know, return an error.     */    returnCode = 0;    if (firstTime) {	if (tclExecutableName == NULL) {	    return (VOID *) NULL;	}	returnCode = dld_init(tclExecutableName);	if (returnCode != 0) {	    return (VOID *) NULL;	}	firstTime = 0;    }    if ((path != NULL) && ((returnCode = dld_link(path)) != 0)) {	return (VOID *) NULL;    }    return (VOID *) 1;}VOID *dlsym(handle, symbol)    VOID *handle;    CONST char *symbol;{    return (VOID *) dld_get_func(symbol);}char *dlerror(){    if (tclExecutableName == NULL) {	return "don't know name of application binary file, so can't initialize dynamic loader";    }    return dld_strerror(returnCode);}intdlclose(handle)    VOID *handle;{    return 0;}

⌨️ 快捷键说明

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