Process exited with exit code 128
843829Sep 24 2003 — edited Oct 2 2003Hi,
I have 2 DLL's lets kal them A and B.
Dll A allocates an object.
My Java code cals methods of DLL B with a reference to the alocated object.
DLL B cals methods of DLL A with referense to the object.
The object is a String buffer. And B cals a method that appends a string to the buffer.
Now this works fine in most cases, but when i call Dll B with arguments that prompt a large string to be appended to the object, it fails.
That is about 4000 bytes or more.
I get the message "Process exited with exit code 128"
Does any one know what exit code 128 means?
Any clues what can be causing this behavior?
I have tried to simplify the problem. It is more complex, The folowing information migth have inpact on the problem.
DLL B is actualy two thirdparty DLL's that I have to use. These DLL's are dynamicaly loaded in a JNI wrapper. The DLL's are used to communicate with equipment from to different suppliers. If i talk to equipment from supplier 1 i load the coresponding DLL. This is done dynamicaly in C code.