Andrew Johnson
Andrew Johnson
I don't claim to know whether all the MIP bit manipulation is correct there, but your suggestion looks like it should implement the last-put-wins behavior. I also don't know whether...
`lev` can be set to any `int` value by the `sscanf()` on line 609: ```C 607: if((asg=strtok(NULL," \t\n"))) { // ASG / ASL 608: if((asl=strtok(NULL," \t\n")) && 609: (sscanf(asl,"%d",&lev)!=1)) lev=1;...
Good, all our pvlist patterns that name an ASG also give an ASL, which explains why we haven't seen this problem here. We do make extensive use of ASL (or...
My clients were sending a UDP (not TCP) name resolution request to the name-server and then a TCP create channel request to the Gateway, so yes you were mostly right...
It's going to be more efficient to put an omniscient name-server in front of the Gateway then behind it. > Move the nameserver behind the gateway... We used to have...
Interesting, what is the hash table size it uses? Jeff Hill provided and uses his own C++ hash table implementation in resourceLib.h which adjusts the hash table size dynamically, maybe...
Both ANSI C and Posix actually require a file to end with a newline for it to be a text file, see [this](https://gcc.gnu.org/legacy-ml/gcc/2003-11/msg01568.html), [this](https://stackoverflow.com/questions/729692/why-should-text-files-end-with-a-newline) and [this](https://unix.stackexchange.com/questions/18743/whats-the-point-in-adding-a-new-line-to-the-end-of-a-file) and of course the...
Hi Márcio, Murali's original report from 2012 said the IOC involved was running on RTEMS 4.9.4. Does this crash happen with other IOCs running on other OSs? There are over...
We've just seen this issue, on our most heavily loaded gateway although I believe it was running an older version of the GW code (2.0.something) and probably Base 3.15.5. I...
Apparently it was running Gateway version 2.0 built against base-3.14.12.5-static (on RHEL-6 or RHEL-7). We've bumped it to a newer version since.