summaryrefslogtreecommitdiff
path: root/pp.h
diff options
context:
space:
mode:
authorTony Cook <tony@develop-help.com>2015-09-02 16:29:34 +1000
committerTony Cook <tony@develop-help.com>2015-09-02 16:29:34 +1000
commitd055471910c2d93ba13a4eb5385fe091aaada32f (patch)
treee35c2a09f5a5e7ffd04fd303f25b11f0f5af5b6f /pp.h
parent56e812ab8628b00bc27969baab262ffbb6dfede3 (diff)
downloadperl-d055471910c2d93ba13a4eb5385fe091aaada32f.tar.gz
[perl #120903] perlcall cleanup
- linkify references to sections - use EXTEND(SP, n) and PUSHs() instead of XPUSHs() where applicable and update prose to match - add POPu, POPul and POPpbytex to the "complete list of POP macros" and clarify the documentation for some of the existing entries, and a note about side-effects - add API documentation for POPu and POPul - use ERRSV more efficiently - approaches to thread-safety storage of SVs. - minor updates
Diffstat (limited to 'pp.h')
-rw-r--r--pp.h6
1 files changed, 6 insertions, 0 deletions
diff --git a/pp.h b/pp.h
index 828b7a2820..190b999cda 100644
--- a/pp.h
+++ b/pp.h
@@ -113,9 +113,15 @@ Pops a double off the stack.
=for apidoc Amn|IV|POPi
Pops an integer off the stack.
+=for apidoc Amn|UV|POPu
+Pops an unsigned integer off the stack.
+
=for apidoc Amn|long|POPl
Pops a long off the stack.
+=for apidoc Amn|long|POPul
+Pops an unsigned long off the stack.
+
=cut
*/