NextPrevUpTopContentsIndex

foreign-symbol-address

Function
Package

link-load

Signature

foreign-symbol-address name &key errorp functionp => result

Arguments

name

The name of a foreign symbol.

errorp

A boolean.

functionp

A boolean.

Values

result

The address of name or nil .

Description

The foreign-symbol-address function is used to find out whether a foreign symbol is defined, by looking for it in the foreign-symbol table. If its associated object code has been loaded into the image, its address is returned. Otherwise nil is returned, unless errorp is nil .

The errorp keyword defines the behavior of the function when a symbol has not been defined. If it is non- nil (which is the default value), then an error will be signalled. If it is nil , no error will be reported, and the function will return nil .

The functionp keyword is used to specify the kind of symbol sought. If it is t , foreign-symbol-address will assume that name is the name of a function. If it is nil it will assume that name is the name of a variable. The default value is t .

Example
(foreign-symbol-address 'chmod)
See also

get-foreign-symbol


LispWorks Reference Manual - 12 Mar 2008

NextPrevUpTopContentsIndex