[AOLSERVER] Objectifying AOLserver

2001-05-07 Thread Kris Rehberg
We're looking for someone who can quickly and accurately change all the data types in AOLserver from strings to Tcl_Objects. Any takers? Kris

Re: [AOLSERVER] Objectifying AOLserver

2001-05-07 Thread Rob Mayoff
Are you offering to pay for this work? > We're looking for someone who can quickly and accurately change all the data > types in AOLserver from strings to Tcl_Objects. Any takers?

Re: [AOLSERVER] Objectifying AOLserver

2001-05-07 Thread Prakash Sinha
Whats the deal? ;) Prakash -Original Message- From: AOLserver Discussion [mailto:[EMAIL PROTECTED]]On Behalf Of Kris Rehberg Sent: Monday, May 07, 2001 3:56 PM To: [EMAIL PROTECTED] Subject: [AOLSERVER] Objectifying AOLserver We're looking for someone who can quickly and accur

Re: [AOLSERVER] Objectifying AOLserver

2001-05-08 Thread Kevin Mayhew
Kris, What is the time frame within which you are looking for this to be completed? Kevin

Re: [AOLSERVER] Objectifying AOLserver

2001-05-08 Thread Zoran Vasiljevic
Hi ! I've objectified the nsv_* interface and have posted a note on this list for about couple of months ago. Well, nobody seemed interested. In the meantime, I've done the same for keyl* commands and significantly expanded the nsv_* interface functionality. Now you can do much more with it and

Re: [AOLSERVER] Objectifying AOLserver

2001-05-08 Thread Tom Jackson
Zoran Vasiljevic wrote: > I've objectified the nsv_* interface and have posted a note on this list > for about couple of months ago. Well, nobody seemed interested. I would be interested! I'm working on my first C module, but I haven't had the time to read up on this. Besides your code, is there

Re: [AOLSERVER] Objectifying AOLserver

2001-05-09 Thread Zoran Vasiljevic
On Tuesday 08 May 2001 23:08, you wrote: > Zoran Vasiljevic wrote: > > I would be interested! I'm working on my first C module, but I haven't > had the time to read up on this. Besides your code, is there any > available book or resource that covers the conversion? > No problem. You can find it o

Re: [AOLSERVER] Objectifying AOLserver

2001-05-09 Thread Rob Mayoff
Zoran, I just took a look at your tcl_sv code. I do not believe that it is thread-safe, but perhaps you can convince me. Here's my rationale. Prior to 3.1+ad9, the nsd8x implementation of ns_share worked like this: when you ns_shared a variable, it called Tcl_DuplicateObj on the value of the var

Re: [AOLSERVER] Objectifying AOLserver

2001-05-09 Thread Tomasz Kosiak
On Tue, 8 May 2001, Zoran Vasiljevic wrote: > I've objectified the nsv_* interface and have posted a note on this list > for about couple of months ago. Well, nobody seemed interested. ... > Currently, on my server: > % llength [info commands ns_*] > => 162 > > Given a properly coordinated team

Re: [AOLSERVER] Objectifying AOLserver

2001-05-09 Thread Zoran Vasiljevic
On Wednesday 09 May 2001 18:49, you wrote: Hi Tomasz ! > I could help to Tcl_Objectify AOLserver. My three colleges have > declared that they will help too. So there are 4 programmers willing to > contribute their skills and time. Our experience is a few C extentions for > AOLserver so we are fa

Re: [AOLSERVER] Objectifying AOLserver

2001-05-09 Thread Zoran Vasiljevic
On Wednesday 09 May 2001 16:27, you wrote: > Zoran, I just took a look at your tcl_sv code. I do not believe that it > is thread-safe, but perhaps you can convince me. Here's my rationale. > [snip] Yuk ! This *does* compute! I mean your rationale. Thank you *very* much for pointing this out.

Re: [AOLSERVER] Objectifying AOLserver

2001-05-09 Thread Dossy
Count me in as well, even though my spare time to work on AOLserver is limited. - Dossy -- Dossy Shiobara mail: [EMAIL PROTECTED] Panoptic Computer Network web: http://www.panoptic.com/

Re: [AOLSERVER] Objectifying AOLserver

2001-05-09 Thread Rob Mayoff
> From Rob Mayoff discussion of Zoran Vasiljevic nsv_* improvements it seems > that in some cases it's improper to change strings to Tcl_Objs. It's only improper in places where values might be accessed from multiple threads. Here are some APIs that cannot be blindly objectified: ns_share

Re: [AOLSERVER] Objectifying AOLserver

2001-05-10 Thread Zoran Vasiljevic
On Wednesday 09 May 2001 23:45, you wrote: > It's only improper in places where values might be accessed from > multiple threads. Here are some APIs that cannot be blindly objectified: > [snip] > nsv_* [snip] > Huh! Second try... I have made my nsv_* implementation a little bit cleverer now