Not sure. I am using a java library that communicates via its native library using protobuf.
I'm guessing because its native library is communicating to another native library, and it reformats the data into something easily understandable by the java library using Protobuf. Cheers, -- Franz Allan Valencia See | Java Software Engineer [email protected] LinkedIn: http://www.linkedin.com/in/franzsee Twitter: http://www.twitter.com/franz_see On Sat, Mar 6, 2010 at 1:58 AM, Evan Jones <[email protected]> wrote: > On Mar 5, 2010, at 10:32 , Franz See wrote: > >> I don't know where to start. Any ideas? >> > > The stack trace shows that you are using JNI to access libprotobuf? Any > reason you aren't using the Java protocol buffer implementation? That will > give you nicer error messages. > > > > # An unexpected error has been detected by HotSpot Virtual Machine: >> # >> # SIGBUS (0xa) at pc=0x6bed752c, pid=467, tid=42 >> > > This offset suggests that your JNI code that is using libprotobuf is trying > to access a NULL pointer or something? You should be able to use addr2line > to get line numbers out of the stack trace, so you can figure out what is > going on. > > Good luck, > > Evan > > -- > Evan Jones > http://evanjones.ca/ > > -- You received this message because you are subscribed to the Google Groups "Protocol Buffers" group. To post to this group, send email to [email protected]. To unsubscribe from this group, send email to [email protected]. For more options, visit this group at http://groups.google.com/group/protobuf?hl=en.
