One of the first things the Rexx client will do will contact the rxapi daemon asking it to create a "session queue" for that process. There's nothing particularly difficult about that process, and it's handled much like any other rxapi request is. The main thread of the rxapi server listens for new connections on the main listening port. When a new connection is received, it spins off a new thread to process that connection. The new thread will be in a read/write loop on the connection processing requests from a single process. In-bound requests get dispatched to 1 of 3 subsystems (the queue manager, the registration manager, or the macrospace manager).
My best guess (and the thing I've been saying since day one) is something is going wrong with either threading or semaphores in the rxapi process. The place to debug this would be in the rxapi code, not the client. And yes, you are the first "archeologist" here, since the same code and processing is working just fine on at least 5 OS's and multiple hardware architecture variants of those. Rick On Wed, Oct 22, 2008 at 2:21 AM, Jack Woehr <[EMAIL PROTECTED]> wrote: > Debugging 4.0 on OpenBSD .. rxapi seems to go away looking for the Queue .. > Anybody have any comments about the interaction of rxapi with the Queue > to save me research time, or am I the first archaeologist to excavate there > in recent memory? :) > > -- > Jack J. Woehr # "Self-delusion is > http://www.well.com/~jax # half the battle!" > http://www.softwoehr.com # - Zippy the Pinhead > > > ------------------------------------------------------------------------- > This SF.Net email is sponsored by the Moblin Your Move Developer's challenge > Build the coolest Linux based applications with Moblin SDK & win great prizes > Grand prize is a trip for two to an Open Source event anywhere in the world > http://moblin-contest.org/redirect.php?banner_id=100&url=/ > _______________________________________________ > Oorexx-devel mailing list > [email protected] > https://lists.sourceforge.net/lists/listinfo/oorexx-devel > ------------------------------------------------------------------------- This SF.Net email is sponsored by the Moblin Your Move Developer's challenge Build the coolest Linux based applications with Moblin SDK & win great prizes Grand prize is a trip for two to an Open Source event anywhere in the world http://moblin-contest.org/redirect.php?banner_id=100&url=/ _______________________________________________ Oorexx-devel mailing list [email protected] https://lists.sourceforge.net/lists/listinfo/oorexx-devel
