Re: A tentative list of vtable functions

2000-10-12 Thread ye, wei
ated memory block instead of using up all your memory! [yw@yw gc]$ more mytest.c #include "gc.h" main() { int i=0; while(++i) { void *p = GC_malloc(1000); if(i%15000==0) printf("%x\n", p); } } [yw@yw gc]$ Here is its URLs: http://www.hpl.hp.com/personal/Hans_Boehm/gc/ http://www.hpl.hp.com/personal/Hans_Boehm/gc/gcdescr.html > > > Cheers, > Hildo -- Sincerely, Ye, Wei

Re: A tentative list of vtable functions

2000-10-04 Thread ye, wei
Dan Sugalski wrote: > At 03:23 PM 9/29/00 -0400, ye, wei wrote: > >Dan Sugalski wrote: > > > > > At 02:29 PM 9/29/00 +0100, David Mitchell wrote: > > > >Regarding the tentative list of vtable functions: > > > >I'm rather worried about binary o

Re: A tentative list of vtable functions

2000-09-29 Thread ye, wei
still couldn't work completely as OO. If write in C++, the vtable will be generated during the compile phrase and perfectly. > > Dan > > --"it's like this"--- > Dan Sugalski even samurai > [EMAIL PROTECTED] have teddy bears and even > teddy bears get drunk -- Sincerely, Ye, Wei

Re: New Perl rewrite - embedded Perl

2000-09-11 Thread ye, wei
eger. Take 5 minutes read this, hope it's helpful. http://www.gnu.org/software/guile/docs/data-rep.html Guile homepage: http://www.gnu.org/software/guile/guile.html > > > --tom -- Sincerely, Ye, Wei

Re: New Perl rewrite - embedded Perl

2000-09-11 Thread ye, wei
Matthew Gillman wrote: > Dear All > > I wrote a large C++ program which used embedded Perl. Later, this was changed to >embedded Python. The reasons for this included: > > 1) Python allows you to pass a pointer to an object from C/C++ to the embedded >Python interpreter, wheras Perl makes you p