diff options
author | jan.nijtmans <nijtmans@users.sourceforge.net> | 2012-10-24 21:22:30 (GMT) |
---|---|---|
committer | jan.nijtmans <nijtmans@users.sourceforge.net> | 2012-10-24 21:22:30 (GMT) |
commit | 66cb991a8b6edb5c8f424d1aed10e35b8113bd13 (patch) | |
tree | 781294ae5f8d82d4dd45d809249618c8dc528f39 /doc | |
parent | 20fbd4bb4bba957f3d3b611befff43c7fea5676d (diff) | |
download | tcl-66cb991a8b6edb5c8f424d1aed10e35b8113bd13.zip tcl-66cb991a8b6edb5c8f424d1aed10e35b8113bd13.tar.gz tcl-66cb991a8b6edb5c8f424d1aed10e35b8113bd13.tar.bz2 |
syntax improvement: expect options before the filename
<p>start at documentation
Diffstat (limited to 'doc')
-rw-r--r-- | doc/Load.3 | 3 | ||||
-rw-r--r-- | doc/load.n | 15 |
2 files changed, 14 insertions, 4 deletions
@@ -31,7 +31,8 @@ Array of names of symbols to be resolved during the load of the library, or NULL if no symbols are to be resolved. If an array is given, the last entry in the array must be NULL. .AP int flags in -Reserved for future expansion. Must be 0. +The value should normally be 0, but \fITCL_LOAD_GLOBALfR or \fITCL_LOAD_LAZYfR +or a combination of those two is allowed as well. .AP void *procPtrs out Points to an array that will hold the addresses of the functions described in the \fIsymbols\fR argument. Should be NULL if no symbols are to be resolved. @@ -11,11 +11,11 @@ .SH NAME load \- Load machine code and initialize new commands .SH SYNOPSIS -\fBload \fIfileName\fR +\fBload\fR ?\fB\-global\fR? ?\fB\-lazy\fR? ?\fB\-\-\fR? \fIfileName\fR .br -\fBload \fIfileName packageName\fR +\fBload ?\fB\-global\fR? ?\fB\-lazy\fR? ?\fB\-\-\fR? \fIfileName packageName\fR .br -\fBload \fIfileName packageName interp\fR +\fBload ?\fB\-global\fR? ?\fB\-lazy\fR? ?\fB\-\-\fR? \fIfileName packageName interp\fR .BE .SH DESCRIPTION .PP @@ -104,6 +104,15 @@ Otherwise, the \fBload\fR command searches for a dynamically loaded package by that name, and uses it if it is found. If several different files have been \fBload\fRed with different versions of the package, Tcl picks the file that was loaded first. +.PP +If \fB\-global\fR is specified preceding the filename, all symbols +found in the shared library are exported for global use by other +libraries. The option \fB\-lazy\fR delays the actual loading of +symbols until their first actual use. The options may be abbreviated. +The option \fB\-\-\fR indicates the end of the options, and should +be used if you wish to use a filename which starts with \fB\-\fR. +On platforms which do not support the \fB\-global\fR or \fB\-lazy\fR +options, the options still exist but have no effect. .SH "PORTABILITY ISSUES" .TP \fBWindows\fR\0\0\0\0\0 |