diff options
author | Richard M. Stallman <rms@gnu.org> | 2006-05-11 00:59:41 +0000 |
---|---|---|
committer | Richard M. Stallman <rms@gnu.org> | 2006-05-11 00:59:41 +0000 |
commit | e4c068c0634ea217e7389c3729101a2f1d09e0b3 (patch) | |
tree | 2fbcec54497d4c4e2ca0d914b73b0dd31a236f41 | |
parent | 3e12c6736d4a18f0b08e5689b3493eab74bb04e7 (diff) | |
download | emacs-e4c068c0634ea217e7389c3729101a2f1d09e0b3.tar.gz |
(Writing Emacs Primitives): Clarify GCPRO rules.
-rw-r--r-- | lispref/ChangeLog | 4 | ||||
-rw-r--r-- | lispref/internals.texi | 43 |
2 files changed, 28 insertions, 19 deletions
diff --git a/lispref/ChangeLog b/lispref/ChangeLog index 56e6dc9ba3f..d490e2ab35f 100644 --- a/lispref/ChangeLog +++ b/lispref/ChangeLog @@ -1,3 +1,7 @@ +2006-05-10 Richard Stallman <rms@gnu.org> + + * internals.texi (Writing Emacs Primitives): Clarify GCPRO rules. + 2006-05-10 Reiner Steib <Reiner.Steib@gmx.de> * variables.texi (File Local Variables): Recommend to quote lambda diff --git a/lispref/internals.texi b/lispref/internals.texi index f46a162aef1..bc35e215574 100644 --- a/lispref/internals.texi +++ b/lispref/internals.texi @@ -615,32 +615,37 @@ arguments, and the second is the address of a block containing their values. They have types @code{int} and @w{@code{Lisp_Object *}}. Within the function @code{For} itself, note the use of the macros -@code{GCPRO1} and @code{UNGCPRO}. @code{GCPRO1} is used to ``protect'' -a variable from garbage collection---to inform the garbage collector that -it must look in that variable and regard its contents as an accessible -object. This is necessary whenever you call @code{Feval} or anything -that can directly or indirectly call @code{Feval}. At such a time, any -Lisp object that you intend to refer to again must be protected somehow. -@code{UNGCPRO} cancels the protection of the variables that are -protected in the current function. It is necessary to do this explicitly. +@code{GCPRO1} and @code{UNGCPRO}. @code{GCPRO1} is used to +``protect'' a variable from garbage collection---to inform the garbage +collector that it must look in that variable and regard its contents +as an accessible object. GC protection is necessary whenever you call +@code{Feval} or anything that can directly or indirectly call +@code{Feval}. At such a time, any Lisp object that this function may +refer to again must be protected somehow. It suffices to ensure that at least one pointer to each object is -GC-protected; as long as the object is not recycled, all pointers to -it remain valid. So if you are sure that a local variable points to -an object that will be preserved by some other pointer, that local -variable does not need a @code{GCPRO}. (Formerly, strings were an -exception to this rule; in older Emacs versions, every pointer to a -string needed to be marked by GC.) +GC-protected; that way, the object cannot be recycled, so all pointers +to it remain valid. Thus, a particular local variable can do without +protection if it is certain that the object it points to will be +preserved by some other pointer (such as another local variable which +has a @code{GCPRO})@footnote{Formerly, strings were a special +exception; in older Emacs versions, every local variable that might +point to a string needed a @code{GCPRO}.}. Otherwise, the local +variable needs a @code{GCPRO}. The macro @code{GCPRO1} protects just one local variable. If you -want to protect two, use @code{GCPRO2} instead; repeating -@code{GCPRO1} will not work. Macros, @code{GCPRO3}, @code{GCPRO4}, -@code{GCPRO5}, and @code{GCPRO6} also exist. These macros implicitly -use local variables such as @code{gcpro1}; you must declare these -explicitly, with type @code{struct gcpro}. Thus, if you use +want to protect two variables, use @code{GCPRO2} instead; repeating +@code{GCPRO1} will not work. Macros @code{GCPRO3}, @code{GCPRO4}, +@code{GCPRO5}, and @code{GCPRO6} also exist. All these macros +implicitly use local variables such as @code{gcpro1}; you must declare +these explicitly, with type @code{struct gcpro}. Thus, if you use @code{GCPRO2}, you must declare @code{gcpro1} and @code{gcpro2}. Alas, we can't explain all the tricky details here. + @code{UNGCPRO} cancels the protection of the variables that are +protected in the current function. It is necessary to do this +explicitly. + Built-in functions that take a variable number of arguments actually accept two arguments at the C level: the number of Lisp arguments, and a @code{Lisp_Object *} pointer to a C vector containing those Lisp |