• Post Reply Bookmark Topic Watch Topic
  • New Topic
programming forums Java Mobile Certification Databases Caching Books Engineering Micro Controllers OS Languages Paradigms IDEs Build Tools Frameworks Application Servers Open Source This Site Careers Other Pie Elite all forums
this forum made possible by our volunteer staff, including ...
Marshals:
  • Campbell Ritchie
  • Tim Cooke
  • Ron McLeod
  • paul wheaton
  • Jeanne Boyarsky
Sheriffs:
  • Paul Clapham
  • Devaka Cooray
Saloon Keepers:
  • Tim Holloway
  • Roland Mueller
  • Himai Minh
Bartenders:

Weird error...

 
Ranch Hand
Posts: 149
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
This is interesting....

#
# An unexpected error has been detected by HotSpot Virtual Machine:
#
# SIGSEGV (0xb) at pc=0xb1ea60d7, pid=2601, tid=2981911456
#
# Java VM: Java HotSpot(TM) Client VM (1.5.0_07-b03 mixed mode, sharing)
# Problematic frame:
# C [libmlib_image.so+0x5c0d7]
#
# An error report file with more information is saved as hs_err_pid2601.log
#
# If you would like to submit a bug report, please visit:
# http://java.sun.com/webapps/bugreport/crash.jsp
#
 
Ranch Hand
Posts: 15304
6
Mac OS X IntelliJ IDE Chrome
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
Yes, um, interesting. Reason for posting this?
 
Ranch Hand
Posts: 1608
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
It's not interesting, it's a VM defect - one of many that will forever exist. Upgrade to the latest version and reproduce it, then file a bug report.
 
Christopher Arthur
Ranch Hand
Posts: 149
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
Sorry if it isn't helpful...I had never seen this before, so I didn't know what to do with it.

It happened when I was trying to use RescaleOp on a BufferedImage;
 
Tony Morris
Ranch Hand
Posts: 1608
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator

Originally posted by Christopher Arthur:
Sorry if it isn't helpful...I had never seen this before, so I didn't know what to do with it.

It happened when I was trying to use RescaleOp on a BufferedImage;



The VM is using native code which can cause a segmentation fault (Java code cannot). If you own that native code, you need need to fix it. If it belongs to VM (as in this case), the VM vendor needs to fix it. It may have already been fixed (since you aren't using the latest update) so try with the latest, document if it consistently reproducible, etc. and produce a bug report.

If you've never seen a NullPointerException, then you've never used Java before.
If you've never seen a segmentation fault, then you've never used C before.
 
reply
    Bookmark Topic Watch Topic
  • New Topic