o Finish the implementation of the "variant" feature (i.e. runtime dispatch on function argument types).
Can someone elaborate on this?
Overloading.
variant void my_exit(int bar) { exit(bar); }
variant void my_exit(string bar) { werror(bar); exit(17); }
A keyword is used to catch errorenous multiple definitions.
o Fix LXR view of the pike source on the pike site.
LXR?
Source code viwer with cross referencing support. Every sybol is a link to where it was defined.
/ Martin Nilsson (saturator)
Previous text:
2003-10-02 17:22: Subject: Some tasks from the conference
o Dump pike backtraces on SIGSEGV.
I would like an option to pike that dumps a pike backtrace on SIGINT as well. (Or as default behaviour.)
Can Pike backtraces be dumped on SIGSEGV? How wiill the security mechanism around that look like? Turn of catching SIGSEGV in the SIGSEGV handler?
(Speaking of which, maybe SIGQUIT should be trapped by Hilfe to reset the terminal?)
o Finish the implementation of the "variant" feature (i.e. runtime dispatch on function argument types).
Can someone elaborate on this?
o Fix LXR view of the pike source on the pike site.
LXR?
o Implement this_function().
Is this tricky?
/ Mirar