Re: Fwd: Q: processing multiple mixed data streams using bison

2005-06-06 Thread Laurence Finston
> Thanks for your reply. I did receive it from the list. I cannot afford > to use threads as I am processing tens of thousands of clients at the > same time. > So I have to take care of errors while doing this...that makes it > complicated but I don't have a choice :( What you want to do sounds t

Re: Fwd: Q: processing multiple mixed data streams using bison

2005-06-06 Thread Laurence Finston
> statement_list: statement_list statement This should be statement_list:: /* Empty */ | statement_list statement Please excuse my sloppiness. Laurence ___ Help-bison@gnu.org http://lists.gnu.org/mailman/listinfo/help-b

Re: Fwd: Q: processing multiple mixed data streams using bison

2005-06-06 Thread Laurence Finston
ce Finston <[EMAIL PROTECTED]> To: Mohit Jaggi <[EMAIL PROTECTED]> Cc: help-bison@gnu.org Subject: Re: Fwd: Q: processing multiple mixed data streams using bison > Thanks for your reply. I did receive it from the list. I cannot afford > to use threads as I am processing tens of thousa

> Re: Fwd: Q: processing multiple mixed data streams using bison

2005-06-03 Thread Laurence Finston
> From: Mohit Jaggi > Subject: Fwd: Q: processing multiple mixed data streams using bison > Date: Sat, 28 May 2005 23:53:22 -0700 > I am trying to process multiple interleaved streams of data in a > single process/thread using yacc/bison. Let us say I am running a > server and

Re: Fwd: Q: processing multiple mixed data streams using bison

2005-05-29 Thread Mohit Jaggi
Hans, Thanks for the reply...I havn't tried any version yet. Do you think that the latest version will support this and I won't have to introduce custom code to save/restore its context? Mohit. On 5/29/05, Hans Aberg <[EMAIL PROTECTED]> wrote: > At 23:53 -0700 2005/05/28, Mohit Jaggi wrote: > >Hi

Re: Fwd: Q: processing multiple mixed data streams using bison

2005-05-29 Thread Hans Aberg
Otherwise, I wouldn't said it right? If you pick it down, check the parser code. I use a C++ parser, and it is not currently pure. At 11:37 -0700 2005/05/29, Mohit Jaggi wrote: Hans, Thanks for the reply...I havn't tried any version yet. Do you think that the latest version will support this an

Re: Fwd: Q: processing multiple mixed data streams using bison

2005-05-29 Thread Hans Aberg
At 23:53 -0700 2005/05/28, Mohit Jaggi wrote: Hi All, I am trying to process multiple interleaved streams of data in a single process/thread using yacc/bison. Let us say I am running a server and have thousands of clients sending me requests at the same time. It seems the parser code uses global