RE: thread issue?

2005-10-24 Thread Bharucha, Nikhil
Are you releasing the threads when done with each? With Windows I believe the maximum concurrent thread count is 255. If not, please follow the standard operating procedure Bill has outlined below... -Original Message- From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] On Behalf Of $Bill

RE: readdir returning file that can not be opened

2005-10-24 Thread Richard Grant
> It looks like it's unicode. That is a real problem because not everything > is equally unicode aware. Sometimes a unicode sequence will be > displayed as > its constituent bytes and in other contexts it will decay into a hook > character. U'll probably need to go all unicode aware on ur I/O an

Re: thread issue?

2005-10-24 Thread $Bill Luebkert
LeFevre, Ken wrote: > I have a process that reads a snippet of code from a database and then > executes it using an eval. When I run it using my test tools, it works > great. When I run it as part of a system that spawns worker threads and > these threads do the eval, the same code fails. Here a

thread issue?

2005-10-24 Thread LeFevre, Ken
I have a process that reads a snippet of code from a database and then executes it using an eval.  When I run it using my test tools, it works great.  When I run it as part of a system that spawns worker threads and these threads do the eval, the same code fails.  Here are my particulars:  

Re: Is Signal supported on Windows XP?

2005-10-24 Thread Ted Zeng
I will try to run a perl program on target machine as a service. And I will log in through telnet and send a signal to The program to ask it to launch the application for me. How can I send a Signal to a perl program on Windows? Ted zeng On 10/24/05 4:46 AM, "$Bill Luebkert" <[EMAIL PROTECTED]

Re: Need help with h2xs and XS

2005-10-24 Thread Reinhard Pagitsch
Bernard Kenik wrote: - Original Message - From: "Reinhard Pagitsch" <[EMAIL PROTECTED]> To: "Bernard Kenik" <[EMAIL PROTECTED]> Cc: Sent: Monday, October 24, 2005 2:50 AM Subject: Re: Need help with h2xs and XS Hello Bernard, You did not include the libraries for for strcmp and p

Re: Need help with h2xs and XS

2005-10-24 Thread Bernard Kenik
- Original Message - From: "Reinhard Pagitsch" <[EMAIL PROTECTED]> To: "Bernard Kenik" <[EMAIL PROTECTED]> Cc: Sent: Monday, October 24, 2005 2:50 AM Subject: Re: Need help with h2xs and XS Hello Bernard, You did not include the libraries for for strcmp and printf. regards Reinhar

Re: Is Signal supported on Windows XP?

2005-10-24 Thread $Bill Luebkert
Markus Tron wrote: > For instance: setting alert() and catching $SIG{ALRM} works nice on Win > XP. I was not able to make it work on W2K3 though. Kinda depends on what you're doing since there is no real signal mechanism in Windoze. If you are making it back to the main perl program loop, then I

Re: Is Signal supported on Windows XP?

2005-10-24 Thread Markus Tron
For instance: setting alert() and catching $SIG{ALRM} works nice on Win XP. I was not able to make it work on W2K3 though. Regards Markus Tron Ted Zeng <[EMAIL PROTECTED]> Sent by: [EMAIL PROTECTED] 24.10.2005 10:36 To cc Subject Is Signal supported on Windows XP? Ted zeng _

Is Signal supported on Windows XP?

2005-10-24 Thread Ted Zeng
Ted zeng ___ Perl-Win32-Users mailing list Perl-Win32-Users@listserv.ActiveState.com To unsubscribe: http://listserv.ActiveState.com/mailman/mysubs

Re: Need help with h2xs and XS

2005-10-24 Thread Reinhard Pagitsch
Hello Bernard, You did not include the libraries for for strcmp and printf. regards Reinhard Bernard Kenik wrote: I am currently trying to learn how to use XS. I am reading and doing the examples in the perlxstut. So far I have not been able to do example1. I am using Windows XP with Servi