Hi Yiannis - Just add the -G and you should be fine. cc -G -I/usr/include/java -I/usr /include/java/alpha HelloWorldImp.c -o libhello.so If you start getting...
Marie Alm
aalm@...
Aug 1, 1998 8:52 am
221
I'm starting a web page called the "System Properties Repository", aka "What's my line.separator?". This page contains a listing of the values of the Java...
Chris Kelly
samizdat@...
Aug 3, 1998 6:34 am
222
Is there a way to check the completeness of the shared libs used by the native methodes of a java programm at compile time ? Example: public class Something { ...
Volker Wehner
volker.wehner@...
Aug 4, 1998 4:21 pm
223
Graham Phillips
grahamph@...
Aug 7, 1998 7:25 pm
224
I am converting our app from JNI to RNI because the Sun VM throws up occasional C00000005 errors and our customer doesn't believe they can sell a product that...
Glenn Nelson
glennn@...
Aug 12, 1998 3:40 pm
225
I assume that as Alligator is listening she/he can enlighten us as to when the O'Rielly JNI Book coming out? In the cryptography book it states and ETA of...
Kelly Davis
kdavis@...
Aug 13, 1998 7:12 pm
226
... Me? Nope. I'm not listening........ However, the book has been finished and is being edited. I'm making a few tweaks and twiddles here and there and it got...
descarte@...
Aug 13, 1998 7:22 pm
227
Hello everyone. I have a rather serious problem that I need some help with. I have a third party API with C++ code that we have to use in our project. But...
Patrik Oscarsson
patrik.oscarsson@...
Aug 18, 1998 12:44 pm
228
I want to know the following is possible: Create memory with calloc(). Store the pointer in a jint. Return the jint back to Java. Call the C function again. ...
Chung, Jeffrey
jchung@...
Aug 18, 1998 10:07 pm
229
... That memory should be untouched until you call free(). I use this technique in all the native code I use ( although I just use malloc() ) and it works fine...
descarte@...
Aug 18, 1998 10:13 pm
230
I use this technique all the time with malloc and have not had any problems. John...
John Hughes
johnh@...
Aug 18, 1998 10:26 pm
231
Does anyone know of a way to attach jdb to an instance of the VM started by a call to JNI_CreateJavaVM? Looking in jni.h, I see that two of the fields in...
Mike Grogan
mikeg@...
Aug 21, 1998 6:40 am
232
Hello everyone. I'm having trouble getting the following to work: I have a C++ api which I need to use from Java code, so I did a small 'wrap= per'=20 in Java...
Patrik Oscarsson
patrik.oscarsson@...
Aug 21, 1998 8:45 am
233
I have done something similar (i.e. A Java Wrapper over an existing C++ api), but I just chose to return an int instead of the pointer to the allocated C++ ...
John Hughes
johnh@...
Aug 21, 1998 4:03 pm
234
I have also successfully "kept pointers" using this technique but use a jlong instead. Some time ago, someone reported having occasional problems using jint...
Marie Alm
aalm@...
Aug 23, 1998 4:56 pm
235
... I experienced problems using the Borland C++ compiler as it's support for 64-bit integers didn't seem compatible with JNI. Also someone who'd used JNI on...
Paul Bandler
Paul.Bandler@...
Aug 25, 1998 8:34 pm
236
I need to call a DLL function via J/Direct. This function writes data into the array passed as an argument to the function. However, after the function...
Ilya Ekshteyn
c0696801@...
Aug 31, 1998 1:38 pm
237
Chris Kelly
samizdat@...
Oct 29, 1998 8:57 pm
238
Hi there, If you create native window within Java thread, Java's message loop will be blocked by message loop of JNI DLL if no Java window exists. If Java has ...
managment -alec
alec@...
Nov 1, 1998 11:20 am
239
This is turning into a habit... Due to a lack of real resources at Arcane for running the jnative-l mailing list, I'm looking for someone who can take over the...
descarte@...
Nov 8, 1998 10:46 pm
240
Hey All, Does anyone know if there is a way to integrate a DLL with a Java Application if you don't have the DLL source code? I apoligize for asking such a...
Scott Bromstead
sbromstead@...
Nov 10, 1998 7:00 am
241
Don;t think so, but why not create a "bridging" DLL which you can create and have it call the original. Not perfect, but it'll work. ... asking ... but it ... ...
Garry McCollum
garry_mccollum@...
Nov 10, 1998 4:39 pm
242
... Not correct. If you know the entry points ( which he should do given he has the include file ), then integrating a DLL is extremely simple. For example,...
descarte@...
Nov 10, 1998 4:48 pm
243
... The only way to do this in JNI (without using Microsoft's J/Direct or whatever it's called) is to write an additional DLL in C that implements the native...
Buzzy Brown
buzzy@...
Nov 10, 1998 5:03 pm
244
The jnative-l mailing list has moved. The new list address is java-native@.... The admin address (for unsubscribing) is...
Andrew Burgess
aab@...
Nov 11, 1998 12:23 pm
245
... Could not find jnative archives. Above URL does not exist. Please help. Best, alec dorfman - To unsubscribe use java-native-request@... Archives...
Alec Dorfman
alec@...
Nov 13, 1998 10:30 am
246
... Oops. They are in place now. If anyone has copies of articles before July 28 1998 please let me know so I can add them to the archives. -- Andrew Burgess ...
Andrew Burgess
aab@...
Nov 13, 1998 6:29 pm
247
Hi there, I am currently porting some JNI invocation code from JDK 1.1 to 1.2, but my GUI now seems to deadlock in sun.awt.motif.X11InputMethod.setXICFocus ...
Wilson Chiu
wilsonc@...
Nov 20, 1998 10:46 pm
248
My native code (all called from (multiple) java threads) calls into arbitrary C functions, which callback to the native code where I need the JNIEnv *....
jacobi.PARC@...
Nov 21, 1998 1:26 am
249
... In JDK1.2, if you have a vm, you say "GetEnv" (I don't know the exact invocation by heart, but I've implemented it and watched other people's JNI libraries...