From: simonmar Date: Mon, 23 Jul 2001 10:43:42 +0000 (+0000) Subject: [project @ 2001-07-23 10:43:42 by simonmar] X-Git-Tag: Approximately_9120_patches~1485 X-Git-Url: http://git.megacz.com/?a=commitdiff_plain;h=9a6296aaa11743c44e303c82d7a4bfa34201a39e;p=ghc-hetmet.git [project @ 2001-07-23 10:43:42 by simonmar] The real version of this file is in ghc/includes/. --- diff --git a/ghc/rts/Linker.h b/ghc/rts/Linker.h deleted file mode 100644 index c143062..0000000 --- a/ghc/rts/Linker.h +++ /dev/null @@ -1,26 +0,0 @@ -/* ----------------------------------------------------------------------------- - * $Id: Linker.h,v 1.5 2001/06/06 14:03:41 sewardj Exp $ - * - * (c) The GHC Team, 2000 - * - * RTS Object Linker - * - * ---------------------------------------------------------------------------*/ - -/* initialize the object linker */ -void initLinker( void ); - -/* lookup a symbol in the hash table */ -void *lookupSymbol( char *lbl ); - -/* delete an object from the pool */ -HsInt unloadObj( char *path ); - -/* add an obj (populate the global symbol table, but don't resolve yet) */ -HsInt loadObj( char *path ); - -/* resolve all the currently unlinked objects in memory */ -HsInt resolveObjs( void ); - -/* load a dynamic library */ -char *addDLL( char* path, char* dll_name );