Initial commit of OpenSPARC T2 architecture model.
[OpenSPARC-T2-SAM] / sam-t2 / devtools / amd64 / html / python / lib / module-dl.html
<!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.0 Transitional//EN">
<html>
<head>
<link rel="STYLESHEET" href="lib.css" type='text/css' />
<link rel="SHORTCUT ICON" href="../icons/pyfav.png" type="image/png" />
<link rel='start' href='../index.html' title='Python Documentation Index' />
<link rel="first" href="lib.html" title='Python Library Reference' />
<link rel='contents' href='contents.html' title="Contents" />
<link rel='index' href='genindex.html' title='Index' />
<link rel='last' href='about.html' title='About this document...' />
<link rel='help' href='about.html' title='About this document...' />
<link rel="next" href="module-dbm.html" />
<link rel="prev" href="module-crypt.html" />
<link rel="parent" href="unix.html" />
<link rel="next" href="dl-objects.html" />
<meta name='aesop' content='information' />
<title>8.5 dl -- Call C functions in shared objects</title>
</head>
<body>
<DIV CLASS="navigation">
<div id='top-navigation-panel' xml:id='top-navigation-panel'>
<table align="center" width="100%" cellpadding="0" cellspacing="2">
<tr>
<td class='online-navigation'><a rel="prev" title="8.4 crypt "
href="module-crypt.html"><img src='../icons/previous.png'
border='0' height='32' alt='Previous Page' width='32' /></A></td>
<td class='online-navigation'><a rel="parent" title="8. Unix Specific Services"
href="unix.html"><img src='../icons/up.png'
border='0' height='32' alt='Up One Level' width='32' /></A></td>
<td class='online-navigation'><a rel="next" title="8.5.1 Dl Objects"
href="dl-objects.html"><img src='../icons/next.png'
border='0' height='32' alt='Next Page' width='32' /></A></td>
<td align="center" width="100%">Python Library Reference</td>
<td class='online-navigation'><a rel="contents" title="Table of Contents"
href="contents.html"><img src='../icons/contents.png'
border='0' height='32' alt='Contents' width='32' /></A></td>
<td class='online-navigation'><a href="modindex.html" title="Module Index"><img src='../icons/modules.png'
border='0' height='32' alt='Module Index' width='32' /></a></td>
<td class='online-navigation'><a rel="index" title="Index"
href="genindex.html"><img src='../icons/index.png'
border='0' height='32' alt='Index' width='32' /></A></td>
</tr></table>
<div class='online-navigation'>
<b class="navlabel">Previous:</b>
<a class="sectref" rel="prev" href="module-crypt.html">8.4 crypt </A>
<b class="navlabel">Up:</b>
<a class="sectref" rel="parent" href="unix.html">8. Unix Specific Services</A>
<b class="navlabel">Next:</b>
<a class="sectref" rel="next" href="dl-objects.html">8.5.1 Dl Objects</A>
</div>
<hr /></div>
</DIV>
<!--End of Navigation Panel-->
<H1><A NAME="SECTION0010500000000000000000">
8.5 <tt class="module">dl</tt> --
Call C functions in shared objects</A>
</H1>
<A NAME="module-dl"></A>
<p class="availability">Availability: <span
class="platform">Unix</span>.</p>
<P>
The <tt class="module">dl</tt> module defines an interface to the
<tt class="cfunction">dlopen()</tt> function, which is the most common interface on
<span class="Unix">Unix</span> platforms for handling dynamically linked libraries. It allows
the program to call arbitrary functions in such a library.
<P>
<span class="note"><b class="label">Note:</b>
This module will not work unless
<code>sizeof(int) == sizeof(long) == sizeof(char *)</code>
If this is not the case, <tt class="exception">SystemError</tt> will be raised on
import.</span>
<P>
The <tt class="module">dl</tt> module defines the following function:
<P>
<dl><dt><table cellpadding="0" cellspacing="0"><tr valign="baseline">
<td><nobr><b><tt id='l2h-2988' xml:id='l2h-2988' class="function">open</tt></b>(</nobr></td>
<td><var>name</var><big>[</big><var>, mode<code> = RTLD_LAZY</code></var><big>]</big><var></var>)</td></tr></table></dt>
<dd>
Open a shared object file, and return a handle. Mode
signifies late binding (<tt class="constant">RTLD_LAZY</tt>) or immediate binding
(<tt class="constant">RTLD_NOW</tt>). Default is <tt class="constant">RTLD_LAZY</tt>. Note that some
systems do not support <tt class="constant">RTLD_NOW</tt>.
<P>
Return value is a dlobject.
</dl>
<P>
The <tt class="module">dl</tt> module defines the following constants:
<P>
<dl><dt><b><tt id='l2h-2989' xml:id='l2h-2989'>RTLD_LAZY</tt></b></dt>
<dd>
Useful as an argument to <tt class="function">open()</tt>.
</dd></dl>
<P>
<dl><dt><b><tt id='l2h-2990' xml:id='l2h-2990'>RTLD_NOW</tt></b></dt>
<dd>
Useful as an argument to <tt class="function">open()</tt>. Note that on systems
which do not support immediate binding, this constant will not appear
in the module. For maximum portability, use <tt class="function">hasattr()</tt> to
determine if the system supports immediate binding.
</dd></dl>
<P>
The <tt class="module">dl</tt> module defines the following exception:
<P>
<dl><dt><b><span class="typelabel">exception</span>&nbsp;<tt id='l2h-2991' xml:id='l2h-2991' class="exception">error</tt></b></dt>
<dd>
Exception raised when an error has occurred inside the dynamic loading
and linking routines.
</dd></dl>
<P>
Example:
<P>
<div class="verbatim"><pre>
&gt;&gt;&gt; import dl, time
&gt;&gt;&gt; a=dl.open('/lib/libc.so.6')
&gt;&gt;&gt; a.call('time'), time.time()
(929723914, 929723914.498)
</pre></div>
<P>
This example was tried on a Debian GNU/Linux system, and is a good
example of the fact that using this module is usually a bad alternative.
<P>
<p><br /></p><hr class='online-navigation' />
<div class='online-navigation'>
<!--Table of Child-Links-->
<A NAME="CHILD_LINKS"><STRONG>Subsections</STRONG></a>
<UL CLASS="ChildLinks">
<LI><A href="dl-objects.html">8.5.1 Dl Objects</a>
</ul>
<!--End of Table of Child-Links-->
</div>
<DIV CLASS="navigation">
<div class='online-navigation'>
<p></p><hr />
<table align="center" width="100%" cellpadding="0" cellspacing="2">
<tr>
<td class='online-navigation'><a rel="prev" title="8.4 crypt "
href="module-crypt.html"><img src='../icons/previous.png'
border='0' height='32' alt='Previous Page' width='32' /></A></td>
<td class='online-navigation'><a rel="parent" title="8. Unix Specific Services"
href="unix.html"><img src='../icons/up.png'
border='0' height='32' alt='Up One Level' width='32' /></A></td>
<td class='online-navigation'><a rel="next" title="8.5.1 Dl Objects"
href="dl-objects.html"><img src='../icons/next.png'
border='0' height='32' alt='Next Page' width='32' /></A></td>
<td align="center" width="100%">Python Library Reference</td>
<td class='online-navigation'><a rel="contents" title="Table of Contents"
href="contents.html"><img src='../icons/contents.png'
border='0' height='32' alt='Contents' width='32' /></A></td>
<td class='online-navigation'><a href="modindex.html" title="Module Index"><img src='../icons/modules.png'
border='0' height='32' alt='Module Index' width='32' /></a></td>
<td class='online-navigation'><a rel="index" title="Index"
href="genindex.html"><img src='../icons/index.png'
border='0' height='32' alt='Index' width='32' /></A></td>
</tr></table>
<div class='online-navigation'>
<b class="navlabel">Previous:</b>
<a class="sectref" rel="prev" href="module-crypt.html">8.4 crypt </A>
<b class="navlabel">Up:</b>
<a class="sectref" rel="parent" href="unix.html">8. Unix Specific Services</A>
<b class="navlabel">Next:</b>
<a class="sectref" rel="next" href="dl-objects.html">8.5.1 Dl Objects</A>
</div>
</div>
<hr />
<span class="release-info">Release 2.4.2, documentation updated on 28 September 2005.</span>
</DIV>
<!--End of Navigation Panel-->
<ADDRESS>
See <i><a href="about.html">About this document...</a></i> for information on suggesting changes.
</ADDRESS>
</BODY>
</HTML>