Solaris 8 mmap returns unusable pointer

I am developing a 32-bit library for an application running on a Solaris 8 SunFire box with a 64-bit kernel. I want to share mutexes across processes and am thus using named shared memory. Calls to shm_open()and mmap() succeed with mmap returning 0xff060000. However accessing this pointer gives a segmentation fault.
I think I've got the compiler and linker switches set appropriately and have run out of ideas as to what to try next. I can see the named shared memory created under /tmp/.SHMD but it is always of size 0 (even when run as root). (Should this size reflect the desired size of shared memory?) I was thinking that I may need to use a 64-bit file offset of 0 and tried -D_FILE_OFFSET_BITS=64 to no avail.
I'd be very grateful for any advice on this!
Thanks,
Bill Rizzi
Here are the compiler switches:
cc -c  -mt  -D_XOPEN_SOURCE=500
-D__EXTENSIONS__ -g platform.c -o platform.oHere are the linker switches:
cc -o version -g version.o
-mt -lrt -lpthread -lm -lsocket -lnsl -lposix4 platform.oHere's the /tmp/.SHM* directories:
$  ls -alR /tmp/.SHM*
/tmp/.SHMD:
total 32
drwxrwxrwx   2 billr    other        185 Jul 24 11:30 ./
drwxrwxrwt   7 root     sys          890 Jul 24 11:33 ../
-rwxr-xr-x   1 billr    other          0 Jul 24 11:30 Platform*
/tmp/.SHML:
total 32
drwxrwxrwx   2 billr    other        117 Jul 24 11:30 ./
drwxrwxrwt   7 root     sys          890 Jul 24 11:33 ../Here's the source:
char *shmName = "/Platform";
int shmReturn;
int lockCount = 401;
int len;
void *ptr;
shmReturn =shm_open(shmName, O_RDWR,  0777);
if (shmReturn < 0) {
  if (errno == ENOENT) {
    shmReturn = shm_open(shmName, O_RDWR | O_CREAT, 0777);
assert(shmReturn >= 0);
len = lockCount  *  sizeof(pthread_mutex_t); /* 9624 */
ptr = mmap(0, len, PROT_READ | PROT_WRITE, MAP_SHARED, shmReturn, (off_t)0);
assert(ptr != MAP_FAILED); /* ptr == 0xff060000 */
memset(ptr, 0, len); /* segfault (even just *(int *)ptr) */

I've got the same issue (A4Tech X-750) and have already uploaded my evtest dump to https://bugs.freedesktop.org/show_bug.cgi?id=24737. Hopefully it will be fixed soon. As a temporary work around i installed xf86-input-mouse xf86-input-keyboard and disabled xorg hotplugging by adding to xorg.conf:
Section "ServerFlags"
Option "AutoAddDevices" "False"
Option "AllowEmptyInput" "False"
EndSection
Last edited by hash (2009-11-01 08:44:16)

Similar Messages

  • Xmlgen.getxml("select * from table") returns null pointer exception

    I am running oracle 8i on solaris server and clinet on windows
    NT and i am this select statement
    select xmlgen.getxml("select * from table") from dual ,its
    returning null pointer exception,i have tried it through
    jdbc,even then its returning xml as
    <?xml version = '1.0'?>
    <ERROR>java.lang.NullPointerException</ERROR>
    can any body tell me the error.Help will be really appreciated.I
    need an urgent response,if some one can guide me please.
    My email is [email protected],if you can give me a quick
    response on this email,your effot will be appreciated.
    thanks
    Masood

    What is actually throwing the NullPointerException? rs.getMetaData() or table.setModel()?

  • How to call a routine that returns a pointer using jni

    hi this is ravi kiran,
    i have a situation where i need to call a c-routine from my java program that returns a pointer.
    how can i get the content of the pointer that the routine is returning.
    plz help me
    thanx in advance

    Return it as a java long.
    When you need to use it again then pass it in as a long and cast it to a pointer.
    If you need to free it then you should consider writing a finalize() method (one of the few times it is appropriate) and a destroy() method as well.

  • Dbms_metadata.get_ddl returns unusable create index statement

    Hello everybody,
    I'm trying to write a procdeure that automatically deletes all duplicate record and rebuild all table indexes after an sqlldr load with direct path.
    In short the procdeure indentifies the indexes, read them using dbms_metadata.get_ddl('INDEX', 'IDX_UNIQUE_TEST') drops them, deletes the duplicated records and then recreates the indexes.
    However after the sqlldr, get_ddl function returns the following result:
    CREATE UNIQUE INDEX "MYUSER"."IDX_UNIQUE_TEST" ON "EDWH"."FOREX_ORD_PRC_INTRADAY" "C_ORD_TYP", "C_ORD", "D_INI_VAL", "C_PRC_TYP")
    PCTFREE 10 INITRANS 2 MAXTRANS 255 COMPUTE STATISTICS
    STORAGE(INITIAL 131072 NEXT 131072 MINEXTENTS 1 MAXEXTENTS 2147483645
    PCTINCREASE 0 FREELISTS 1 FREELIST GROUPS 1 BUFFER_POOL DEFAULT)
    TABLESPACE "MYTABLESPACE"
    ALTER INDEX "MYUSER"."IDX_UNIQUE_TEST"  UNUSABLE
    As you can see there is an ALTER INDEX at the end that makes the whole statement invalid.
    Has anyone already seen that? I've tried to google it but with no chance. Help with this would really be appreciated.
    Thanks in advance
    Ross

    Mmh, yes it is unusable before the get_ddl, but how comes it returns both the create index and the alter index unusable statements?
    I've tried to make the index unusable with the alter index ... unusable statement but get_ddl still returned the create index only.
    I'm guessing that production server (10.2.0.4.0) is behaving differently from test machine (9.2.0.4.0). Any idea on that?
    Ross

  • Getting element of array returns a pointer?

    Hi to All,
    I have a code:
    /tt [[0 1 2] [10 11 12] [20 21 22]] def
    tt 0 get    /ttr exch def          % ttr = [0 1 2]
    ttr 2 777 put                      % ttr = [0 1 777]
    tt pstack                          %  tt = [[0 1 777] [10 11 12] [20 21 22]]
    I thought tt should not be changed. But it is. Why is this? How may I avoid this?
    Thank you in advance,
    JackK

    In addition, try this. Composite objects (arrays, dictionaries, strings) are allocated from a potentially limited pool of memory so the programmer has full control of the memory allocation process. Only specific operators such as array, string, dict will allocate memory (and the parser as it sees literals of these types). So, if another operator returns a composite object, it follows that no memory was allocated, and it was not copied. It is therefore a reference to the original (a pointer, if you prefer, though PostScript avoids the term).
    If you're a C programmer it can help to think of PostScript objects as 8 byte structures. A structure could (but would not exactly) contain the object type and simple value. For an array, the structure would contain the type and a pointer to the array memory, length and offset. The array memory is a list of 8 byte structures.
    getinterval makes a new object (8 byte) containing a pointer to the same array memory, but a different length and offset.
    get returns a copy of one of the 8 byte structures from the array memory. For a simple type (e.g. real) this copy is complete and separate. If the element is an array the 8 bytes are copied, but the pointer to the array memory, length and offset are unaltered. Essentially it is the same array.
    Indeed, if you translated this example to C it would be the same array.

  • SDO_RELATE does not return expected points

    Hi,
    I have a problem with a query which does not return the results I am expecting. I think it may be to do with geodetic data v projected data but fail to see how.
    the table points2 contains point data stored in Lat Long (SRID 8307)
    Here is my query:
    SELECT mdsys.sdo_cs.transform(points2.assetextent,26943) FROM points2
    WHERE SDO_RELATE (points2.ASSETEXTENT, MDSYS.SDO_GEOMETRY(2003,26943 ,NULL, mdsys.SDO_ELEM_INFO_ARRAY(1,1003,3), mdsys.SDO_ORDINATE_ARRAY(1831679.1743184,644380.053168771,1831699.1743184,645000.053168677)),'mask=anyinteract') = 'TRUE';
    This query returns 0 results. if perform the same query with SDO_FILTER rather than SDO_RELATE then I get 1 result (which is what I expect). the result is this:
    MDSYS.SDO_CS.TRANSFORM(POINTS2.ASSETEXTENT,26943)(SDO_GTYPE, SDO_SRID, SDO_POINT(X, Y, Z), SDO_ELEM_INFO, SDO_ORDINATES)
    SDO_GEOMETRY(3001, 26943, NULL, SDO_ELEM_INFO_ARRAY(1, 1, 1), SDO_ORDINATE_ARRAY(1831689.17, 644440.053, 0))
    1 row selected.
    As can clearly be seen from this result the point is 10m from the both vertical edges of the optimised rectangle and at least 60m from the horizontal edges.
    The sdo_geom_metadata_table entry for this table is:
    SDO_OWNER SDO_TABLE_NAME
    SDO_COLUMN_NAME
    SDO_DIMINFO(SDO_DIMNAME, SDO_LB, SDO_UB, SDO_TOLERANCE)
    SDO_SRID
    VST POINTS2
    ASSETEXTENT
    SDO_DIM_ARRAY(SDO_DIM_ELEMENT('X', -180, 180, .005), SDO_DIM_ELEMENT('Y', -90, 90, .005), SDO_DIM_ELEMENT('Z', -999, 5000, .005))
    8307
    Anyone got any pointers? If you need more info just let me know
    Sam

    hi,
    can you try this query and let us know what you get ?
    Transform the geometry to 8307 and pass it into the sdo_relate
    operator.
    SELECT mdsys.sdo_cs.transform(points2.assetextent,26943) FROM points2
    WHERE SDO_RELATE (points2.ASSETEXTENT,
    sdo_cs.transform(MDSYS.SDO_GEOMETRY(2003,26943 ,NULL, mdsys.SDO_ELEM_INFO_ARRAY(1,1003,3), mdsys.SDO_ORDINATE_ARRAY(1831679.1743184,644380.053168771,
    1831699.1743184,645000.053168677)), 8307), 'mask=anyinteract') = 'TRUE';

  • Return Unused Budget

    Dear all,
    The requirement in my company is to return all unused budget before we actually close the project
    So, in the report, there would be no remaining budget left
    I have checked trx CJ38, apparently there's no "Available" column where we can copy the value from, it only has Current Budget and Assigned column
    It would be quite troublesome if the user has to enter the value of the remaining budget for every WBS, since we have hundreds of WBS for one project
    How to return all of the unused budget easily without having to develop a custom ABAP program?
    Any idea would be highly appreciated =)
    Thank you

    You can get the Available Budget column in S_ALR_87013558 - Budget/Actual/Commitment/Rem Plan/Assigned
    Export the report in HTML format and then open it and copy all the values and paste in Excel..
    Then just copy the available column and paste in CJ38.
    Regards,

  • Cancelled an order which I used a rewards certificate only a partial return of points

    I placed an order online and used a $20 certificate for it. I decided to cancel the order but have so far only recieved a partial return of my points.In my purchase history it shows I received back in 1 500 point chunk and 1 250 point chunk I already had about 400 points left over so Best Buy just used that and reissued a rewards certificate. I am still missing  250 points from my total. I'd like to get my 250 point refund soon in order to complete my refund of points, Thanks

    Hi tomp94,
    Thank you for taking the time to connect with us on the forum.
    It can generally take 3 to 6 business days for a certificates point value to repost to a member's account following a return or cancellation.  I am showing that your order was cancelled on 1/11/2015, so the 6th business day would be 1/19/2015 (today).  If you do not see the remaining 250 points repost to your account by the end of the day, then send me a private message and I will make sure they are added.  You can send a private message by clicking on the blue button found within my signature.
    Returns When a My Best Buy™ Certificate was Used
    I hope you have a great day!
    Derek|Social Media Specialist | Best Buy® Corporate
     Private Message

  • Does Solaris supports non-ASCII mount point?

    Hi,
    Does Solaris 10 supports non-ASCII mount point?
    Kind regards,
    Daniel

    # fstab generated by gen_fstab
    #<file system>   <dir>         <type>      <options>    <dump> <pass>
    none            /dev/pts      devpts      defaults        0     0
    none            /dev/shm      tmpfs       defaults        0     0
    UUID=496E-7B5E /media/STORAGE vfat    defaults,user,users,rw,exec,uid=777,gid=777   0       0
    /dev/sr0     /mnt/sr0_cd  auto     user,noauto,exec,unhide 0     0
    # This would do for a floppy
    #/dev/fd0        /mnt/floppy    vfat,ext2 rw,user,noauto    0     0
    #    +   mkdir /mnt/floppy
    # E.g. for USB storage:
    #/dev/sdb1        /mnt/usb      auto      rw,user,noauto   0     0
    #    +   mkdir /mnt/usb

  • Std::atomic_exchange return wrong pointer type

    I am using the following product:
    Microsoft Visual Studio Professional 2013
    Version 12.0.31101.00 Update 4
    Given the following example:
    #include <atomic>
    #include <iostream>
    std::atomic<int*> ptr = nullptr;
    int desired = 5;
    auto previous0 = std::atomic_exchange_explicit(&ptr, &desired, std::memory_order_acq_rel);
    auto previous1 = std::atomic_exchange_explicit(&ptr, nullptr, std::memory_order_acq_rel);
    auto previous2 = std::atomic_exchange(&ptr, &desired);
    auto previous3 = std::atomic_exchange(&ptr, nullptr);
    std::cout << typeid(previous0).name() << std::endl;
    std::cout << typeid(previous1).name() << std::endl;
    std::cout << typeid(previous2).name() << std::endl;
    std::cout << typeid(previous3).name() << std::endl;
    I get the output:
    int *
    void *
    int *
    void *
    Expected output would be:
    int *
    int *
    int *
    int *
    Is this a known bug in VC12?
    PS: I couldn't find a proper category for MSVC related questions.

    I see that it prefers:
    inline _ITYPE atomic_exchange_explicit(
    _ATOMIC_ITYPE *_Atom, _ITYPE _Value,
    memory_order _Order) _NOEXCEPT
    { // exchange value stored in *_Atom with _Value
    return _ATOMIC_EXCHANGE(_Atom, _Value, _Order);
    over
    template <class _Ty>
    inline _Ty atomic_exchange_explicit(atomic<_Ty> *_Atom, _Ty _Value,
    memory_order _Order) _NOEXCEPT
    return _Atom->exchange(_Value, _Order);
    That does seem a little suspicious.  I can't say for sure if that's a bug.
    Of course, the easy workarounds are to either specify the template arguments or cast nullptr to the appropriate type.
    auto previous1a = std::atomic_exchange_explicit<int*>(&ptr, nullptr, std::memory_order_acq_rel);
    // or
    auto previous1b = std::atomic_exchange_explicit(&ptr, (int*)nullptr, std::memory_order_acq_rel);

  • Query returns null pointer as result

    Hi,
    I have a problem retrieving objects with Query. Wenn I lookup an object
    with the following method:
    Query q = pm.newQuery(classObj);
    q.declareParameters("String param");
    q.setFilter(fieldName + " == param");
    ans = (Collection)q.execute(searchValue);
    if (ans.isEmpty())
    return null;
                   Iterator i = ans.iterator();
                   if (i.hasNext())
                        Object obj = i.next();
                        q.close(ans);
                        return obj;
                   throw new IllegalArgumentException("No object with code: '" +
    searchValue + "'");
              catch (Exception e)
                   if (ans != null)
                        q.close(ans);
                   throw e;

    Hi Martin,
    before this problem started to, I have changed the MappingFactory from
    "db" to "file" and then back. I also deleted the jdo_mapping table
    inbetween and reconsturcted it with the mapping tool. From then on, it
    would not find the object anymore. The object that I wanted to get at is
    in the database and an empty object is constructed, which I knew from
    putting a breakpoint in the constructor.
    Because I am not in production yet, I could just delete the database and
    start from scratch. Which cured the problem, but as soon as we will be
    online, that is not an option anymore, I guess.
    Let me know, if you need more help to reproduce this problem.
    Best regards
    Wolfgang

  • Return unused ink

    In May I purchased (2) combo packs of ink for cartriges # 564. (2) each of cyan, magenta and yellow. Order # [Personal Information Removed]. The printer quit working and I bought a new HP printer that uses a different cartrige. The cartriges are unopened and still wrapped in the original packaging. They are not in the cardboard box. I want to purchase ink for the new printer #951 and 950. What can I do with the # 564 that I can't use now. I would appreciate any help. I purchase all supplies at your online store.
    Rick [Personal Information Removed]
    Email:  "[Personal Information Removed]"

    Hi @scooters1 ,
    I have sent you a private message. If you are not sure how to check your private messages then this post has instructions that will guide you through the process.
    Thanks for visiting the HP Support Forum
    I work for HP. However I speak only for myself, not for HP nor anyone else

  • When a Method Returns an Object, does it return a copy or a pointer?

    When you have a method that returns an Object, is the Object returning a copy of the Object returned inside
    of the Method or is it an Actual pointer to the Object inside of the method's coresponding Object?
    so say you have an object ...
    Class Something {
    JLabel myLabel = new JLable("myLabel");
    public JLabel getLabel() {
    return myLabel;;
    Something something = new Something();
    JLable theLabel = something.getLabel()
    theLable.setString("theLable");
    so when I setString on the Object theLabel , am I going to change the value of myLabel inside of the Object something?

    Yes, it returns a pointer.

  • Return points within certain distance to each other

    I have a geometry of points (say 1000 points) and I want to return only points within certain distance(say 100 meters) to each other and exclude others. I have been using the sdo_aggr_union with tolerance value of 100, but it returns one of the points from all of which are 100 meters apart and also returns other points.
    I would appreciate if anyone can please help me with this. I basically want to identify bunch of points placed close to each other. sdo_within_distance will not work as this is between two geometries. Here I have the same geometry column in the table but multiple records. Sorry, if I have confused too much.Thanks in advance.

    Hi
    Your initial question said you want to find all points within a certain distance to the each others. The distance was said to be 100 meter.
    Therefor the query will return for every single point all the others that are within that distance.
    As this is performed on one single table the SDO_JOIN is well suited.
    Obviously this returns a lot of recs. Let me explain why. draw for example 5 points (on a line to make it simple) and every point is 10 meters further from the previous. If you want to know for the first point what are the others within the 100 meter distance, you will end up with all the others. So doing this for every point this means that for every point you will have returned all the other, increasing the number of records returned. this is actually what the example query will do.
    If you have additional filters you must add them for both (in your case same) tables, if you want for all points with a specific faceid to list all other points within that distance and with the same faceid.
    However this will not be limited to only 549 recs I expect.
    Maybe you can try to give more explanation what you are trying to achieve.
    Should you try to achieve to identify clusters of points you might want to take a look at spatial clustering http://download.oracle.com/docs/html/B14255_01/sdo_sam_ref.htm#CACJAJDC
    tx
    Luc

  • JVM crash in solaris

    java -version
    java version "1.6.0_29"
    Java(TM) SE Runtime Environment (build 1.6.0_29-b11)
    Java HotSpot(TM) 64-Bit Server VM (build 20.4-b02, mixed mode)
    uname -a :
    SunOS test-app 5.10 Generic_147440-06 sun4v sparc SUNW,Sun-Fire-T200
    hs_err_pid file shown below :-
    Core dump 1:
    ========
    # A fatal error has been detected by the Java Runtime Environment:
    # SIGBUS (0xa) at pc=0xffffffff780fc4c0, pid=6201, tid=140
    # JRE version: 6.0_29-b11
    # Java VM: Java HotSpot(TM) 64-Bit Server VM (20.4-b02 mixed mode solaris-sparc compressed oops)
    # Problematic frame:
    # J java.util.HashMap.getForNullKey()Ljava/lang/Object;
    # If you would like to submit a bug report, please visit:
    # http://java.sun.com/webapps/bugreport/crash.jsp
    --------------- T H R E A D ---------------
    Current thread (0x0000000100a9e800): JavaThread "Thread-91" [_thread_in_Java, id=140, stack(0xffffffff2c100000,0xffffffff2c132000)]
    siginfo:si_signo=SIGBUS: si_errno=0, si_code=1 (BUS_ADRALN), si_addr=0xffffffff2c13558f
    Registers:
    G1=0x0000000000000008 G2=0x0000000100a9e800 G3=0x0000000000005ffe G4=0xffffffff2c12ff10
    G5=0xffffffff31109040 G6=0xffffffff303fe000 G7=0xffffffff2e20ea00 Y=0x0000000000000000
    O0=0xffffffff356606c0 O1=0x00000000000000b7 O2=0x0000000000000000 O3=0xffffffff78018080
    O4=0xffffffff600b2510 O5=0xffffffff2c12f781 O6=0xffffffff2c12f591 O7=0x0000000000000000
    L0=0xffffffff356606c0 L1=0x000000000001854c L2=0xffffffff356606c0 L3=0x0000000000a4c4d8
    L4=0x000000000001854c L5=0xffffffff2c12f661 L6=0x0000000000000000 L7=0x0000000100a9e800
    I0=0xffffffff35423dc0 I1=0xffffffff35537950 I2=0x0000000000000000 I3=0xffffffff600b1e88
    I4=0xffffffff311e54a8 I5=0xffffffff2c12f661 I6=0xffffffff2c12f661 I7=0xffffffff78005eac
    PC=0xffffffff780fc4c0 nPC=0xffffffff780fc4c4
    Top of Stack: (sp=0xffffffff2c12fd90)
    0xffffffff2c12fd90: ffffffff356606c0 000000000001854c
    0xffffffff2c12fda0: ffffffff356606c0 0000000000a4c4d8
    0xffffffff2c12fdb0: 000000000001854c ffffffff2c12f661
    0xffffffff2c12fdc0: 0000000000000000 0000000100a9e800
    0xffffffff2c12fdd0: ffffffff35423dc0 ffffffff35537950
    0xffffffff2c12fde0: 0000000000000000 ffffffff600b1e88
    0xffffffff2c12fdf0: ffffffff311e54a8 ffffffff2c12f661
    0xffffffff2c12fe00: ffffffff2c12f661 ffffffff78005eac
    0xffffffff2c12fe10: 00000001600b1540 00000004600b1e88
    0xffffffff2c12fe20: 0000000000000000 0000000000000000
    0xffffffff2c12fe30: ffffffff3554fb48 ffffffff2c12f6c1
    0xffffffff2c12fe40: ffffffff35537950 0000000135660480
    0xffffffff2c12fe50: ffffffff2c12ff28 ffffffff31104b11
    0xffffffff2c12fe60: ffffffff2c12ff10 ffffffff31104b57
    0xffffffff2c12fe70: ffffffff31104d18 ffffffff2c130048
    0xffffffff2c12fe80: ffffffff2c12ff40 ffffffff2c12f661
    Instructions: (pc=0xffffffff780fc4c0)
    0xffffffff780fc4a0: c6 02 20 08 87 28 f0 03 86 00 c0 06 80 a0 c0 05
    0xffffffff780fc4b0: 93 d0 30 12 de 40 20 00 86 18 fc 00 86 00 e3 ff
    0xffffffff780fc4c0: c0 23 80 03 9d e3 bf 70 e2 06 20 24 a1 2c 70 03
    0xffffffff780fc4d0: a0 04 00 06 e4 04 20 0c 80 a4 a0 00 08 40 00 12
    Register to memory mapping:
    G1=0x0000000000000008 is an unknown value
    G2=0x0000000100a9e800 is a thread
    G3=0x0000000000005ffe is an unknown value
    G4=0xffffffff2c12ff10 is pointing into the stack for thread: 0x0000000100a9e800
    G5=0xffffffff31109040 is an oop
    {method}
    - klass: {other class}
    G6=0xffffffff303fe000 is an unknown value
    G7=0xffffffff2e20ea00 is an unknown value
    O0=0xffffffff356606c0 is an oop
    java.util.HashMap
    - klass: 'java/util/HashMap'
    O1=0x00000000000000b7 is an unknown value
    O2=0x0000000000000000 is an unknown value
    O3=0xffffffff78018080 is an Interpreter codelet
    invokevirtual 182 invokevirtual [0xffffffff78018080, 0xffffffff780182e0] 608 bytes
    O4=0xffffffff600b2510 is an unknown value
    O5=0xffffffff2c12f781 is pointing into the stack for thread: 0x0000000100a9e800
    O6=0xffffffff2c12f591 is pointing into the stack for thread: 0x0000000100a9e800
    O7=0x0000000000000000 is an unknown value
    L0=0xffffffff356606c0 is an oop
    java.util.HashMap
    - klass: 'java/util/HashMap'
    L1=0x000000000001854c is an unknown value
    L2=0xffffffff356606c0 is an oop
    java.util.HashMap
    - klass: 'java/util/HashMap'
    L3=0x0000000000a4c4d8 is an unknown value
    L4=0x000000000001854c is an unknown value
    L5=0xffffffff2c12f661 is pointing into the stack for thread: 0x0000000100a9e800
    L6=0x0000000000000000 is an unknown value
    L7=0x0000000100a9e800 is a thread
    I0=0xffffffff35423dc0 is an oop
    org.apache.activemq.openwire.v7.ActiveMQBytesMessageMarshaller
    - klass: 'org/apache/activemq/openwire/v7/ActiveMQBytesMessageMarshaller'
    I1=0xffffffff35537950 is an oop
    org.apache.activemq.openwire.OpenWireFormat
    - klass: 'org/apache/activemq/openwire/OpenWireFormat'
    I2=0x0000000000000000 is an unknown value
    I3=0xffffffff600b1e88 is an oop
    org.apache.activemq.openwire.BooleanStream
    - klass: 'org/apache/activemq/openwire/BooleanStream'
    I4=0xffffffff311e54a8 is an oop
    {instance class}
    - klass: {other class}
    I5=0xffffffff2c12f661 is pointing into the stack for thread: 0x0000000100a9e800
    I6=0xffffffff2c12f661 is pointing into the stack for thread: 0x0000000100a9e800
    I7=0xffffffff78005eac is an Interpreter codelet
    return entry points [0xffffffff78005580, 0xffffffff78006da0] 6176 bytes
    Stack: [0xffffffff2c100000,0xffffffff2c132000], sp=0xffffffff2c12fd90, free space=191k
    Native frames: (J=compiled Java code, j=interpreted, Vv=VM code, C=native code)
    J java.util.HashMap.getForNullKey()Ljava/lang/Object;
    j org.apache.activemq.openwire.v7.MessageMarshaller.tightMarshal1(Lorg/apache/activemq/openwire/OpenWireFormat;Ljava/lang/Object;Lorg/apache/activemq/openwire/BooleanStream;)I+79
    j org.apache.activemq.openwire.v7.ActiveMQMessageMarshaller.tightMarshal1(Lorg/apache/activemq/openwire/OpenWireFormat;Ljava/lang/Object;Lorg/apache/activemq/openwire/BooleanStream;)I+4
    j org.apache.activemq.openwire.v7.ActiveMQBytesMessageMarshaller.tightMarshal1(Lorg/apache/activemq/openwire/OpenWireFormat;Ljava/lang/Object;Lorg/apache/activemq/openwire/BooleanStream;)I+4
    j org.apache.activemq.openwire.OpenWireFormat.marshal(Ljava/lang/Object;Ljava/io/DataOutput;)V+102
    j org.apache.activemq.transport.tcp.TcpTransport.oneway(Ljava/lang/Object;)V+13
    j org.apache.activemq.transport.InactivityMonitor.oneway(Ljava/lang/Object;)V+103
    j org.apache.activemq.transport.TransportFilter.oneway(Ljava/lang/Object;)V+5
    j org.apache.activemq.transport.WireFormatNegotiator.oneway(Ljava/lang/Object;)V+47
    j org.apache.activemq.transport.failover.FailoverTransport.oneway(Ljava/lang/Object;)V+529
    j org.apache.activemq.transport.MutexTransport.oneway(Ljava/lang/Object;)V+12
    j org.apache.activemq.transport.ResponseCorrelator.asyncRequest(Ljava/lang/Object;Lorg/apache/activemq/transport/ResponseCallback;)Lorg/apache/activemq/transport/FutureResponse;+123
    j org.apache.activemq.transport.ResponseCorrelator.request(Ljava/lang/Object;)Ljava/lang/Object;+3
    j org.apache.activemq.ActiveMQConnection.syncSendPacket(Lorg/apache/activemq/command/Command;)Lorg/apache/activemq/command/Response;+20
    j org.apache.activemq.ActiveMQSession.send(Lorg/apache/activemq/ActiveMQMessageProducer;Lorg/apache/activemq/command/ActiveMQDestination;Ljavax/jms/Message;IIJLorg/apache/activemq/usage/MemoryUsage;I)V+437
    j org.apache.activemq.ActiveMQMessageProducer.send(Ljavax/jms/Destination;Ljavax/jms/Message;IIJ)V+210
    j org.apache.activemq.ActiveMQMessageProducerSupport.send(Ljavax/jms/Destination;Ljavax/jms/Message;)V+15
    j com.ecs.middleware.channel.JMSProducer.send(Ljava/lang/String;Ljavax/jms/Message;)V+12
    j com.ecs.middleware.component.proxy.command.CmdTpACall.execute()Lcom/ecs/middleware/component/proxy/command/Response;+148
    j com.ecs.middleware.component.proxy.RequestHandler.start()V+249
    j com.ecs.middleware.component.proxy.RequestHandler.run()V+1
    j java.lang.Thread.run()V+11
    v ~StubRoutines::call_stub
    V [libjvm.so+0x1d63a8] void JavaCalls::call_helper(JavaValue*,methodHandle*,JavaCallArguments*,Thread*)+0x200
    V [libjvm.so+0x1e0b9c] void JavaCalls::call(JavaValue*,methodHandle,JavaCallArguments*,Thread*)+0x3c
    V [libjvm.so+0x5fc320] void JavaCalls::call_virtual(JavaValue*,KlassHandle,symbolHandle,symbolHandle,JavaCallArguments*,Thread*)+0x150
    V [libjvm.so+0x26c21c] void JavaCalls::call_virtual(JavaValue*,Handle,KlassHandle,symbolHandle,symbolHandle,Thread*)+0x50
    V [libjvm.so+0x280950] void thread_entry(JavaThread*,Thread*)+0x148
    V [libjvm.so+0x955ddc] void JavaThread::thread_main_inner()+0x4c
    V [libjvm.so+0x864eb4] java_start+0x184
    --------------- P R O C E S S ---------------
    Java Threads: ( => current thread )
    0x000000010104b800 JavaThread "ActiveMQ Session Task-4" [_thread_in_native, id=2532, stack(0xffffffff2bf00000,0xffffffff2bf32000)]
    0x0000000100f5e000 JavaThread "ActiveMQ Session Task-6" [_thread_blocked, id=2531, stack(0xffffffff2b800000,0xffffffff2b832000)]
    0x0000000100aa0800 JavaThread "ActiveMQ Session Task-7" [_thread_blocked, id=2530, stack(0xffffffff2b900000,0xffffffff2b932000)]
    0x0000000100af4800 JavaThread "Timer-5" [_thread_blocked, id=1110, stack(0xffffffff2bd00000,0xffffffff2bd32000)]
    0x000000010100f800 JavaThread "Timer-4" [_thread_blocked, id=148, stack(0xffffffff2bc00000,0xffffffff2bc32000)]
    0x000000010100b800 JavaThread "Thread-92" [_thread_in_native, id=141, stack(0xffffffff2c000000,0xffffffff2c032000)]
    =>0x0000000100a9e800 JavaThread "Thread-91" [_thread_in_Java, id=140, stack(0xffffffff2c100000,0xffffffff2c132000)]
    0x0000000100abb000 JavaThread "ActiveMQ Transport: tcp:///10.10.8.220:61616" [_thread_in_native, id=138, stack(0xffffffff2c200000,0xffffffff2c232000)]
    0x0000000100aba000 JavaThread "ActiveMQConnection[ID:test-app-40386-1329820972144-0:9] Scheduler" daemon [_thread_blocked, id=137, stack(0xffffffff2c300000,0xffffffff2c332000)]
    0x0000000100c40800 JavaThread "ActiveMQ Transport: tcp:///10.10.8.220:61616" [_thread_in_native, id=136, stack(0xffffffff2c400000,0xffffffff2c432000)]
    0x00000001010ee000 JavaThread "ActiveMQConnection[ID:test-app-40386-1329820972144-0:8] Scheduler" daemon [_thread_blocked, id=135, stack(0xffffffff2c600000,0xffffffff2c632000)]
    0x0000000100b23000 JavaThread "StopClock-TMGR_R" [_thread_blocked, id=134, stack(0xffffffff2c700000,0xffffffff2c732000)]
    0x000000010108e000 JavaThread "Timer-3" [_thread_blocked, id=133, stack(0xffffffff2c500000,0xffffffff2c532000)]
    0x0000000101074000 JavaThread "Thread-81" [_thread_in_native, id=126, stack(0xffffffff2c900000,0xffffffff2c932000)]
    0x0000000101090800 JavaThread "Thread-80" [_thread_in_native, id=125, stack(0xffffffff2ca00000,0xffffffff2ca32000)]
    0x0000000100b25000 JavaThread "ActiveMQ Transport: tcp:///10.10.8.220:61616" [_thread_in_native, id=123, stack(0xffffffff2cb00000,0xffffffff2cb32000)]
    0x0000000100dea800 JavaThread "ActiveMQConnection[ID:test-app-40386-1329820972144-0:7] Scheduler" daemon [_thread_blocked, id=122, stack(0xffffffff2cc00000,0xffffffff2cc32000)]
    0x0000000100ac3000 JavaThread "ActiveMQ Transport: tcp:///10.10.8.220:61616" [_thread_in_native, id=121, stack(0xffffffff2cd00000,0xffffffff2cd32000)]
    0x0000000100ac2800 JavaThread "ActiveMQConnection[ID:test-app-40386-1329820972144-0:6] Scheduler" daemon [_thread_blocked, id=120, stack(0xffffffff2d000000,0xffffffff2d032000)]
    0x0000000100ac1800 JavaThread "StopClock-TMGR" [_thread_blocked, id=119, stack(0xffffffff2ce00000,0xffffffff2ce32000)]
    0x0000000100ac1000 JavaThread "Timer-2" [_thread_blocked, id=118, stack(0xffffffff2cf00000,0xffffffff2cf32000)]
    0x0000000100def000 JavaThread "Thread-65" [_thread_in_native, id=106, stack(0xffffffff2d200000,0xffffffff2d232000)]
    0x0000000100ad6000 JavaThread "Thread-64" [_thread_in_native, id=105, stack(0xffffffff2d300000,0xffffffff2d332000)]
    0x0000000100ad4000 JavaThread "ActiveMQ Transport: tcp:///10.10.8.220:61616" [_thread_in_native, id=103, stack(0xffffffff2d400000,0xffffffff2d432000)]
    0x0000000100e97000 JavaThread "ActiveMQConnection[ID:test-app-40386-1329820972144-0:5] Scheduler" daemon [_thread_blocked, id=102, stack(0xffffffff2d500000,0xffffffff2d532000)]
    0x0000000100e96000 JavaThread "ActiveMQ Transport: tcp:///10.10.8.220:61616" [_thread_in_native, id=101, stack(0xffffffff2d600000,0xffffffff2d632000)]
    0x0000000100ca6800 JavaThread "ActiveMQConnection[ID:test-app-40386-1329820972144-0:4] Scheduler" daemon [_thread_blocked, id=100, stack(0xffffffff2d700000,0xffffffff2d732000)]
    0x0000000100ca6000 JavaThread "StopClock-HPDH" [_thread_blocked, id=99, stack(0xffffffff2d900000,0xffffffff2d932000)]
    0x0000000100ac8800 JavaThread "Timer-1" [_thread_blocked, id=98, stack(0xffffffff2d800000,0xffffffff2d832000)]
    0x0000000100ae7800 JavaThread "Thread-51" [_thread_in_native, id=88, stack(0xffffffff2db00000,0xffffffff2db32000)]
    0x0000000100c16000 JavaThread "Thread-50" [_thread_in_native, id=87, stack(0xffffffff2e000000,0xffffffff2e032000)]
    0x0000000100a71000 JavaThread "ActiveMQ Transport: tcp:///10.10.8.220:61616" [_thread_in_native, id=85, stack(0xffffffff2e100000,0xffffffff2e132000)]
    0x0000000100a6e800 JavaThread "ActiveMQConnection[ID:test-app-40386-1329820972144-0:3] Scheduler" daemon [_thread_blocked, id=84, stack(0xffffffff2e300000,0xffffffff2e332000)]
    0x0000000100b3c800 JavaThread "ActiveMQ Transport: tcp:///10.10.8.220:61616" [_thread_in_native, id=82, stack(0xffffffff2e500000,0xffffffff2e532000)]
    0x0000000100b39000 JavaThread "ActiveMQConnection[ID:test-app-40386-1329820972144-0:2] Scheduler" daemon [_thread_blocked, id=80, stack(0xffffffff2e800000,0xffffffff2e832000)]
    0x0000000100eb1800 JavaThread "StopClock-INET1" [_thread_blocked, id=79, stack(0xffffffff2ee00000,0xffffffff2ee32000)]
    0x0000000100d8e800 JavaThread "Timer-0" [_thread_blocked, id=78, stack(0xffffffff2e700000,0xffffffff2e732000)]
    0x0000000100e39000 JavaThread "GC Daemon" daemon [_thread_blocked, id=27, stack(0xffffffff2e900000,0xffffffff2e932000)]
    0x0000000100e38000 JavaThread "RMI RenewClean-[10.10.8.220:39772]" daemon [_thread_blocked, id=26, stack(0xffffffff2ea00000,0xffffffff2ea32000)]
    0x0000000100e2d800 JavaThread "RMI Scheduler(0)" daemon [_thread_blocked, id=25, stack(0xffffffff2eb00000,0xffffffff2eb32000)]
    0x0000000100d67000 JavaThread "ActiveMQ Transport: tcp:///10.10.8.220:61616" [_thread_in_native, id=23, stack(0xffffffff2ef00000,0xffffffff2ef32000)]
    0x0000000100d9c800 JavaThread "ActiveMQConnection[ID:test-app-40386-1329820972144-0:1] Scheduler" daemon [_thread_blocked, id=21, stack(0xffffffff2f300000,0xffffffff2f332000)]
    0x0000000100db7000 JavaThread "RMI TCP Accept-0" daemon [_thread_in_native, id=19, stack(0xffffffff2fa00000,0xffffffff2fa32000)]
    0x0000000100c17000 JavaThread "RMI TCP Accept-7866" daemon [_thread_in_native, id=18, stack(0xffffffff2fb00000,0xffffffff2fb32000)]
    0x0000000100d2c000 JavaThread "RMI TCP Accept-0" daemon [_thread_in_native, id=17, stack(0xffffffff2fd00000,0xffffffff2fd32000)]
    0x0000000100a09000 JavaThread "Low Memory Detector" daemon [_thread_blocked, id=16, stack(0xffffffff76300000,0xffffffff76332000)]
    0x0000000100a06000 JavaThread "C2 CompilerThread1" daemon [_thread_blocked, id=15, stack(0xffffffff76400000,0xffffffff76500000)]
    0x0000000100a03000 JavaThread "C2 CompilerThread0" daemon [_thread_blocked, id=14, stack(0xffffffff76600000,0xffffffff76700000)]
    0x0000000100a01000 JavaThread "Signal Dispatcher" daemon [_thread_blocked, id=13, stack(0xffffffff76800000,0xffffffff76832000)]
    0x00000001009e1000 JavaThread "Finalizer" daemon [_thread_blocked, id=12, stack(0xffffffff76900000,0xffffffff76932000)]
    0x00000001009da000 JavaThread "Reference Handler" daemon [_thread_blocked, id=11, stack(0xffffffff76a00000,0xffffffff76a32000)]
    0x0000000100118000 JavaThread "main" [_thread_blocked, id=2, stack(0xffffffff7c800000,0xffffffff7c832000)]
    Other Threads:
    0x00000001009d3800 VMThread [stack: 0xffffffff76b00000,0xffffffff76c00000] [id=10]
    0x0000000100db8800 WatcherThread [stack: 0xffffffff2f800000,0xffffffff2f900000] [id=20]
    VM state:not at safepoint (normal execution)
    VM Mutex/Monitor currently owned by a thread: None
    Heap
    PSYoungGen total 9920K, used 1096K [0xffffffff60000000, 0xffffffff61800000, 0xffffffff75800000)
    eden space 9216K, 8% used [0xffffffff60000000,0xffffffff600bfa28,0xffffffff60900000)
    from space 704K, 46% used [0xffffffff61750000,0xffffffff617a2948,0xffffffff61800000)
    to space 704K, 0% used [0xffffffff616a0000,0xffffffff616a0000,0xffffffff61750000)
    PSOldGen total 45056K, used 3460K [0xffffffff35400000, 0xffffffff38000000, 0xffffffff60000000)
    object space 45056K, 7% used [0xffffffff35400000,0xffffffff35761258,0xffffffff38000000)
    PSPermGen total 32768K, used 16733K [0xffffffff30400000, 0xffffffff32400000, 0xffffffff35400000)
    object space 32768K, 51% used [0xffffffff30400000,0xffffffff31457470,0xffffffff32400000)
    Code Cache [0xffffffff78000000, 0xffffffff78400000, 0xffffffff7b000000)
    total_blobs=514 nmethods=216 adapters=254 free_code_cache=49284864 largest_free_block=26432
    Dynamic libraries:
    0x0000000100000000      /usr/jdk/instances/jdk1.6.0/jre/bin/sparcv9/java
    0xffffffff7f000000      /usr/lib/64/[email protected]
    0xffffffff7f200000      /lib/sparcv9/libthread.so.1
    0xffffffff7ec00000      /usr/jdk/instances/jdk1.6.0/jre/bin/sparcv9/../../lib/sparcv9/jli/libjli.so
    0xffffffff7ea00000      /lib/sparcv9/libdl.so.1
    0xffffffff7e700000      /lib/sparcv9/libc.so.1
    0xffffffff7e600000      /platform/SUNW,Sun-Fire-T200/lib/sparcv9/libc_psr.so.1
    0xffffffff7d800000      /usr/jdk/instances/jdk1.6.0/jre/lib/sparcv9/server/libjvm.so
    0xffffffff7d600000      /lib/sparcv9/libsocket.so.1
    0xffffffff7e400000      /usr/lib/sparcv9/libsched.so.1
    0xffffffff7d400000      /lib/sparcv9/libm.so.1
    0xffffffff7d100000      /usr/lib/sparcv9/libCrun.so.1
    0xffffffff7cf00000      /lib/sparcv9/libdoor.so.1
    0xffffffff7cd00000      /usr/lib/sparcv9/libdemangle.so.1
    0xffffffff7cb00000      /lib/sparcv9/libkstat.so.1
    0xffffffff7c900000      /lib/sparcv9/libnsl.so.1
    0xffffffff7c700000      /lib/sparcv9/libm.so.2
    0xffffffff7c500000      /lib/sparcv9/libscf.so.1
    0xffffffff7c300000      /lib/sparcv9/libuutil.so.1
    0xffffffff7c100000      /lib/sparcv9/libgen.so.1
    0xffffffff7bf00000      /lib/sparcv9/libmd.so.1
    0xffffffff7bd00000      /platform/SUNW,Sun-Fire-T200/lib/sparcv9/libmd_psr.so.1
    0xffffffff7bb00000      /lib/sparcv9/libmp.so.2
    0xffffffff7b900000      /usr/jdk/instances/jdk1.6.0/jre/lib/sparcv9/libverify.so
    0xffffffff7b700000      /usr/jdk/instances/jdk1.6.0/jre/lib/sparcv9/libjava.so
    0xffffffff7b400000      /usr/jdk/instances/jdk1.6.0/jre/lib/sparcv9/libzip.so
    0xffffffff76100000      /usr/jdk/instances/jdk1.6.0/jre/lib/sparcv9/libmanagement.so
    0xffffffff75f00000      /usr/jdk/instances/jdk1.6.0/jre/lib/sparcv9/libnet.so
    0xffffffff75d00000      /usr/jdk/instances/jdk1.6.0/jre/lib/sparcv9/libj2pkcs11.so
    0xffffffff75b00000      /usr/lib/sparcv9/libpkcs11.so
    0xffffffff75900000      /usr/lib/sparcv9/libcryptoutil.so.1
    0xffffffff2fe00000      /usr/lib/security/64/pkcs11_kernel.so
    0xffffffff2fc00000      /usr/lib/security/64/pkcs11_softtoken.so
    0xffffffff2f600000      /usr/jdk/instances/jdk1.6.0/jre/lib/sparcv9/libnio.so
    0xffffffff2f400000      /lib/sparcv9/librt.so.1
    0xffffffff2f100000      /lib/sparcv9/libaio.so.1
    0xffffffff2ec00000      /usr/jdk/instances/jdk1.6.0/jre/lib/sparcv9/librmi.so
    0xffffffff2de00000      /export/home/amit/electra/eWIRE/Agent/lib/solaris/sparc/64/libjMQ.so
    0xffffffff2dc00000      /usr/sfw/lib/64/libgcc_s.so.1
    VM Arguments:
    jvm_args: -Xss200k -DBYTEORDER=BE -DWORDSIZE=64 -Dcom.sun.management.jmxremote -Dcom.sun.management.jmxremote.port=7866 -Dcom.sun.management.jmxremote.authenticate=false -Dcom.sun.management.jmxremote.ssl=false
    java_command: com.ecs.middleware.Application Machine1 Agent1 /export/home/amit/electra/eWIRE/Agent/bin/middleware.config
    Launcher Type: SUN_STANDARD
    Environment Variables:
    JAVA_HOME=/usr/jdk/instances/jdk1.6.0
    CLASSPATH=/export/home/amit/electra/eWIRE/Agent/bin/.:/export/home/amit/electra/eWIRE/Agent/lib/commons-exec-1.1.jar:/export/home/amit/electra/eWIRE/Agent/lib/log4j-1.2.16.jar:/export/home/amit/electra/eWIRE/Agent/lib/gson-2.0.jar:/export/home/amit/electra/eWIRE/Agent/lib/netty-3.2.7.Final.jar:/export/home/amit/electra/eWIRE/Agent/lib/commons-lang-2.6.jar:/export/home/amit/electra/eWIRE/Agent/lib/ProducerAPI.jar:/export/home/amit/electra/eWIRE/Agent/lib/jMQ.jar:/export/home/amit/electra/eWIRE/Agent/lib/slf4j-api-1.5.11.jar:/export/home/amit/electra/eWIRE/Agent/lib/slf4j-log4j12-1.5.11.jar:/export/home/amit/electra/eWIRE/Agent/lib/ulframework.jar:/export/home/amit/electra/eWIRE/Agent/lib/activemq-all-5.5.0.jar:/export/home/amit/electra/eWIRE/Agent/lib/JMSActiveMQProvider.jar
    PATH=/usr/jdk/instances/jdk1.6.0/bin/java:/usr/jdk/instances/jdk1.6.0/jre/bin/sparcv9:/usr/openwin/bin:/usr/local/bin:/usr/sfw/sparc-sun-solaris2.10/bin:/usr/ccs/bin/sparcv9:/opt/SUNWspro/bin:/usr/java/bin:/usr/ccs/bin:/usr/local/libexec/gcc/sparc-sun-solaris2.10/3.4.6:/usr/local/bin:/bin:.:/oracle/orasrv11/OraBase_2/OraHome_3/bin:/usr/ucblib:/export/home/amit/electra/eWIRE/Agent/bin:/export/home/amit/activeMQ/apache-activemq-5.5.0/bin:/usr/vacpp/bin:/usr/vac/bin:/usr/bin:/usr/local/bin:/usr/sfw/bin:/etc:/usr/sbin:/usr/ucb:/export/home/amit/bin:/usr/bin/X11:/sbin:/oracle/orasrv11/OraBase_2/OraHome_3/bin:/usr/local/bin:/bin:/usr/jdk/instances/jdk1.6.0:
    LD_LIBRARY_PATH=/usr/jdk/instances/jdk1.6.0/jre/lib/sparcv9/server:/usr/jdk/instances/jdk1.6.0/jre/lib/sparcv9:/usr/jdk/instances/jdk1.6.0/jre/../lib/sparcv9::/lib/sparcv9:/export/home/amit/electra/eWIRE/Agent/lib/solaris/sparc/64:/usr/ccs/lib:/usr/sfw/lib:/usr/lib/sparcv9:/opt/freeware/lib:/export/home/amit/electra/eWIRE/Agent/lib:/oracle/orasrv11/OraBase_2/OraHome_3/lib:/export/home/amit/electra/eWIRE/Agent/lib:/usr/vac/lib:/export/home/amit/lib-WIRE:/usr/jdk/instances/jdk1.6.0/bin/sparcv9/classic/:/usr/jdk/instances/jdk1.6.0/lib/sparcv9
    SHELL=/usr/bin/ksh
    Signal Handlers:
    SIGSEGV: [libjvm.so+0x9b1230], sa_mask[0]=0xffbffeff, sa_flags=0x0000000c
    SIGBUS: [libjvm.so+0x9b1230], sa_mask[0]=0xffbffeff, sa_flags=0x0000000c
    SIGFPE: [libjvm.so+0x23f270], sa_mask[0]=0xffbffeff, sa_flags=0x0000000c
    SIGPIPE: [libjvm.so+0x23f270], sa_mask[0]=0xffbffeff, sa_flags=0x0000000c
    SIGXFSZ: [libjvm.so+0x23f270], sa_mask[0]=0xffbffeff, sa_flags=0x0000000c
    SIGILL: [libjvm.so+0x23f270], sa_mask[0]=0xffbffeff, sa_flags=0x0000000c
    SIGUSR1: SIG_DFL, sa_mask[0]=0x00000000, sa_flags=0x00000000
    SIGUSR2: SIG_DFL, sa_mask[0]=0x00000000, sa_flags=0x00000000
    SIGQUIT: [libjvm.so+0x867928], sa_mask[0]=0xffbffeff, sa_flags=0x00000004
    SIGHUP: SIG_IGN, sa_mask[0]=0x00000000, sa_flags=0x00000000
    SIGINT: SIG_IGN, sa_mask[0]=0x00000000, sa_flags=0x00000000
    SIGTERM: [libjvm.so+0x867928], sa_mask[0]=0xffbffeff, sa_flags=0x00000004
    SIG39: [libjvm.so+0x86b0b8], sa_mask[0]=0x00000000, sa_flags=0x00000008
    SIG40: [libjvm.so+0x23f270], sa_mask[0]=0xffbffeff, sa_flags=0x0000000c
    --------------- S Y S T E M ---------------
    OS: Oracle Solaris 10 9/10 s10s_u9wos_14a SPARC
    Copyright (c) 2010, Oracle and/or its affiliates. All rights reserved.
    Assembled 11 August 2010
    uname:SunOS 5.10 Generic_147440-06 sun4v (T2 libthread)
    rlimit: STACK 8192k, CORE infinity, NOFILE 65536, AS infinity
    load average:0.07 0.12 0.18
    CPU:total 7 has_v8, has_v9, has_blk_init, is_sun4v, is_niagara
    Memory: 8k page, physical 4194304k(2900008k free)
    Warning: Address: 0x0, Size: 8K, Mapped file: None, Access:r--
    vm_info: Java HotSpot(TM) 64-Bit Server VM (20.4-b02) for solaris-sparc JRE (1.6.0_29-b11), built on Oct 3 2011 01:43:34 by "" with Workshop 5.8
    time: Tue Feb 21 16:47:00 2012
    elapsed time: 2051 seconds

    Crazy thought here. I noticed in your stacktrace a call to Java_sun_awt_motif_MToolkit_run. Is your solaris server set up with a Motif/X-Windows server? Or is it a 'headless' installation? Many java AWT and Graphics libraries rely on an underlying native windowing system.

Maybe you are looking for

  • How to remove a hard drive on a Digital HiNote Ultra CT475

    I have an old HiNote Ultra CT475, that I need to remove the hard drive and have destroyed. Anyone know how to get the case off with destroying it? I have the front edge up, cause I found screws under the foot pad in front. I do not see any more screw

  • What's happening when Word opens and saves a document?

    Hello, I got very unspecific question, but I don't know where to start. I have an open xml document which gets generated by a third party tool. If I open the document using open xml sdk it looks VERY different from how it looks like when I opened and

  • Changing ITEM catergory using BAPI_SALESORDER_CHANGE

    Hi i am working on changing ITEM catergory for line items of sales order. If the owner(ZZORD_OWNER) is 'AM' then i hv to populate PSTYV in VBAP as 'ZTAC' else 'ZDEL'. the field ZZORD_OWNER is custom field added in header level(value is populated usin

  • Skip entity level validation programatically - special case

    Hi using jdev 11.1.1.3 Can anyone suggest me a solution as to how I can skip validation programatically. I have both entity level and deffered entitylevel txn validations on this entity. I use the VO to populate the data and I modify the date field,

  • 3" halo in middle of screen

    Is there anything I can do about a halo that appears on the screen of my 20" cinema display? It's a terribly distracting flaw.