Assertion failed: 0, file ../lnk/exthrow.cc, line 425 Abort (core dumped)

Hi,
I have a JNI native library that calls a custom C++ shared library with a number of number of dependencies. At runtime, in the process of loading the custom C++ library, I got the folloing message.
Assertion failed: 0, file ../lnk/exthrow.cc, line 425
Abort (core dumped)
If I did mdb on core dump, the following is the result.
mdb java.29922
mdb: core file data for mapping at ffb7a000 not saved: Bad address
Loading modules: [ libc.so.1 libuutil.so.1 ld.so.1 ]
$Cffbf7c90 libc.so.1`_lwp_kill+8(6, 0, ff2f2e10, ff2a8bd0, ffffffff, 6)
ffbf7cf0 libc.so.1`abort+0x110(ffbf7de0, 1, 0, ad314, ff2f12d8, 0)
ffbf7d80 libc.so.1`_assert+0x64(ff1d9358, ff1d935a, 1a9, ff1ea810, ad030, ff1d418c)
ffbf7fe0 libCrun.so.1`__1cG__CrunMex_rethrow_q6F_v_+0xf0(0, fffb, 0, 14c14, 2, 0)
ffbf8040 libtssclt.so.3`__1cDstdNbasic_istream4Ccn0ALchar_traits4Cc___2t6Mn0AIios_baseJEmptyCtor__v_+0xb8(eef09710, 0,
eef0df94, eef0a088, eef09730, eef09748)
ffbf80a0 libtssclt.so.3`__SLIP.INIT_A+0x20(0, ff2f3700, acb18, ff2bb774, f0bd4840, f0bd4880)
ffbf8100 libtssclt.so.3`__1cU__STATIC_CONSTRUCTOR6F_v_+4(ee774a48, ff2f3700, acb18, ff1d6e50, f0bd3b40, f0bd3b80)
ffbf8160 libtssclt.so.3`_init+0x110(ff3f40fc, ff3f5a50, 2b414, 0, ff3f4910, 821)
ffbf81c0 ld.so.1`call_init+0x16c(c10081, 1, fe9d0f60, ee7c5eb4, ff3f4910, ffdfffff)
ffbf8228 ld.so.1`dlmopen_intn+0x164(ff3f40fc, 10000, c01, 24, 3b, ff161f30)
ffbf8288 ld.so.1`dlmopen_check+0x160(ff3f40fc, 10c5c8, c01, ff3914f8, ffbf834c, 0)
ffbf82e8 ld.so.1`dlopen+0x30(10c5c8, 1, 1, ff185fac, 57c0, ff185fa8)
ffbf8350 libjvm.so`__1cCosIdll_load6Fpkcpci_pv_+0x20(10c5c8, ffbf8858, 400, 0, 12eed4, 5400)
ffbf83f0 libjvm.so`JVM_LoadLibrary+0x15c(10c5c8, 64fc, 38810, ff18696c, ff185fac, 2)
ffbf8c58 libjava.so`Java_java_lang_ClassLoader_00024NativeLibrary_load+0xe8(388cc, ffbf8f2c, ffbf8f28, 0, 10c5c8, 0)
ffbf8dc0 0xf900bc20(11, ffbf8f2c, ffbf8ea8, ffffff80, 64fc, 0)
ffbf8e40 0xf900bbc4(f0c303c0, b6, 0, 8, 1ffc, ffbf8ec0)
ffbf8ec0 0xf9005764(f0c30080, b8, f0c09478, f9014760, f0c374a8, ffbf8f90)
ffbf8f58 0xf90057a8(0, b8, ffbf911c, f9014a20, 110, ffbf9028)
ffbf9018 0xf9005764(f0c08de8, b6, ffbf919c, f9014a68, 57c0, ffbf90c0)
ffbf90b8 0xf9005764(339b8, 0, 64fc, f9014760, ff185fac, ffbf9140)
ffbf9140 0xf9005764(c000, 2, 4c00, f9014a70, ff17fca0, ffbf91b8)
ffbf91b8 0xf9000218(ffbf92a0, ffbf9380, a, f4d5f2f8, f900a7e0, ffbf9390)
ffbf9218 libjvm.so`__1cJJavaCallsLcall_helper6FpnJJavaValue_pnMmethodHandle_pnRJavaCallArguments_pnGThread__v_+0x5b8(
ffbf9378, 38810, ffbf938c, ffbf92b0, 38eb8, 0)
ffbf92e0 libjvm.so`__1cNinstanceKlassPinitialize_impl6FnTinstanceKlassHandle_pnGThread__v_+0x68c(ffbf9524, 38810, f4d5f330,
391cc, 38eb8, 38eb4)
ffbf94c0 libjvm.so`__1cNinstanceKlassKinitialize6MpnGThread__v_+0x80(38e20, 38810, fecd7a8c, f4d5f330, 38810, ff181fbc)
ffbf9540 libjvm.so`__1cbCfind_class_from_class_loader6FpnHJNIEnv__nMsymbolHandle_CnGHandle_3CpnGThread__pnH_jclass__+0xd8(
388cc, 1, 1, 38e18, f4d5f330, 1)
ffbf95b0 libjvm.so`jni_FindClass+0x720(388cc, 0, 0, ff18696c, 391cc, 0)
ffbf9640 main+0xe3c(6, 388cc, ff182ba0, 39348, 0, 1)
ffbf9ed0 _start+0x108(0, 0, 0, 0, 0, 0)
Any help/assistance on this issue would be highly appriciated.
Thanks and Regards
Somesh

I ran into this exact same problem (on Solaris, JVM 1.4.1). Although I don't know the exact cause, I can tell you what I did to fix it..
Of course, this happens when you try to load a native library (a .so in this case). I ldd'd that .so, and found that it in turn was linked to two other libraries in my control, and some other OS libraries.
When I statically linked either one of my libraries, such that only one of the libraries under my control was still linked dynamically, leaving the OS libaries untouched, then the problem went away. Note that it didn't matter which one I linked statically- as long as one (or both) were static there was no problem.
My guess was that there were some sort of cyclic dependencies with these libraries, but right now I'm happy enough that it works, so I'm not going to try and pursue this further..

Similar Messages

  • Assertion failed: 0, file ../lnk/exthrow.cc

    Hello,
    one of my programs aborts sometimes with a coredump and the following
    message "Assertion failed: 0, file ../lnk/exthrow.cc, line 338"
    I don't understand the message. Can anybody help me.
    thanks
    OS: SunOS xyz 5.8 Generic_108528-14 sun4u sparc SUNW,Sun-Fire-15000
    Forte: CC: Sun WorkShop 6 update 2 C++ 5.3 Patch 111685-09 2002/07/17

    Any compiler assertion is a compiler bug. To find the bug, or to determine whether it has already been fixed, we need a reproducible test case. Without a test case, there is no way other than random experimentation to find a workaround.
    - Rose

  • SunStudio 12. 2 throws assertion failed: 0, file ../lnk/exrttiutils.cc

    When compiling with SunStudio12 update 2 we get the following:
    Assertion failed: 0, file ../lnk/exrttiutils.cc line 215
    Since this is not part of our code base, we assume its part of the compiler support stuff. As you can see the error message does not provide us much help in finding where in our code this is occurring, any ideas? We'd love to produce a testcase but don't have clue where to begin...

    The assertion is actually coming from the runtime library libCrun.so.1, and it fires when an "impossible" situation (like a corrupted virtual table or exception record) occurs during exception handling. If this assertion happens at compile time, and not run time, some compiler component is at fault.
    Please add the following two options to the command line that resulted in the assertion:
    -filt=%none -V
    The -filt=%none prevents the verbose output (-V) from being scrambled, and the last component listed before the assertion is the one that failed. Please post your results here.
    We will then need a test case, but let's be sure what is happening first.

  • Good morning, I have the following problem. I can not start Adobe Muse on my computer because I get a box Assertion Failed in file "... \ src \ ape \ DOMFontProvider.cpp" at line 482: numFontadded = = 1  Doregisterfont fail to add font. Check museapp \ he

    Good morning, I have the following problem. I can not start Adobe Muse on my computer because I get a box Assertion Failed in file "... \ src \ ape \ DOMFontProvider.cpp" at line 482: numFontadded = = 1
    Doregisterfont fail to add font. Check museapp \ hello \ resources for missing files

    Are you still facing the same issue ? if yes then please post the screenshot of exact error and few details such as if you are getting this error while opening a specific file or on double click on Muse itself ?
    Thanks,
    Sanjit

  • Updated to Adobe Muse CC 2014, 2 days ago and I CANT even open it! It keeps on displaying the same ASSERTION FAILED IN FILE error.

    I love muse and have been using for years now. A couple of days ago I was really exited that they had a new version the  ADOBE MUSE CC 2014 so I updated it in my laptop. Now it wont even open. I had spent the last 3 days uninstalling and reinstalling MUSE CC 2014 thinking that it would help. But nothing works. I keep on having the same ASSERTION FAILED IN FILE error. At this point I am pretty much desperate and do not know really what to do and to make matters worse I have freelance work that needs to be done and update. If anyone can help I would really appreciated it.
    In addition, if anyone from the MUSE CC SUPPORT TEAM is reading this, please work on making access to you guys easier. I honestly could not find a way to talk to anyone from the ADOBE MUSE CC support team about this problem.

    I had the same problem but good news is I found the reason of problem and solution;
    I was using Windows 7 in English with timezone setting for Turkey. Adobe Muse was in English and had same problem, to solve this issue I even installed new Windows but it happened again.
    Solution is easy, I just changed Muse language settings from English to Turkish and so far so good i never had any crash or problem.
    Cheers!

  • Assert failed in tincan/server/TCMsgHandler.cpp line 70

    Assert failed in tincan/server/TCMsgHandler.cpp line 70
    Can anyone describe this error?
    its happening almost every second

    Which is your client?? It seems "connection" parameters are not correctly amf encoded. This happen if one of the connection parameters like "nearNonce", "farNouce", "ip", "protocolVersion" etc has a value whose type is not undentifiable (ie. whether this is string, number etc etc).

  • Assertion failed in file error

    I am using the Muse CC 2014 on Windows 8. Need to fix this bug:
    Location: Master Page
    Click on Browser fill
    Select background file. *.png
    Error message
    When I restart Muse, the background image is there.
    Has anyone else seen this. Any suggestions for resolving?

    Thank you for the very clear writeup. You're one of a few people who are reporting hitting this particular error. Unfortunately, thus far we haven't been able to figure out how to reproduce this error ourselves, in order to be able to fix it.
    Is there any chance you could create a screen recording of you reproducing the error? Our current suspicions are that it may be dependent on exact timing, mouse locations, panel configuration or some other machine or user-specific factor that we're failing to reproduce internally. A screen recording may provide the details we need in order to be able to reproduce and fix this.
    A screen recording tool with a free trial plan that I use occasionally is http://www.screencast.com. There are many others.

  • Adobe muse cc 2014 error says assertion failed in file

    am using a windows 8.1 on dell xps 15z and this is been happening since i installed muse cc 2014. can you guys help out as i use this software a lot for my works.when i leave the error code am still able to work but when i click ok it shuts down
    help needed pls

    Hi,
    I got the solution on this forum on another thread.
    Go to C:\Program Files (x86)\Common Files\Adobe(if you have 64 bit os, go to Program Files x86). There is a folder called "SLCache", go the properties of that folder & just uncheck the "Read Only" check box.
    Hope this may solve your problem.

  • Compiler error with forte 6.2 - assertion failed in sp_interface.cc

    I have a compilation error when compiling on my Ultra 10
    using Forte 6.2 C compiler (5.3). Here's the line:
    teds@enigma[195]% cc -xtarget=ultra3 -xarch=v8plusb -dalign -fns -fsimple=2 -ftrap=%none -xlibmil !!
    cc -xtarget=ultra3 -xarch=v8plusb -dalign -fns -fsimple=2 -ftrap=%none -xlibmil -xO4 -DCMO_DEBUG_DETAIL -DUSE_DATACONN -c cmoisubs.c -o cmoisubs.o
    cg: assertion failed in file ../src/ms_pipe/sp_interface.cc at line 689
    cg: Internal error: constval annotation set on reg with multiple defs
    cg: 1 errors
    cc: cg failed for cmoisubs.c
    teds@enigma[196]%
    Does anyone have any ideas?
    Thanks,
    Ted

    Hi There,
    Form the error message it seems like a bug in cg.
    Try the follwoing option and see if the bug goes away.
    -Qoption cg -O0 or use -Qms_pipe-off.
    Please refer C user's guide for usage.
    ....jagruti
    Developers Technical Support
    Sun Microsystems, http://www.sun.com/developers/support

  • 'Assertion failed' in metattach

    Hi!
    Yesterday I've started to receive the following error while running metattach command to expand softpartition:
    # metattach d101 100M
    Assertion failed: mp->un_ext.un_poff != 0, file ../common/meta_sp.c, line 3339
    metattach: Abort
    Abort (core dumped)
    # pstack core
    core 'core' of 9612: metattach d101 100M
    ff1205c8 _kill    (52, ffbff4f8, 52, 7efefeff, 81010100, ff00) + 8
    ff0b6ff0 _assert  (ff2248b8, ff2248d4, d0b, 4, 27d88, 0) + 54
    ff1f8ca4 meta_sp_fillextarray (263fea, 0, 11b, 0, 0, ffbff978) + 198
    ff1f8e68 meta_sp_updateunit (24798, 24c90, 27c28, 0, 32000, 1) + cc
    ff1fadb8 meta_sp_attach (22f00, 4, 1, 5, 0, 0) + 3bc
    00011798 ???????? (ffbff9ac, 24798, 3, ffbffa14, 5, ffbff978)
    000124d4 main (3, ffbffa14, ffbffa24, 22c00, 0, 0) + 698
    00011644 _start   (0, 0, 0, 0, 0, 0) + 108
    # uname -a
    SunOS men-orafunc-03 5.9 Generic_118558-26 sun4u sparc SUNW,Sun-Fire-V240
    The softpartition itself is placed on a top of 2-way mirror and each submirror consists of two concatenated partirions. Other softpartitions laying on this mirror are expanded withot an error. About a week and a half ago I've applied recent Recommended Patch Cluster.

    No, /etc/system contains no UFS-related or SVM-related customizations except required to boot from metadevice:
    set semsys:seminfo_semmni=100
    set semsys:seminfo_semmns=8192
    set semsys:seminfo_semmsl=256
    set shmsys:shminfo_shmmax=8589934592
    set shmsys:shminfo_shmmin=1
    set shmsys:shminfo_shmmni=100
    set shmsys:shminfo_shmseg=10
    * Begin MDD root info (do not edit)
    forceload: misc/md_trans
    forceload: misc/md_raid
    forceload: misc/md_hotspares
    forceload: misc/md_sp
    forceload: misc/md_stripe
    forceload: misc/md_mirror
    forceload: drv/pcisch
    forceload: drv/glm
    forceload: drv/sd
    rootdev:/pseudo/md@0:0,10,blk
    * End MDD root info (do not edit)
    * Start of HPfcraid edits. DO NOT DELETE THIS LINE
    forceload: drv/clone
    forceload: drv/ssd
    set maxphys=8388608
    set sd:sd_max_throttle=32
    set sd:sd_io_time=180
    set ssd:ssd_max_throttle=32
    set ssd:ssd_io_time=180
    * End of HPfcraid edits. DO NOT DELETE THIS LINE

  • Assert failed in /server/admin/FCSAdminServer.cpp

    one of our FMS 2.0.3 from some days is writing every minute
    in the admin.XX.log the error:
    2007-01-17 10:20:19 1129 (e)2581279 Assert failed in
    /server/admin/FCSAdminServer.cpp line 361 -
    2007-01-17 10:21:20 1129 (e)2581279 Assert failed in
    /server/admin/FCSAdminServer.cpp line 361 -
    2007-01-17 10:22:20 1129 (e)2581279 Assert failed in
    /server/admin/FCSAdminServer.cpp line 361 -
    but we don't touch the server and the applications on it.
    any kind of help or suggestions about this behaviour
    thanks in advantage for your time

    ciao,
    sorry, but we have not solved the problem

  • AMS 5 - Assert failed

    Hello,
    I am running AMS 5 on Amazon and I`m facing some troubles.
    I am running CentOS 5.5 on my server and when I run the command TOP I don`t the process amscore, but, my server is running.
    When i run the command
    ./amscore, I get the following error:
    Adobe Adobe Media Server (Core)Console mode.
    FMS detected IPv6 protocol stack!
    FMS config <NetworkingIPv6 enable=false>
    FMS running in IPv4 protocol stack mode!
    Host: ip-10-252-24-80 IPv4: 10.252.24.80
    Assert failed in tincan/util/TCIpcQueue.cpp line 48
    Server aborted.
    Segmentation fault
    When I run the command netstat -nap, I get this:
    Active Internet connections (servers and established)
    Proto Recv-Q Send-Q Local Address               Foreign Address             State            PID/Program name  
    tcp        0      0 127.0.0.1:11110                       0.0.0.0:*                   LISTEN           2166/amsadmin      
    tcp        0      0 0.0.0.0:1935                            0.0.0.0:*                   LISTEN           1446/amsedge    
    tcp        0      0 127.0.0.1:19350                       0.0.0.0:*                   LISTEN           1446/amsedge       
    tcp        0      0 0.0.0.0:1111                             0.0.0.0:*                   LISTEN           2166/amsadmin
    tcp        0      0 127.0.0.1:11110             127.0.0.1:55331             ESTABLISHED      2166/amsadmin      
    tcp        0      0 127.0.0.1:48667             127.0.0.1:19350             ESTABLISHED      2393/amscore       
    tcp        0      0 127.0.0.1:11110             127.0.0.1:52737             ESTABLISHED      2166/amsadmin      
    tcp        0      0 127.0.0.1:19350             127.0.0.1:48667             ESTABLISHED      1446/amsedge       
    tcp        0      0 127.0.0.1:55183             127.0.0.1:1935              ESTABLISHED      2104/httpd         
    tcp        0      0 127.0.0.1:55182             127.0.0.1:1935              ESTABLISHED      2104/httpd         
    tcp        0      0 127.0.0.1:55181             127.0.0.1:1935              ESTABLISHED      2104/httpd         
    tcp        0      0 127.0.0.1:55180             127.0.0.1:1935              ESTABLISHED      2104/httpd         
    tcp        0      0 127.0.0.1:53028             127.0.0.1:19350             ESTABLISHED      1727/amscore       
    tcp        0      0 127.0.0.1:19350             127.0.0.1:53028             ESTABLISHED      1446/amsedge       
    tcp        0      0 127.0.0.1:1935              127.0.0.1:55183             ESTABLISHED      1446/amsedge       
    tcp        0      0 127.0.0.1:1935              127.0.0.1:55182             ESTABLISHED      1446/amsedge       
    tcp        0      0 127.0.0.1:1935              127.0.0.1:55181             ESTABLISHED      1446/amsedge       
    tcp        0      0 127.0.0.1:1935              127.0.0.1:55180             ESTABLISHED      1446/amsedge       
    tcp        0      0 127.0.0.1:52737             127.0.0.1:11110             ESTABLISHED      1727/amscore       
    tcp        0      0 10.252.24.80:1935           201.45.72.62:65364          ESTABLISHED      1727/amscore       
    tcp        0      0 127.0.0.1:55331             127.0.0.1:11110             ESTABLISHED      2393/amscore       
    tcp        0      0 10.252.24.80:1111           189.29.131.28:62777         ESTABLISHED    2166/amsadmin      
    tcp        0      0 10.252.24.80:1935           177.81.58.187:55591         ESTABLISHED      1727/amscore       
    tcp        0      0 10.252.24.80:1935           201.28.179.130:16364        ESTABLISHED      1727/amscore       
    tcp        0      1 10.252.24.80:1935           200.193.77.204:48404        LAST_ACK    -                  
    tcp        0      0 :::8134                     :::*                        LISTEN      1441/httpd         
    tcp        0      0 :::80                       :::*                        LISTEN      1441/httpd         
    tcp        0      0 :::22                       :::*                        LISTEN      1345/sshd          
    tcp        0   3632 ::ffff:10.252.24.80:22      ::ffff:201.28.179.130:26781 ESTABLISHED 2851/2             
    tcp        0      0 ::ffff:10.252.24.80:22      ::ffff:177.139.162.15:54599 ESTABLISHED 2831/1             
    tcp        0      0 ::ffff:10.252.24.80:22      ::ffff:177.139.162.15:64996 ESTABLISHED 2352/0             
    udp        0      0 10.252.24.80:1935           0.0.0.0:*                               1446/amsedge       
    udp        0      0 127.0.0.1:1935              0.0.0.0:*                               1446/amsedge       
    udp        0      0 10.252.24.80:19350          0.0.0.0:*                               1446/amsedge       
    udp        0      0 127.0.0.1:19350             0.0.0.0:*                               1446/amsedge       
    udp        0      0 10.252.24.80:19351          0.0.0.0:*                               1727/amscore       
    udp        0      0 127.0.0.1:19351             0.0.0.0:*                               1727/amscore       
    udp        0      0 10.252.24.80:19352          0.0.0.0:*                               2393/amscore       
    udp        0      0 127.0.0.1:19352             0.0.0.0:*                               2393/amscore       
    udp        0      0 0.0.0.0:68                  0.0.0.0:*                               1223/dhclient
    Thanks

    In the core log I see this:
    2012-09-13
    19:44:04
    3516
    (w)2581171
    System memory load (91) is high.
    2012-09-13
    19:44:05
    3516
    (i)2581172
    System memory load (90) is now below the maximum threshold.
    2012-09-13
    19:44:08
    3516
    (w)2581171
    System memory load (91) is high.
    2012-09-13
    19:44:09
    3516
    (i)2581172
    System memory load (90) is now below the maximum threshold.
    2012-09-13
    19:44:10
    3516
    (w)2581171
    System memory load (91) is high.
    2012-09-13
    19:44:11
    3516
    (i)2581172
    System memory load (90) is now below the maximum threshold.
    Nothing on Master, the time was around the time it crashed, the problem is that it crashes when I have 100+ clients connected and crashes when I have 30 clients connects.
    It`s like this. The server start with very low memory usage, around 30%, then, with the same number of clients it goes to 50 ~ 60%, then I have more clients (70 ~ 90) and the memory usage goes to 100%, and the memory usage never goes down, no matter what. Sometimes I have 100 clients and my memory usage is in 100%, then my clients disconect and I get 30 and my memory usage is still at 100%.
    Seems like the server increases the memory usage and even on 100% tries to increase even more and crashes.
    Thanks

  • Compiler Error: Assertion:   (../lnk/ir_util.cc, line 344)

    Hello,
    I am getting the error : Assertion: (../lnk/ir_util.cc, line 344) when compiling with Sun C++ 5.6. Does anyone know under which circumstances this error might occur ?
    Unfortunately the sun system is not my main development environment and is only used for occasional test builds. The code that causes the error does compile under MS Windows (gcc and Visual C++)
    Therefore i can only tell that compilation was successful a while ago. I do not know if there where changes to the system nor am I able to pin the error down to a single change to my code.
    Even hints on what might cause this problem will be much appreciated.
    Thanks,
    Fr�d�ric

    All compiler assertions are due to internal consistency checks failing, meaning that something "impossible" happened from which the compiler cannot recover.
    There is no a priori way to determine what in the source code triggered the assertion. A compiler engineer needs to work with example code that results in the assertion.
    All reported assertions from ir_util.cc (one of the files that make up the C++ compiler) have been fixed in C++ 5.6 or earlier. Evidently you have found something new.
    This particular assertion means the compiler was missing internal data needed to generate debug information. Compiling without -g should eliminate the assertion. Unfortunately, your ability to debug this part of your source code would be reduced.
    If you have a support contract, you should use your support channel to report the problem. The support engineer will need sample source code that demonstrates the problem, in order to file a bug report.
    If you don't have a support contract but can narrow down a test case to something small enough to post here, I'll see what I can do. Otherwise, if you post your email address or put it in your profile, I'll let you know where you can send a larger test case.

  • E)2581279      Assert failed in /modules/streams/flv/TCFLVData.cpp line 1202

    In an application where I do a recording from webcam to fms,
    sometimes I obtain this error in core.XX.log:
    (e)2581279 Assert failed in
    /modules/streams/flv/TCFLVData.cpp line 1202 -
    when it happens the effect client side is that I try to play
    a stream just recorded, and I see a stream of 0 seconds, with the
    command: stream.play(nomefile, 0, -1, true);
    often when I obtain this error the durantion of the stream
    from the media server is very different form the real one recorded.
    How could I resolve this situation or work around it?
    thanks for your time and all of your suggestions and helps
    filippo

    thanks patrick for your interest.
    we're using the 2.0.3.
    this error code was never traced in the log file of the 2.0.2

  • Assert failed in /util/TCSysUtil.cpp line 729

    I have looked everywhere for an answer to this problem and have had no luck. When I start FMS2 this error continues to scroll. What is the cause of this and how can I fix it?
    #Version: 1.0
    #Start-Date: 2011-07-21 00:09:42 
    #Software: Macromedia Flash Media Server 2.0 r1145 
    #Date: 2011-07-21 
    #Fields: date   time    x-pid   x-status        x-ctx   x-comment 
    2011-07-21      00:09:42        11907   (w)2581201      No primary license key found. Switching to Developer Edition.   - 
    2011-07-21      00:09:42        11907   (i)2581246      Core (11907) sending register cmd to edge.      - 
    2011-07-21      00:09:44        11907   (e)2581279      Assert failed in /util/TCSysUtil.cpp line 729   - 
    2011-07-21      00:09:45        11907   (e)2581279      Assert failed in /util/TCSysUtil.cpp line 729   - 
    2011-07-21      00:09:46        11907   (e)2581279      Assert failed in /util/TCSysUtil.cpp line 729   - 
    2011-07-21      00:09:47        11907   (e)2581279      Assert failed in /util/TCSysUtil.cpp line 729   - 
    2011-07-21      00:09:48        11907   (e)2581279      Assert failed in /util/TCSysUtil.cpp line 729   - 
    2011-07-21      00:09:49        11907   (e)2581279      Assert failed in /util/TCSysUtil.cpp line 729   - 
    2011-07-21      00:09:50        11907   (e)2581279      Assert failed in /util/TCSysUtil.cpp line 729   - 
    2011-07-21      00:09:51        11907   (e)2581279      Assert failed in /util/TCSysUtil.cpp line 729   - 
    2011-07-21      00:09:52        11907   (e)2581279      Assert failed in /util/TCSysUtil.cpp line 729   - 
    2011-07-21      00:09:53        11907   (e)2581279      Assert failed in /util/TCSysUtil.cpp line 729   - 
    FMS_2_0_r1145_linux
    Linux XXXXXXX.reflected.net 2.6.18-238.el5PAE #1 SMP Thu Jan 13 17:10:20 EST 2011 i686 i686 i386 GNU/Linux
    CentOS release 5.6 (Final)

    Hi,
    I looked through this and it seems there is a problem in parsing /proc/meminfo.
    Can you please see to it that the file has appropriate permissions and if that is Ok, it would help if you can do a 'cat /proc/meminfo' and post it here.
    Thanks!

Maybe you are looking for