picolisp

Unnamed repository; edit this file to name it for gitweb.
git clone https://logand.com/git/picolisp.git/
Log | Files | Refs | README | LICENSE

commit e9418ec529cd93923b89c23e787aaf9203cff807
parent 0dcd02906dfb947d0822f0f1ec98cd8ca4094d89
Author: Alexander Burger <abu@software-lab.de>
Date:   Sun, 19 May 2013 08:51:25 +0200

Further segfault explanations
Diffstat:
Mdoc/faq.html | 24++++++++++++++++++++----
Mdoc/ref.html | 4++--
2 files changed, 22 insertions(+), 6 deletions(-)

diff --git a/doc/faq.html b/doc/faq.html @@ -697,16 +697,32 @@ microcode levels) are s-expressions: The machine language is <i>Lisp</i>. <p><hr> <h2><a name="segfault">I get a segfault if I ...</a></h2> +<p>It is easy to produce a segfault in PicoLisp. Just set a symbol to a value +which is not a function, and call it: + +<pre><code> +: (setq foo 1) +-> 1 +: (foo) +Segmentation fault +</code></pre> + +There is another <a href="ref.html#codePointer">example</a> in the <a +href="ref.html#ev">Evaluation</a> section of the reference manual. + <p>PicoLisp is a pragmatic language. It doesn't check at runtime for all possible error conditions which won't occur during normal usage. Such errors are usually detected quickly at the first test run, and checking for them after that would just produce runtime overhead. -<p>Catching the segfault signals is also not a good idea, because the Lisp heap -is most probably be damanged afterwards. +<p>Catching the segmentation violation and bus fault signals is also not a good +idea, because the Lisp heap is most probably be damaged afterwards, possibly +creating further havoc if execution continues. -<p>It is recommended, though, to inspect the code periodically with <code><a -href="refL.html#lint">lint</a></code>. +<p>It is recommended to inspect the code periodically with <code><a +href="refL.html#lint">lint</a></code>. It will detect many potential errors. +And, most of these errors are avoided by following the PicoLisp <a +href="ref.html#conv">naming conventions</a>. <p><hr> diff --git a/doc/ref.html b/doc/ref.html @@ -1094,8 +1094,8 @@ a list, that list is evaluated to obtain an executable function. </code></pre> <p>Here, the <code>intern</code> function returns the symbol <code>car</code> -whose VAL is used then. It is also legal, though quite dangerous, to use the -code-pointer directly: +whose VAL is used then. It is also legal, though quite dangerous, to use the <a +name="codePointer">code-pointer</a> directly: <pre><code> : *