Critical Section Minus Synchronization

Without using synchronization would it be possible
to change these two classes so that each thread
takes it in turn to be in their criticall
sections i.e. one cannot take consecutive turns?
Thanks.
public class SharedVariables extends Object {
public int turn;
public boolean[] flag = new boolean[2];
public SharedVariables() {
flag[0] = false;
flag[1] = false;
// A thread running SectionedCode alternates between
// a critical section and the remainder.
public class SectionedCode implements Runnable {
int this_thread, other_thread;
SharedVariables s;
public SectionedCode( int tid, SharedVariables SV ) {
this_thread = tid;
other_thread = 1 - tid;
s = SV;
public void run() {
while ( true ) {
s.flag[this_thread] = true;
s.turn = other_thread;
while ( (s.flag[other_thread] == true) && (s.turn == other_thread) )
Thread.yield();
// Critical Section
System.out.printn("Thread "+this_thread+ "incritical section");
s.flag[this_thread] = false;
System.out.println("Thread " + this_thread + " in remainder");
}

I am not sure if i understand the question BUT if i have understood you correctly, you should be reading up on the join feature in threads

Similar Messages

  • Critical section with Sql*Load

    Hi,
    I need to prevent multiple instances of a batch job from running at the same time. This is easy when the batch job is pure PL/SQL. A critical section implemented with DBMS_LOCK does the job just well.
    But now I have a batch job which first uploads a file using Sql*Load, and only later calls Sql*Plus and PL/SQL.
    How do I prevent multiple instances of my Sql*Load from running in parallel ? (i.e. writing into the same table).
    I've heard about restricting the number of concurrent sessions in the login profile. Trouble is, I have a dozen different "types" of batch jobs, and we don't want to have a dozen different logins. Batches of different types are allowed to run in parallel, and this is even desirable.
    Andrew

    Since sqlldr is essentially an O/S command, you will need to do the locking at the O/S level. Depending on how you call the batch jobs, you have two choices.
    If the controlling script and/or the loader control file for each batch have a consistent name, then you can do something like:
    #!/usr/bin/ksh
    me=$$
    while [ $me -ne 0 ]
    do
       run=`ps -ef |grep <<script_or_control_file_name>> |grep -v grep |grep -v $me`
       if [ "$run" = "" ]; then
          run sqlldr and
          rest of batch commands
          break
       else
         sleep or exit or whatever
       fi
    done
    -- Any post processing requiredWe have situations where the controlling shell script, and the loader control file are automatically created by a master control program. Since the file names differ for every run, we use a structure like this:
    #!/usr/bin/ksh
    flagfile=batch1.flg
    while [ $flagfile = $flagfile ]
    do
         if [ ! -f $flagfile ]; then
            touch $flagfile
            run sqlldr and
            rest of batch commands
            if [ successful ] ; then
               rm $flagfile
            fi
            break
         else
            sleep or exit or whatever
         fi
    done
    -- Any post processing requiredHTH
    John

  • [ETA: posted in wrong forum, sorry! will repost in relevant forum] reading samples: critical section atomicity?

    Hello all,
    I have the following situation:
    - one thread (T1) is constantly reading samples from a NI USB 9229 in a local buffer and copying them an array A (44100Hz)
    - another thread (T2) is waiting for a command and subsequently copying a batch of 44100 samples from A to a local array variable and doing some computation with them
    - array A is protected in a critical section (T1 and T2 enter the critical section when working with A directly and leave it afterwards)
    How "atomic" is the reading of samples from the device in my array A? I.e., is it guaranteed that the critical section protection on A means that by the time T2 accesses A, T1 has finished writing 44100 samples in it?
    Or do I have to register with DAQmxRegisterEveryNSamplesEvent() a callback which 1) reads 44100 samples, 2) notifies T2 that the batch is complete and available?
    Thank you in advance!
    Message Edited by acgrama on 02-08-2010 08:30 AM
    Solved!
    Go to Solution.

    As far as I can understand the situation, the answer should be 'yes': the array is protected until you leave the critical section.
    But could I suggest an alternative, perhaps simpler approach?
    If you configure a thread safe queue of 44100 elements which discards old elements, with T1 that fills it on top, T2 can freely read from the queue without disturbing T1, having available the most recent set of data in any moment.
    Proud to use LW/CVI from 3.1 on.
    My contributions to the Developer Zone Community
    If I have helped you, why not giving me a kudos?

  • Implementing "critical sections" using recursive mutex locks

    Greetings.
    I have chosen pthread mutexes for implementing critical sections in my ported Windows code. As you probably all know, mutexes do not by default support recursive locking and will deadlock if attempted. With Solaris 7 came support for recursive locking through the PTHREAD_MUTEX_RECURSIVE type of mutex. The problem I have encountered when using these recursive mutexes doesn't even involve recursive locking, yet only manifests itself when using the recursive type.
    To pin-point the problem, I have written a very simple application that creates 10 threads and pauses (via sleep()) for an amount of time sufficient for all threads to complete. In each thread, a global mutex (recursive type) is locked and then immediately unlocked, with status going to stdout via printf. There is no problem with this simple application and all threads run to completion after each gets the mutex lock in succession. To really test the mutex however, I simulated a pre-empted or otherwise blocked thread via a call to sched_yield() after locking the mutex and before unlocking it. In this version of the application, only the first thread to acquire the mutex lock completes (after successfully locking and unlocking the mutex), and all other threads hang waiting to acquire the mutex lock.
    Any insight on this problem or suspected problems with the code I described would be GREATLY appreciated! I would be happy to send the source to this simple application to anyone interested in observing it's behavior.
    Regards and thanks in advance.
    Chad Attermann
    telic.net

    Solaris 7 is shipped broken for recursive mutexes... You can fix it by using patch 106980-13 and everything it depends on...
    Good luck!

  • Critical section?

    Hi guys,
    I've a question for you.
    I have a thread that gets a continuous stream of bytes from a server. As it reads, the thread updates an internal variable byte_count.
    I need to read this variable every certain number of ms, let's say 20, to calculate the bandwidth during that time interval.
    What I thought is to define a Timer class within the Thread class, and to use method ScheduleAtFixedRate to know when to access byte_count.
    I was wondering if this is a working solution and if I get an accectable timing... I was reading that java timers have low resolution...
    Also I don't know exactly if I need some synchronization to handle the access to the variable byte_count.
    What do you think?
    Thanks a lot!!!

    Declaring countBytes volatile should also work, in
    place of synchronizing, but my understanding isthat
    volatile isn't always implemented correctly. Idon't
    know any details of that--which VMs, if it's been
    fixed in 1.4.2 or 1.5 with the new JMM, etc.
    Also, if there could be more than one thread
    executing byteCount++ then simply making it
    volatile won't be sufficient.Even if volatile would've been implemented
    correctly, the '++' operator
    ruins this simple scenario. For every volatile
    variable, a read or write from/to
    this variable is guaranteed to be atomic, but the
    '++' (or '--' operator for that
    matter) doesn't guarantee any atomicity at all. This
    is what my copy of the JLS
    has to say about it:
    - V is definitely assigned after ++a, --a, a++, or
    a-- iff either a is V or V is definitely assigned
    after the operand expression.
    - V is definitely unassigned after ++a, --a, a++, or
    a-- iff a is not V and V is definitely unassigned
    after the operand expression.
    - V is [un]assigned before a iff V is [un]assigned
    before ++a, a, a++, or a.
    to me that means that atomicity of the '++' operator
    is a nono ...
    kind regards,
    Jos
    IF more that one thread is doing the ++. If only one thread is ++ing, then we're fine. It still feels kind of fragile though, so I'd go with syncing.

  • [POL-3267] read-only database or critical section not allowed

    After each execution of the application, the base is left in state read-only, which produces error POL 3267 in the following execution.
    Which could be the reason?
    How can it be solved?
    Thanks,
    German Gioia
    [email protected]
    ANGRAS SRL

    Never mind, I am answering my own thread.
    The code posted by Balaji Rathakrishnan
    from SQL Server dev team no longer works on SQL 20012, without additional annotation:
    Here is the fix: (add DataAccess = .....Read etc) as below
      [SqlFunction(FillRowMethodName = "FillRow", TableDefinition = "FileContents varbinary(max)", DataAccess
    = DataAccessKind.Read)]
        public static IEnumerator GetFile(String FileName)
            return new SingleFileLoader(FileName);
    All is well now.
    Yuri Budilov
    Yuri Budilov

  • Do I need to synchronize a singleton just for reads?

    Hello forum. Here's my situation: I keep config data for pages on my website in an XML file, I load said XML file in a startup servlet, creating a JDOM Document object, accessed by a singleton.
    Every time a page is loaded, the page accesses this Document object via the singleton, sees whether the page is secure, which template it should use, a bunch of stuff.
    Now, because the Document object is created when the context is started, and is never written too, only read, do I need to synchronize it?
    I read "Threading lightly, Part 1: Synchronization is not the enemy," on ibm.com (http://www-128.ibm.com/developerworks/java/library/j-threads1.html) in hopes of answering my own question, and the most relevant paragraph states:
    "If you are writing data that may be read later by another thread, or reading data that may have been written by another thread, then that data is shared, and you must synchronize when accessing it."
    But does my scenario fit? Yes I'm writing data that will be read by another thread, but no thead is accessing this data until the context is fully loaded and the object is fully instantiated. The object is not being written to by threads asynchronously... I just run the risk of it being read at the same time. Do I need to synchronize? If so... having synchronized variables in a servlet environment is bad, so what other approach should I take?
    Thanks for your help.

    But does my scenario fit? Yes I'm writing data that
    will be read by another thread, but no thead is
    accessing this data until the context is fully loaded
    and the object is fully instantiated. The object is
    not being written to by threads asynchronously.If all the writing is complete before any of the reading starts, then there's no need to synchronize the reading.
    .. I
    just run the risk of it being read at the same time.There's no risk in multiple concurrent reads.
    Do I need to synchronize? If so... having
    g synchronized variables in a servlet environment is
    bad, so what other approach should I take?Couple minor points:
    * You don't have synchronized variables. You have synchronized blocks and methods.
    * Using synchronization in a servlet context isn't in and of itself necessarily bad. Having multiple requests sync on the same lock can hurt response time, so try to avoid it, and if you must do it, keep the critical sections as small as possible.

  • Threads Critical

    How could I change the two classes below so that the
    two threads take turns to be in their critical sections,
    and they aren't allowed to take two consecutive turns.
    Thanks.
    public class SharedVariables extends Object {
    public int turn;
    public boolean[] flag = new boolean[2];
    public SharedVariables() {
    flag[0] = false;
    flag[1] = false;
    // A thread running SectionedCode alternates between
    // a critical section and the remainder.
    public class SectionedCode implements Runnable {
    int this_thread, other_thread;
    SharedVariables s;
    public SectionedCode( int tid, SharedVariables SV ) {
    this_thread = tid;
    other_thread = 1 - tid;
    s = SV;
    public void run() {
    while ( true ) {
    s.flag[this_thread] = true;
    s.turn = other_thread;
    while ( (s.flag[other_thread] == true) && (s.turn == other_thread) )
    Thread.yield();
    System.out.printn("Thread "+this_thread+ "incritical section");
    s.flag[this_thread] = false;
    System.out.println("Thread " + this_thread + " in remainder");
    }

    Cant it be done without synchronisation?If you created a boolean and a char variable, using the boolean to indicate whether or not the method is in use and the char indicates which thread last used the method, that would work. What you have effectively done is to implement your own version of synchronization. :->
    Mark

  • Hardware options for synchronization

    Was wondering if someone could help "rank" these approaches for synchronization.
    - TCXO with shared references/PPS (i.e. - MIMO cable or OctoClock)
    - OCXO
    - OCXO with GPS
    The "standard" TCXO models require extra stuff (MIMO or OctoClock or external sources) to phase lock and time synchronize. 
    The OCXO gives you better accuracy...but it is unclear the degree to which this has an effect on phase coherency (and over how long a time).  Presumably, you'd still need something like a PPS to time synchronize?
    With the GPS disciplined devices, are you basically getting the phase coherency and time synchronization from the GPS signal rather than external 'stuff'?  Or are there instances where you'd still need something like the MIMO cable or OctoClock to further nail down timing and synchronization?
    Brandon
    Solved!
    Go to Solution.

    Hi Brandon,
    Thank you for the extra information! I have been looking further in to this issue, and a lot of your question depends on your hardware and system setup. JamesB, awesome post! This is great information.  To add to this, for our GPS USRPS (NI USRP 293x) unfortunately you cannot use the Ref In inputs, so splitting out the external clock is not going to be an option on this hardware. With this in mind, option (c) will likely be the easiest since that is exactly how our USRP's work. Are you using an NI USRP? If so and you're trying to sync up 8 of these USRP's together, GPS might be the only real option. 
    As far as direct cabling vs. GPS for accuracy, direct cabling is more accurate if you are using an external clock that is is more accurate than the onboard clock and if you're using a USRP that can use an external reference clock 
    The NI USRP 2930 and 2932 both have OCXO's which alone are more accurate but there is no way to extract the 10MHz source to another device, except for a MIMO cable which is only good to use for 2 devices. Therefore the direct cabling method only exists for specific scenarios:
    1. Using MIMO cable for up to 2 devices
    2. Using an external clock, and a splitter.
    However, the internal OXCO does not do you any good for more than two device synchronization. Using a GPS antenna, clock disciplining and a clear view of the sky will let each USRP utilize it's own OXCO and still be synchronized. So it is not just GPS, it is the act of using GPS information to adjust the already great OCXO time reference which required each device to adjust it's own clock. The following document shows the specifications for a USRP without a GPS antenna (just the OXCO accuracy) vs. the OCXO accuracy in conjunction with the GPS disciplining in section 4 (Synchronization with GPS Disciplined Oscillators on NI USRP 293x):
    http://www.ni.com/tutorial/14705/en/
    While I was looking in to this, I also found this forum post that had a similiar question:
    http://forums.ni.com/t5/USRP-Software-Radio/Synchronization-of-three-USRP-2932/m-p/2835772
    I hope this was helpful!
    Stephanie S.
    Application Engineer
    National Instruments

  • Forcing/guiding hotspot to compile sections of code

    Anyone has any trick to (predictably) force hotspot to compile
    a critical section of code.
    I basically have an algorithm (approx 100 lines) where 80% of
    cycles are spent but somehow the hotspot implementation
    on Symbian/ARM (J2SE/MIDP) only hava around 30% chance of
    compiling.
    The result is very unpredicatble preformance.
    The hotspot on PC J2SE is good of course. But that's the PC.
    Anyone has any pointers?
    Thanks in advance.
    Cheers...

    Sadly there is really nothing you dan do here. The Jit works on the background, and the application does not have any control over it.
    You might try a System.gc() before you start your algo to make sure the vm cleans up a bit, but I don't think it will help you very much...

  • Sorry posted wrong section

    x

    As far as I can understand the situation, the answer should be 'yes': the array is protected until you leave the critical section.
    But could I suggest an alternative, perhaps simpler approach?
    If you configure a thread safe queue of 44100 elements which discards old elements, with T1 that fills it on top, T2 can freely read from the queue without disturbing T1, having available the most recent set of data in any moment.
    Proud to use LW/CVI from 3.1 on.
    My contributions to the Developer Zone Community
    If I have helped you, why not giving me a kudos?

  • Home-made monitors for thread synchronization

    I have an assignment that request to implement a multiple-readers/one-writer algorithm on a shared ressource. I know Java already provide such methods as wait() and notify() but I have to write my own.
    So far, i have figured the startReading(), startWriting(), stopReading() and stopWriting() methods, but i don't understand how to write my own wait() and notify() methods. It was told that we could use a queue for the readers and another one for the writers. Also, i cannot use Threads anywhere.
    I find it very hard to figure it out. Anybody has an idea or some links where i could find the information?

    The purpose of the assignment is to understand how such mecanisms are working on a OS. We do this with a simulation. Maybe i didn't explain very well what i'm trying to do. Here is the code i've come with, it is working fine, but because i don't understand really well these mecanisms i am not sure it is good.
    class Dispatcher {
      Queue tpcb;                                 // All processes currently running
      MultipleReadersSingleWriterMonitor monitor; // Monitor for read/write lock
      Queue signaled;                             // Processes that were allowed to access the critical section
      public Dispatcher() {
        this.tpcb = new Queue();
        this.monitor = new MultipleReadersSingleWriterMonitor() {
          public void signal(final Processus p) {
            signaled.enqueue(p);
        this.signaled = new Queue();
      public void execute() { // When we arrive here, the tpcb has been filled
        for (Iterator i=tpcb.iterator(); i.hasNext(); ) { // Call the appropriate monitor for each processus
          Processus p = (Processus)i.next();
          if (p.mode == p.MODE_READ) {
            monitor.startReading(p);
          else {
            monitor.startWriting(p);
       // Pseudo-execute all the processus
       while (!tpcb.empty()) {
         if (!signaled.empty()) executeProcessus(signaled.dequeue());
      public void executeProcessus(Processus p) {
        // Code that simulate a processus running in the critical section
        // We are done, call the appropriate unlocking monitor
        if (p.mode == p.MODE_READ) {
          monitor.stopReading();
        else {
          monitor.stopWriting();
    }Anyway, unless i come with a suddent idea this is the final version. Thanx for answering.

  • Disp+work stop because of shared memory?

    Hello Gurus, I have an SAP server that will not start. It was running previously, but after a parameter update and an instance restart, I cannot get the dispatcher running.
    System is Windows 2012 Server, MSSQL 2008 R2, 16 Core 132 GB RAM.
    I believe it is related to shared memory overlapping somehow, but  I am not sure how to resolve or investigate. I have had issues previously with memory overlap halting SAP servers with Diagnostics Agents, but this server is not currently running any DAA. It is running SAPRouter and some SAP Web Dispatcher instances.
    I will include my trace files below:
    Please help!
    DEV_W0:
    trc file: "dev_w0", trc level: 1, release: "721"
    *  ACTIVE TRACE LEVEL           1
    *  ACTIVE TRACE COMPONENTS      all, MJ
    M sysno      00
    M sid        PRD
    M systemid   562 (PC with Windows NT)
    M relno      7210
    M patchlevel 0
    M patchno    100
    M intno      20020600
    M make       multithreaded, Unicode, 64 bit, optimized
    M profile    \\SAPERP\sapmnt\PRD\SYS\profile\PRD_DVEBMGS00_SAPERP
    M pid        7668
    M
    M  kernel runs with dp version 137000(ext=119000) (@(#) DPLIB-INT-VERSION-137000-UC)
    M  length of sys_adm_ext is 588 bytes
    M  ***LOG Q0Q=> tskh_init, WPStart (Workp. 0 7668) [dpxxdisp.c   1376]
    I  MtxInit: 30000 0 0
    M  DpSysAdmExtCreate: ABAP is active
    M  DpSysAdmExtCreate: VMC (JAVA VM in WP) is not active
    M  DpIPCInit2: read dp-profile-values from sys_adm_ext
    M  DpShMCreate: sizeof(wp_adm) 42864 (2256)
    M  DpShMCreate: sizeof(tm_adm) 5517056 (27448)
    M  DpShMCreate: sizeof(wp_ca_adm) 64000 (64)
    M  DpShMCreate: sizeof(appc_ca_adm) 64000 (64)
    M  DpCommTableSize: max/headSize/ftSize/tableSize=500/16/1384064/1384080
    M  DpShMCreate: sizeof(comm_adm) 1384080 (2744)
    M  DpSlockTableSize: max/headSize/ftSize/fiSize/tableSize=0/0/0/0/0
    M  DpShMCreate: sizeof(slock_adm) 0 (296)
    M  DpFileTableSize: max/headSize/ftSize/tableSize=0/0/0/0
    M  DpShMCreate: sizeof(file_adm) 0 (80)
    M  DpShMCreate: sizeof(vmc_adm) 0 (2160)
    M  DpShMCreate: sizeof(wall_adm) (41664/42896/64/192)
    M  DpShMCreate: sizeof(gw_adm) 48
    M  DpShMCreate: sizeof(j2ee_adm) 3952
    M  DpShMCreate: SHM_DP_ADM_KEY (addr: 0000000000200050, size: 7174832)
    M  DpShMCreate: allocated sys_adm at 0000000000200060
    M  DpShMCreate: allocated wp_adm_list at 00000000002030B0
    M  DpShMCreate: allocated wp_adm at 00000000002032A0
    M  DpShMCreate: allocated tm_adm_list at 000000000020DA20
    M  DpShMCreate: allocated tm_adm at 000000000020DA70
    M  DpShMCreate: allocated wp_ca_adm at 0000000000750980
    M  DpShMCreate: allocated appc_ca_adm at 0000000000760390
    M  DpShMCreate: allocated comm_adm at 000000000076FDA0
    M  DpShMCreate: system runs without slock table
    M  DpShMCreate: system runs without file table
    M  DpShMCreate: allocated vmc_adm_list at 00000000008C1C40
    M  DpShMCreate: system runs without vmc_adm
    M  DpShMCreate: allocated gw_adm at 00000000008C1CF0
    M  DpShMCreate: allocated j2ee_adm at 00000000008C1D30
    M  DpShMCreate: allocated ca_info at 00000000008C2CB0
    M  DpShMCreate: allocated wall_adm at 00000000008C2D40
    M  DpCommAttachTable: attached comm table (header=000000000076FDA0/ft=000000000076FDB0)
    M  DpRqQInit: use protect_queue / slots_per_queue 0 / 2001 from sys_adm
    M  rdisp/queue_size_check_value :  -> on,50,30,40,500,50,500,80
    X  EmInit: MmSetImplementation( 2 ).
    X  MM global diagnostic options set: 0
    X  <ES> client 0 initializing ....
    X  <ES> EsILock: use spinlock for locking
    X  Using implementation view
    X  <EsNT> Using memory model view.
    M  <EsNT> Memory Reset disabled as NT default
    X  ES initialized.
    X  mm.dump: set maximum dump mem to 96 MB
    M  DpVmcSetActive: set vmc state DP_VMC_NOT_ACTIVE
    M
    M Fri May 16 01:23:14 2014
    M  ThStart: taskhandler started
    M  ThInit: initializing DIA work process W0
    M
    M Fri May 16 01:23:15 2014
    M  ThInit: running on host SAPERP
    M
    M Fri May 16 01:23:16 2014
    M  calling db_connect ...
    B  Loading DB library 'E:\usr\sap\PRD\DVEBMGS00\exe\dbmssslib.dll' ...
    B  Library 'E:\usr\sap\PRD\DVEBMGS00\exe\dbmssslib.dll' loaded
    B  Version of 'E:\usr\sap\PRD\DVEBMGS00\exe\dbmssslib.dll' is "721.02", patchlevel (0.44)
    C  Callback functions for dynamic profile parameter registered
    C  Thread ID:4168
    C  Thank You for using the SLODBC-interface
    C  Using dynamic link library 'E:\usr\sap\PRD\DVEBMGS00\exe\dbmssslib.dll'
    C  dbmssslib.dll patch info
    C    SAP patchlevel  0
    C    SAP patchno  100
    C    Last MSSQL DBSL patchlevel 0
    C    Last MSSQL DBSL patchno         44
    C    Last MSSQL DBSL patchcomment DBSL support for Microsoft ODBC Driver 11 for SQL Server (1816426)
    C  ODBC Driver chosen: SQL Server Native Client 11.0 native
    C  lpc:(local) connection used on SAPERP
    C  lpc:(local) connection used on SAPERP
    C  Driver: sqlncli11.dll Driver release: 11.00.3000
    C  GetDbRelease: 11.00.3339.00
    C  GetDbRelease: Got DB release numbers (11,0,3339,0)
    B  Connection 0 opened (DBSL handle 0)
    M  ThInit: db_connect o.k.
    M  ICT: exclude compression: *.zip,*.rar,*.arj,*.z,*.gz,*.tar,*.lzh,*.cab,*.hqx,*.ace,*.jar,*.ear,*.war,*.css,*.pdf,*.gzip,*.uue,*.bz2,*.iso,*.sda,*.sar,*.gif,*.png,*.swc,*.swf
    I
    I Fri May 16 01:23:17 2014
    I  MtxInit: 0 0 0
    M  SHM_PRES_BUF (addr: 0000000018030050, size: 4400000)
    M  SHM_ROLL_AREA (addr: 000007FFDDAB0050, size: 268435456)
    M  SHM_PAGING_AREA (addr: 0000000018470050, size: 134217728)
    M  SHM_ROLL_ADM (addr: 0000000020480050, size: 2767448)
    M  SHM_PAGING_ADM (addr: 0000000020730050, size: 787488)
    M  ThCreateNoBuffer allocated 548152 bytes for 1000 entries at 0000000020800050
    M  ThCreateNoBuffer index size: 3000 elems
    M  ThCreateVBAdm allocated 31056 bytes (50 server) at 0000000000910050
    X  EmInit: MmSetImplementation( 2 ).
    X  MM global diagnostic options set: 0
    X  <ES> client 0 initializing ....
    X  Using implementation view
    X  ES initialized.
    X  mm.dump: set maximum dump mem to 96 MB
    B
    B Fri May 16 01:23:18 2014
    B  db_con_shm_ini:  WP_ID = 0, WP_CNT = 19, CON_ID = -1
    B  dbtbxbuf: Buffer TABL  (addr: 0000000027280160, size: 90000000, end: 000000002C854BE0)
    B  dbtbxbuf: Buffer TABLP (addr: 000000002C860160, size: 20480000, end: 000000002DBE8160)
    B  dbsync[db_syinit]: successfully attached to shared memory, sync_adm_p = 0000000011BE0050
    B  dbsync[db_syinit]: Buffer synchronisation started with
    B    sync_concept      = SEQ_NR
    B    sendon            = 1
    B    bufreftime        = 120
    B    max_gap_wait_time = 60
    B    ddlog_del_time    = 60
    B    last_counter      = 702514
    B    oldest_gap        = (2147483647,00000000000000)
    B    time_of_last_sync = 20140516012317
    B    MySysId           = 'SAPERP              00'
    B  dbexpbuf[EXP_SHB]: buffer EIBUF installed with
    B    semkey             = 35
    B    shmkey             = 54
    B    wp_n               = 19
    B    sclass             = 0
    B    block_length       = 256
    B    max_objects        = 2000
    B    max_obj_size       = 859872
    B    pref_obj_size      = 0
    B    est_large_obj_size = 16384
    B    free_vec_lg        = 65
    B    hash_vec_size      = 4001
    B    buffer_l           = 4194304
    B    max_blocks         = 13438
    B    free_blocks        = 13438
    B    mutex_n            = 4001
    B    max_mtx_wait_time  = 17000
    B    recovery_delay     = 500000
    B    tracing            = 0
    B    force_checks       = 0
    B    protect_shm        = 0
    B  dbexpbuf[EXP_SHM]: buffer ESM   installed with
    B    semkey             = 56
    B    shmkey             = 65
    B    wp_n               = 19
    B    sclass             = 0
    B    block_length       = 256
    B    max_objects        = 2000
    B    max_obj_size       = 859872
    B    pref_obj_size      = 0
    B    est_large_obj_size = 16384
    B    free_vec_lg        = 65
    B    hash_vec_size      = 4001
    B    buffer_l           = 4194304
    B    max_blocks         = 13438
    B    free_blocks        = 13438
    B    mutex_n            = 4001
    B    max_mtx_wait_time  = 17000
    B    recovery_delay     = 500000
    B    tracing            = 0
    B    force_checks       = 0
    B    protect_shm        = 0
    B  dbexpbuf[EXP_CUA]: buffer CUA   installed with
    B    semkey             = 30
    B    shmkey             = 47
    B    wp_n               = 19
    B    sclass             = 10
    B    block_length       = 512
    B    max_objects        = 1500
    B    max_obj_size       = 626016
    B    pref_obj_size      = 0
    B    est_large_obj_size = 98304
    B    free_vec_lg        = 193
    B    hash_vec_size      = 3001
    B    buffer_l           = 3072000
    B    max_blocks         = 4892
    B    free_blocks        = 4892
    B    mutex_n            = 3001
    B    max_mtx_wait_time  = 17000
    B    recovery_delay     = 500000
    B    tracing            = 0
    B    force_checks       = 0
    B    protect_shm        = 0
    B  dbexpbuf[EXP_OTR]: buffer OTR   installed with
    B    semkey             = 55
    B    shmkey             = 64
    B    wp_n               = 19
    B    sclass             = 13
    B    block_length       = 256
    B    max_objects        = 2000
    B    max_obj_size       = 859872
    B    pref_obj_size      = 0
    B    est_large_obj_size = 20480
    B    free_vec_lg        = 81
    B    hash_vec_size      = 4001
    B    buffer_l           = 4194304
    B    max_blocks         = 13438
    B    free_blocks        = 13438
    B    mutex_n            = 4001
    B    max_mtx_wait_time  = 17000
    B    recovery_delay     = 500000
    B    tracing            = 0
    B    force_checks       = 0
    B    protect_shm        = 0
    I  MPI: dynamic quotas disabled.
    I  MPI init: pipes=4000 buffers=1279 reserved=383 quota=10%
    M  rdisp/thwpsf_critical_path : -1 -> 0
    M  CCMS: SemInMgt: Semaphore Management initialized by AlAttachShm_Doublestack.
    M  CCMS: SemInit: Semaphore 38 initialized by AlAttachShm_Doublestack.
    G  RelWritePermissionForShm( pLocation = 120, pEnforce = 0 )
    G  GetWritePermissionForShm( pLocation =  99, pEnforce = 1 )
    G  RelWritePermissionForShm( pLocation = 100, pEnforce = 1 )
    S  *** init spool environment
    S  TSPEVJOB updates outside critical section: event_update_nocsec = 1
    S  initialize debug system
    T  Stack direction is downwards.
    T  debug control: prepare exclude for printer trace
    T  new memory block 0000000034052380
    S  spool kernel/ddic check: Ok
    S  using table TSP02FX for frontend printing
    S  1 spool work process(es) found
    S  frontend print via spool service enabled
    S  printer list size is 150
    S  printer type list size is 50
    S  queue size (profile)   = 300
    S  hostspool list size = 3000
    S  option list size is 30
    S      found processing queue enabled
    S  found spool memory service RSPO-RCLOCKS at 00000000382B00D0
    S  doing lock recovery
    S  setting server cache root
    S  found spool memory service RSPO-SERVERCACHE at 00000000382B06A0
    S    using messages for server info
    S  size of spec char cache entry: 297032 bytes (timeout 100 sec)
    S  size of open spool request entry: 2512 bytes
    S  immediate print option for implicitely closed spool requests is disabled
    A  ***GENER* Trace switched on ***
    A
    A  ---PXA-------------------------------------------
    A  PXA INITIALIZATION
    A  PXA: Locked PXA-Semaphore.
    A  System page size: 4kb, total admin_size: 23104kb, dir_size: 22312kb.
    A  Attached to PXA (address 000007FFEDAE0050, size 300000K, 1 fragments of 276896K )
    A  PXA allocated (address 000007FFEDAE0050, size 300000K)
    A  abap/pxa = shared protect gen_remote
    A  PXA: checking structure sizes: 752|272|16
    A  PXA INITIALIZATION FINISHED
    A  ---PXA-------------------------------------------
    A
    A  ATRA: pfclock execution time = 0
    A  abap/force_local_update_task=0
    A  ABAP ShmAdm attached (addr=000007DFDF142000 leng=20955136 end=000007DFE053E000)
    A  >> Shm MMADM area (addr=000007DFDF639B80 leng=242240 end=000007DFDF674DC0)
    A  >> Shm MMDAT area (addr=000007DFDF675000 leng=15503360 end=000007DFE053E000)
    A  RFC Destination> destination SAPERP_PRD_00 host SAPERP system PRD systnr 0 (SAPERP_PRD_00)
    A  RFC Options> H=SAPERP,S=00,d=2,
    A  RFC FRFC> fallback activ but this is not a central instance.
    A  
    A  RFC rfc/signon_error_log = -1
    A  RFC rfc/dump_connection_info = 0
    A  RFC rfc/dump_client_info = 0
    A  RFC rfc/cp_convert/ignore_error = 1
    A  RFC rfc/cp_convert/conversion_char = 23
    A  RFC rfc/wan_compress/threshold = 251
    A  RFC rfc/recorder_pcs not set, use defaule value: 2
    A  RFC rfc/delta_trc_level not set, use default value: 0
    A  RFC rfc/no_uuid_check not set, use default value: 0
    H  HTTP> Parameter icf/ssocookie_mandatory set to 0
    B  dbtran INFO (init_connection '<DEFAULT>' [MSSQL:721.02]):
    B   max_blocking_factor       =  50,  min_blocking_factor         =   5,
    B   max_in_blocking_factor    = 255,  min_in_blocking_factor      =  10,
    B   max_union_blocking_factor =  50,  min_union_blocking_factor   =   5,
    B   prefer_union_all          =   1,  prefer_join                 =   1,
    B   prefer_fix_blocking       =   0,  prefer_in_itab_opt          =   0,
    B   convert AVG               =   1,  alias table FUPD            =   0,
    B   escape_as_literal         =   0,                                 
    B   select *                  =0x00,  character encoding          = STD / []:X,
    B   use_hints                 = abap->1, dbif->0x1, upto->0
    M  ThrCreateShObjects allocated 39514 bytes at 0000000011C00050
    Y  dyWpInit
    Y    ztta/dynpro_ara 800000
    Y    ztta/cua_ara    500000
    Y    ztta/diag_ara   250000
    N  SsfSapSecin: getenv(SECUDIR)=="E:\usr\sap\PRD\DVEBMGS00/sec"
    N
    N  =================================================
    N  === SSF INITIALIZATION:
    N  ===...SSF Security Toolkit name SAPSECULIB .
    N  ===...SSF library is E:\usr\sap\PRD\DVEBMGS00\exe\sapcrypto.dll .
    N  ===...SSF default hash algorithm is SHA1 .
    N  ===...SSF default symmetric encryption algorithm is DES-CBC .
    N  ===...SECUDIR="E:\usr\sap\PRD\DVEBMGS00/sec"
    N  ===...loading of Security Toolkit successfully completed.
    N  ===   SAPCRYPTOLIB  5.5.5C pl32  (Apr  2 2011) MT-safe
    N  =================================================
    N
    N Fri May 16 01:23:20 2014
    N  MskiInitLogonTicketCacheHandle: Logon Ticket cache pointer retrieved from shared memory.
    N  MskiInitLogonTicketCacheHandle: Workprocess runs with Logon Ticket cache.
    M  JrfcVmcRegisterNativesDriver o.k.
    W  =================================================
    W  === ipl_Init() called
    W    ITS Plugin: Path dw_gui
    W    ITS Plugin: Description ITS Plugin - ITS rendering DLL
    W    ITS Plugin: sizeof(SAP_UC) 2
    W    ITS Plugin: Release: 721, [7210.0.100.20020600]
    W    ITS Plugin: Int.version, [34]
    W    ITS Plugin: Feature set: [31]
    W    ===... Calling itsp_Init in external dll ===>
    W  === ipl_Init() returns 0, ITSPE_OK: OK
    W  =================================================
    N  SignInit: successfully obtained handle for Security Context cache
    N  SPNegoInit: SPNego disabled ("spnego/enable" not set to 1)
    N  VSI: WP init in ABAP VM completed with rc=0
    E  EnqLockTableSizeCalculate: session quota = 100%
    E  EnqLockTableAttach2: attach to lock table (size = 33554432)
    E  EnqLockTableMapToLocalContext: enque/use_pfclock2 = FALSE
    E  EnqId_Initialize: local EnqId initialization o.k.
    M
    M Fri May 16 01:23:40 2014
    M  *** ERROR => ThPlgConnectToIcm: IcmReadAck failed (-8, ni_rc=-6) [thxxplg.c    5172]
    M  in_ThErrHandle: 1
    M  *** ERROR => ThStart: connect to icman (step 1, th_errno 2, action 3, level 1) [thxxhead.c   11348]
    M
    M  Info for wp 0
    M
    M    pid = 7668
    M    severity = 0
    M    status = 0
    M    stat = WP_NEW
    M    waiting_for = NO_WAITING
    M    reqtype = DP_RQ_DIAWP
    M    act_reqtype = NO_REQTYPE
    M    req.req_info =
    M    req.tid = -1
    M    req.uid = 4294967295
    M    req.mode = 255
    M    req.len = 0
    M    req.rq_id = 65535
    M    req.rq_source =
    M    last_tid = 0
    M    last_uid = 0
    M    last_mode = 0
    M    act_cs_count = 0
    M    csTrack = 0
    M    csTrackRwExcl = 0
    M    csTrackRwShrd = 0
    M    mode_cleaned_counter = 0
    M    control_flag = 0
    M    int_checked_resource(RFC) = 0
    M    ext_checked_resource(RFC) = 0
    M    int_checked_resource(HTTP) = 0
    M    ext_checked_resource(HTTP) = 0
    M    report = >                                        <
    M    action = 0
    M    tab_name = >                              <
    M    attachedVm = no VM
    M
    M  ThIErrHandle: current request:
    M
    M  -IN-- sender_id ?                 tid  -1    wp_ca_blk   -1      wp_id -1
    M  -IN-- action    -                 uid  -1    appc_ca_blk -1      type  -  
    M  -IN-- new_stat  NO_CHANGE         mode 255   len         0       rq_id -1
    M  PfStatDisconnect: disconnect statistics
    M  Entering TH_CALLHOOKS
    M  ThCallHooks: call hook >TrThHookFunc< for event BEFORE_DUMP
    M  TrThHookFunc: called for WP dump
    M  ThCallHooks: hook >TrThHookFunc< o.k.
    M  ThCallHooks: call hook >ThrSaveSPAFields< for event BEFORE_DUMP
    M  ThrSaveSPAFields: save spa fields
    M  ThrSaveSPAFields: not an update task, no update info saved
    M  ThrSaveSPAFields: not a batch task, field zttabtckey not saved
    M  ThCallHooks: hook >ThrSaveSPAFields< o.k.
    M  ThCallHooks: call hook >ThrBtcCallLgCl< for event BEFORE_DUMP
    M  ThCallHooks: hook >ThrBtcCallLgCl< o.k.
    M  ThIErrHandle: entering ThSetStatError
    M  ThIErrHandle: do not call ThrCoreInfo (no_core_info=0, in_dynp_env=0)
    M  Entering ThReadDetachMode
    M  call ThrShutDown (1)...
    M  ***LOG Q02=> wp_halt, WPStop (Workp. 0 7668) [dpnttool.c   339]
    DEV_DISP:
    trc file: "dev_disp", trc level: 1, release: "721"
    sysno      00
    sid        PRD
    systemid   562 (PC with Windows NT)
    relno      7210
    patchlevel 0
    patchno    100
    intno      20020600
    make       multithreaded, Unicode, 64 bit, optimized
    profile    \\SAPERP\sapmnt\PRD\SYS\profile\PRD_DVEBMGS00_SAPERP
    pid        4924
    kernel runs with dp version 137000(ext=119000) (@(#) DPLIB-INT-VERSION-137000-UC)
    length of sys_adm_ext is 588 bytes
    *** SWITCH TRC-HIDE on ***
    ***LOG Q00=> DpSapEnvInit, DPStart (00 4924) [dpxxdisp.c   1314]
      shared lib "dw_xml.dll" version 100 successfully loaded
      shared lib "dw_xtc.dll" version 100 successfully loaded
      shared lib "dw_stl.dll" version 100 successfully loaded
      shared lib "dw_gui.dll" version 100 successfully loaded
      shared lib "dw_mdm.dll" version 100 successfully loaded
      shared lib "dw_rndrt.dll" version 100 successfully loaded
      shared lib "dw_abp.dll" version 100 successfully loaded
      shared lib "dw_sym.dll" version 100 successfully loaded
      shared lib "dw_aci.dll" version 100 successfully loaded
    rdisp/softcancel_sequence :  -> 0,5,-1
    use internal message server connection to port 3900
    rdisp/dynamic_wp_check : 1
    rdisp/calculateLoadAverage : 1
    Fri May 16 01:23:12 2014
    *** WARNING => DpNetCheck: NiAddrToHost(1.0.0.0) took 4 seconds
    ***LOG GZZ=> 1 possible network problems detected - check tracefile and adjust the DNS settings [dpxxtool2.c  6438]
    MtxInit: 30000 0 0
    DpSysAdmExtInit: ABAP is active
    DpSysAdmExtInit: VMC (JAVA VM in WP) is not active
    DpIPCInit2: write dp-profile-values into sys_adm_ext
    DpIPCInit2: start server >SAPERP_PRD_00                           <
    DpShMCreate: sizeof(wp_adm) 42864 (2256)
    DpShMCreate: sizeof(tm_adm) 5517056 (27448)
    DpShMCreate: sizeof(wp_ca_adm) 64000 (64)
    DpShMCreate: sizeof(appc_ca_adm) 64000 (64)
    DpCommTableSize: max/headSize/ftSize/tableSize=500/16/1384064/1384080
    DpShMCreate: sizeof(comm_adm) 1384080 (2744)
    DpSlockTableSize: max/headSize/ftSize/fiSize/tableSize=0/0/0/0/0
    DpShMCreate: sizeof(slock_adm) 0 (296)
    DpFileTableSize: max/headSize/ftSize/tableSize=0/0/0/0
    DpShMCreate: sizeof(file_adm) 0 (80)
    DpShMCreate: sizeof(vmc_adm) 0 (2160)
    DpShMCreate: sizeof(wall_adm) (41664/42896/64/192)
    DpShMCreate: sizeof(gw_adm) 48
    DpShMCreate: sizeof(j2ee_adm) 3952
    DpShMCreate: SHM_DP_ADM_KEY (addr: 0000000005460050, size: 7174832)
    DpShMCreate: allocated sys_adm at 0000000005460060
    DpShMCreate: allocated wp_adm_list at 00000000054630B0
    DpShMCreate: allocated wp_adm at 00000000054632A0
    DpShMCreate: allocated tm_adm_list at 000000000546DA20
    DpShMCreate: allocated tm_adm at 000000000546DA70
    DpShMCreate: allocated wp_ca_adm at 00000000059B0980
    DpShMCreate: allocated appc_ca_adm at 00000000059C0390
    DpShMCreate: allocated comm_adm at 00000000059CFDA0
    DpShMCreate: system runs without slock table
    DpShMCreate: system runs without file table
    DpShMCreate: allocated vmc_adm_list at 0000000005B21C40
    DpShMCreate: system runs without vmc_adm
    DpShMCreate: allocated gw_adm at 0000000005B21CF0
    DpShMCreate: allocated j2ee_adm at 0000000005B21D30
    DpShMCreate: allocated ca_info at 0000000005B22CB0
    DpShMCreate: allocated wall_adm at 0000000005B22D40
    DpCommAttachTable: attached comm table (header=00000000059CFDA0/ft=00000000059CFDB0)
    DpSysAdmIntInit: initialize sys_adm
    rdisp/test_roll : roll strategy is DP_NORMAL_ROLL
    dia token check not active (10 token)
    MBUF state OFF
    DpCommInitTable: init table for 500 entries
    DpRqQInit: keep protect_queue / slots_per_queue 0 / 2001 in sys_adm
    Fri May 16 01:23:13 2014
    rdisp/queue_size_check_value :  -> on,50,30,40,500,50,500,80
    EmInit: MmSetImplementation( 2 ).
    MM global diagnostic options set: 0
    <ES> client 0 initializing ....
    <ES> EsILock: use spinlock for locking
    <ES> InitFreeList
    <ES> block size is 4096 kByte.
    <ES> Info: em/initial_size_MB( 134981MB) not multiple of em/blocksize_KB( 4096KB)
    <ES> Info: em/initial_size_MB rounded up to 134984MB
    Using implementation view
    <EsNT> Using memory model view.
    <EsNT> Memory Reset disabled as NT default
    <ES> 33745 blocks reserved for free list.
    ES initialized.
    mm.dump: set maximum dump mem to 96 MB
    DpVmcSetActive: set vmc state DP_VMC_NOT_ACTIVE
    MPI: dynamic quotas disabled.
    MPI init: pipes=4000 buffers=1279 reserved=383 quota=10%
    rdisp/http_min_wait_dia_wp : 1 -> 1
    ***LOG CPS=> DpLoopInit, ICU ( 4.0.1 4.0.1 5.1) [dpxxdisp.c   1700]
    Fri May 16 01:23:40 2014
    ***LOG Q0K=> DpMsAttach, mscon ( SAPERP) [dpxxdisp.c   12667]
    MBUF state LOADING
    DpStartStopMsg: send start message (myname is >SAPERP_PRD_00                           <)
    DpStartStopMsg: start msg sent
    CCMS: SemInMgt: Semaphore Management initialized by AlAttachShm_Doublestack.
    CCMS: SemInit: Semaphore 38 initialized by AlAttachShm_Doublestack.
    DpMBufHwIdSet: set Hardware-ID
    ***LOG Q1C=> DpMBufHwIdSet [dpxxmbuf.c   1296]
    MBUF state ACTIVE
    DpWpBlksLow: max wp blocks in queue is 800 (80 %)
    MBUF component UP
    DpMsgProcess: 1 server in MBUF
    DpAppcBlksLow: max appc blocks in queue is 500 (50 %)
    *** ERROR => DpIcmMsgProcess: IcmRecMsg (rc=-8,-6) [dpxxdisp.c   19121]
    Fri May 16 01:24:20 2014
    *** ERROR => DpHdlDeadWp: W0 (pid 7668) died (severity=0, status=0) [dpxxwp.c     1729]
    *** ERROR => DpHdlDeadWp: W1 (pid 7456) died (severity=0, status=0) [dpxxwp.c     1729]
    *** ERROR => DpHdlDeadWp: W2 (pid 8096) died (severity=0, status=0) [dpxxwp.c     1729]
    *** ERROR => DpHdlDeadWp: W3 (pid 4376) died (severity=0, status=0) [dpxxwp.c     1729]
    *** ERROR => DpHdlDeadWp: W4 (pid 3000) died (severity=0, status=0) [dpxxwp.c     1729]
    *** ERROR => DpHdlDeadWp: W5 (pid 3520) died (severity=0, status=0) [dpxxwp.c     1729]
    *** ERROR => DpHdlDeadWp: W6 (pid 7024) died (severity=0, status=0) [dpxxwp.c     1729]
    *** ERROR => DpHdlDeadWp: W7 (pid 6172) died (severity=0, status=0) [dpxxwp.c     1729]
    *** ERROR => DpHdlDeadWp: W8 (pid 6576) died (severity=0, status=0) [dpxxwp.c     1729]
    *** ERROR => DpHdlDeadWp: W9 (pid 7756) died (severity=0, status=0) [dpxxwp.c     1729]
    *** ERROR => DpHdlDeadWp: W10 (pid 624) died (severity=0, status=0) [dpxxwp.c     1729]
    *** ERROR => DpHdlDeadWp: W11 (pid 7468) died (severity=0, status=0) [dpxxwp.c     1729]
    *** ERROR => DpHdlDeadWp: W12 (pid 1176) died (severity=0, status=0) [dpxxwp.c     1729]
    *** ERROR => DpHdlDeadWp: W13 (pid 6812) died (severity=0, status=0) [dpxxwp.c     1729]
    *** ERROR => DpHdlDeadWp: W14 (pid 6968) died (severity=0, status=0) [dpxxwp.c     1729]
    *** ERROR => DpHdlDeadWp: W15 (pid 5036) died (severity=0, status=0) [dpxxwp.c     1729]
    *** ERROR => DpHdlDeadWp: W16 (pid 5576) died (severity=0, status=0) [dpxxwp.c     1729]
    *** DP_FATAL_ERROR => DpWPCheck: no more work processes
    *** DISPATCHER EMERGENCY SHUTDOWN ***
    increase tracelevel of WPs
    NiWait: sleep (10000ms) ...
    NiISelect: timeout 10000ms
    NiISelect: maximum fd=1445
    NiISelect: read-mask is NULL
    NiISelect: write-mask is NULL
    Fri May 16 01:24:30 2014
    NiISelect: TIMEOUT occured (10000ms)
    dump system status
    Workprocess Table (long) Fri May 16 07:24:30 2014
    ========================
    No Type  Pid    Status  Cause Start Rstr  Err Sem Time Program          Cl  User         Action                    Table
    0 DIA       -1 Ended         no    no     1   0    0                                    NO_ACTION                         
    1 DIA       -1 Ended         no    no     1   0    0                                    NO_ACTION                         
    2 DIA       -1 Ended         no    no     1   0    0                                    NO_ACTION                         
    3 DIA       -1 Ended         no    no     1   0    0                                    NO_ACTION                         
    4 DIA       -1 Ended         no    no     1   0    0                                    NO_ACTION                         
    5 DIA       -1 Ended         no    no     1   0    0                                    NO_ACTION                         
    6 DIA       -1 Ended         no    no     1   0    0                                    NO_ACTION                         
    7 DIA       -1 Ended         no    no     1   0    0                                    NO_ACTION                         
    8 DIA       -1 Ended         no    no     1   0    0                                    NO_ACTION                         
    9 DIA       -1 Ended         no    no     1   0    0                                    NO_ACTION                         
    10 UPD       -1 Ended         no    no     1   0    0                                    NO_ACTION                         
    11 ENQ       -1 Ended         no    no     1   0    0                                    NO_ACTION                         
    12 BTC       -1 Ended         no    no     1   0    0                                    NO_ACTION                         
    13 BTC       -1 Ended         no    no     1   0    0                                    NO_ACTION                         
    14 BTC       -1 Ended         no    no     1   0    0                                    NO_ACTION                         
    15 SPO       -1 Ended         no    no     1   0    0                                    NO_ACTION                         
    16 UP2       -1 Ended         no    no     1   0    0                                    NO_ACTION                         
    Dispatcher Queue Statistics Fri May 16 07:24:30 2014
    ===========================
    +------+--------+--------+--------+------------+------------+
    |  Typ |    now |   high |    max | writes     |  reads     |
    +------+--------+--------+--------+------------+------------+
    | NOWP |      1 |     33 |   2000 |         43 |         42 |
    +------+--------+--------+--------+------------+------------+
    |  DIA |      5 |      5 |   2000 |          5 |          0 |
    +------+--------+--------+--------+------------+------------+
    |  UPD |      1 |      1 |   2000 |          1 |          0 |
    +------+--------+--------+--------+------------+------------+
    |  ENQ |      0 |      0 |   2000 |          0 |          0 |
    +------+--------+--------+--------+------------+------------+
    |  BTC |      0 |      0 |   2000 |          0 |          0 |
    +------+--------+--------+--------+------------+------------+
    |  SPO |      0 |      0 |   2000 |          0 |          0 |
    +------+--------+--------+--------+------------+------------+
    |  UP2 |      0 |      0 |   2000 |          0 |          0 |
    +------+--------+--------+--------+------------+------------+
    max_rq_id 40
    wake_evt_udp_now 0
    wake events       total    40,  udp     5 ( 12%),  shm    35 ( 87%)
    since last update total    40,  udp     5 ( 12%),  shm    35 ( 87%)
    DpGetLoadAverage: la1[1] = 0.000000 / -1.000000 %
    DpGetLoadAverage: la5[1] = 0.000000 / -1.000000 %
    DpGetLoadAverage: la15[1] = 0.055556 / -1.000000 %
    Dispatcher Load Statistics
    +------+---------+---------+---------+
    |  Typ |     LA1 |     LA5 |    LA15 |
    +------+---------+---------+---------+
    |  DIA |   0.000 |   0.000 |   0.056 |
    +------+---------+---------+---------+
    DpGetLoadAverage: la1[2] = 0.000000 / -1.000000 %
    DpGetLoadAverage: la5[2] = 0.000000 / -1.000000 %
    DpGetLoadAverage: la15[2] = 0.011111 / -1.000000 %
    |  UPD |   0.000 |   0.000 |   0.011 |
    +------+---------+---------+---------+
    DpGetLoadAverage: la1[3] = 0.000000 / -1.000000 %
    DpGetLoadAverage: la5[3] = 0.000000 / -1.000000 %
    DpGetLoadAverage: la15[3] = 0.000000 / -1.000000 %
    |  ENQ |   0.000 |   0.000 |   0.000 |
    +------+---------+---------+---------+
    DpGetLoadAverage: la1[4] = 0.000000 / -1.000000 %
    DpGetLoadAverage: la5[4] = 0.000000 / -1.000000 %
    DpGetLoadAverage: la15[4] = 0.000000 / -1.000000 %
    |  BTC |   0.000 |   0.000 |   0.000 |
    +------+---------+---------+---------+
    DpGetLoadAverage: la1[5] = 0.000000 / -1.000000 %
    DpGetLoadAverage: la5[5] = 0.000000 / -1.000000 %
    DpGetLoadAverage: la15[5] = 0.000000 / -1.000000 %
    |  SPO |   0.000 |   0.000 |   0.000 |
    +------+---------+---------+---------+
    DpGetLoadAverage: la1[6] = 0.000000 / -1.000000 %
    DpGetLoadAverage: la5[6] = 0.000000 / -1.000000 %
    DpGetLoadAverage: la15[6] = 0.000000 / -1.000000 %
    |  UP2 |   0.000 |   0.000 |   0.000 |
    +------+---------+---------+---------+
    Dump of tm_adm structure: Fri May 16 07:24:30 2014
    =========================
    Term    uid  man user    term   lastop  mod wp  ta   a/i (modes)
    RM-T19, U20,                 , , 01:23:40, M0, W-1,     , 1/0
    Workprocess Comm. Area Blocks Fri May 16 07:24:30 2014
    =============================
    Slots: 1000, Used: 2, Max: 46
    +------+--------------+----------+-------------+
    |   id | owner        |   pid    | eyecatcher  |
    +------+--------------+----------+-------------+
    |    0 | DISPATCHER   |       -1 | 0xdeadbeef |
    |  546 | DISPATCHER   |       -1 | 0xdeadbeef |
    NiWait: sleep (5000ms) ...
    NiISelect: timeout 5000ms
    NiISelect: maximum fd=1445
    NiISelect: read-mask is NULL
    NiISelect: write-mask is NULL
    Fri May 16 01:24:35 2014
    NiISelect: TIMEOUT occured (5000ms)
    DpHalt: shutdown server >SAPERP_PRD_00                           < (normal)
    DpJ2eeDisableRestart
    DpMBufRead: read server list from MBUF (1 entries)
    DpMBufMod: name [SAPERP_PRD_00                           ], types 191 state 3 (0x0 0x0 0x0 0x0)
    DpMBufMod: call hooks for event MBUF_DPEVT_DSTATE (5->3)
    AdGetSelfIdentRecord: >                                                                           <
    AdCvtRecToExt: opcode 60 (AD_SELFIDENT), ser 0, ex 0, errno 0
    AdCallRegisteredCvtToExt: opcode 60
    AdCallRegisteredCvtToExt: opcode 60 call 000007F7B2B8B6E0
    AdCallRegisteredCvtToExt: opcode 60 exit rc=SAP_O_K
    AdCvtRecToExt: opcode 40 (AD_MSBUF), ser 0, ex 0, errno 0
    AdCallRegisteredCvtToExt: opcode 40
    AdCallRegisteredCvtToExt: opcode 40 call 000007F7B3297650
    AdCallRegisteredCvtToExt: opcode 40 exit rc=SAP_O_K
    AdCvtRecToExt: opcode 40 (AD_MSBUF), ser 0, ex 0, errno 0
    AdCallRegisteredCvtToExt: opcode 40
    AdCallRegisteredCvtToExt: opcode 40 call 000007F7B3297650
    AdCallRegisteredCvtToExt: opcode 40 exit rc=SAP_O_K
    AdCvtRecToExt: opcode 40 (AD_MSBUF), ser 0, ex 0, errno 0
    AdCallRegisteredCvtToExt: opcode 40
    AdCallRegisteredCvtToExt: opcode 40 call 000007F7B3297650
    AdCallRegisteredCvtToExt: opcode 40 exit rc=SAP_O_K
    AdCvtRecToExt: opcode 40 (AD_MSBUF), ser 0, ex 0, errno 0
    AdCallRegisteredCvtToExt: opcode 40
    AdCallRegisteredCvtToExt: opcode 40 call 000007F7B3297650
    AdCallRegisteredCvtToExt: opcode 40 exit rc=SAP_O_K
    AdCvtRecToExt: opcode 40 (AD_MSBUF), ser 0, ex 0, errno 0
    AdCallRegisteredCvtToExt: opcode 40
    AdCallRegisteredCvtToExt: opcode 40 call 000007F7B3297650
    AdCallRegisteredCvtToExt: opcode 40 exit rc=SAP_O_K
    AdCvtRecToExt: opcode 40 (AD_MSBUF), ser 0, ex 0, errno 0
    AdCallRegisteredCvtToExt: opcode 40
    AdCallRegisteredCvtToExt: opcode 40 call 000007F7B3297650
    AdCallRegisteredCvtToExt: opcode 40 exit rc=SAP_O_K
    AdCvtRecToExt: opcode 40 (AD_MSBUF), ser 0, ex 0, errno 0
    AdCallRegisteredCvtToExt: opcode 40
    AdCallRegisteredCvtToExt: opcode 40 call 000007F7B3297650
    AdCallRegisteredCvtToExt: opcode 40 exit rc=SAP_O_K
    AdCvtRecToExt: opcode 40 (AD_MSBUF), ser 0, ex 0, errno 0
    AdCallRegisteredCvtToExt: opcode 40
    AdCallRegisteredCvtToExt: opcode 40 call 000007F7B3297650
    AdCallRegisteredCvtToExt: opcode 40 exit rc=SAP_O_K
    AdCvtRecToExt: opcode 40 (AD_MSBUF), ser 0, ex 0, errno 0
    AdCallRegisteredCvtToExt: opcode 40
    AdCallRegisteredCvtToExt: opcode 40 call 000007F7B3297650
    AdCallRegisteredCvtToExt: opcode 40 exit rc=SAP_O_K
    AdCvtRecToExt: opcode 40 (AD_MSBUF), ser 0, ex 0, errno 0
    AdCallRegisteredCvtToExt: opcode 40
    AdCallRegisteredCvtToExt: opcode 40 call 000007F7B3297650
    AdCallRegisteredCvtToExt: opcode 40 exit rc=SAP_O_K
    DpWpBlksLow: wp_blks_in_queue/limit/max = 2/800/1000
    DpLockWpBlkEx: lock wp ca_blk 1
    make DISP owner of wp_ca_blk 1
    DpRqIPutIntoQ: put elem in queue DIA, elems=6
    DpRqPutIntoQueue: put request into queue (reqtype 1, prio LOW, rq_id 41)
    MBUF server state SHUTDOWN
    DpModState: change state STARTING -> SHUTDOWN
    NiBufSend starting
    NiIWrite: hdl 17 sent data (wrt=110,pac=1,MESG_IO)
    MsINiWrite: sent 110 bytes
    MsIModState: change state to SHUTDOWN
    DpModState: change server state from STARTING to SHUTDOWN
    DpHalt: switch off Shared memory profiling
    ShmProtect( 57, 3 )
    ShmProtect(SHM_PROFILE, SHM_PROT_RW
    ShmProtect( 57, 1 )
    ShmProtect(SHM_PROFILE, SHM_PROT_RD
    DpWakeUpWps: wake up all wp's
    DpHalt: stop work processes
    DpHalt: stop gateway
    killing process (7752) (SOFT_KILL)
    DpHalt: stop icman
    killing process (5940) (SOFT_KILL)
    DpHalt: terminate gui connections
    send SHUTDOWN to REM TM 19
    DpWpBlksLow: wp_blks_in_queue/limit/max = 3/800/1000
    DpLockWpBlkEx: lock wp ca_blk 2
    return errno (-17) to T19
    DpTmSend: errormsg without overhead: use mode 0
    NiBufIAlloc: malloc NiBufadm, to 0 bytes
    DpTmSend: try to send 14 bytes to T19/M0
    NiBufSend starting
    NiIWrite: hdl 25 sent data (wrt=14,pac=1,MESG_IO)
    REL WP ca_blk 2
    set status of T19 to TM_DISCONNECTED
    NiBufISelUpdate: new MODE -- (r-) for hdl 25 in set0
    SiSelNSet: set events of sock 1440 to: ---
    NiBufISelRemove: remove hdl 25 from set0
    SiSelNRemove: removed sock 1440 (pos=3)
    SiSelNRemove: removed sock 1440
    NiSelIRemove: removed hdl 25
    DpDelSocketInfo: del info for nihdl 25 (pos/type=3/3)
    NiICloseHandle: shutdown and close hdl 25/sock 1440
    NiBufIClose: clear extension for hdl 25
    dp_tm_adm[19].stat = DP_SLOT_FREE
    DpGetSchedule: next schedule 1400225080/234000
    DpGetSchedule: no schedule found
    DpITmSlotRelease: release slot 19
    DpListRemove: remove elem 19 from tmadm_inuse_list
    DpListRemove: 19 elems in tmadm_inuse_list
    DpListInsert: insert elem 19 into tmadm_free_list (at begin)
    DpListInsert: 182 elems in tmadm_free_list
    DpHalt: wait for end of work processes
    DpHalt: wait for end of gateway
    [DpProcDied] Process lives  (PID:7752  HANDLE:1300)
    DpHalt: waiting for termination of gateway ...
    NiWait: sleep (1000ms) ...
    NiISelect: timeout 1000ms
    NiISelect: maximum fd=1445
    NiISelect: read-mask is NULL
    NiISelect: write-mask is NULL
    Fri May 16 01:24:36 2014
    NiISelect: TIMEOUT occured (1000ms)
    *** ERROR => [DpProcDied] Process died  (PID:7752  HANDLE:1300  rc:0x0) [dpnttool2.c  147]
    DpHalt: wait for end of icman
    [DpProcDied] Process lives  (PID:5940  HANDLE:1296)
    DpHalt: waiting for termination of icman ...
    NiWait: sleep (1000ms) ...
    NiISelect: timeout 1000ms
    NiISelect: maximum fd=1445
    NiISelect: read-mask is NULL
    NiISelect: write-mask is NULL
    Fri May 16 01:24:37 2014
    NiISelect: TIMEOUT occured (1000ms)
    [DpProcDied] Process lives  (PID:5940  HANDLE:1296)
    DpHalt: waiting for termination of icman ...
    NiWait: sleep (1000ms) ...
    NiISelect: timeout 1000ms
    NiISelect: maximum fd=1445
    NiISelect: read-mask is NULL
    NiISelect: write-mask is NULL
    Fri May 16 01:24:38 2014
    NiISelect: TIMEOUT occured (1000ms)
    [DpProcDied] Process lives  (PID:5940  HANDLE:1296)
    DpHalt: waiting for termination of icman ...
    NiWait: sleep (1000ms) ...
    NiISelect: timeout 1000ms
    NiISelect: maximum fd=1445
    NiISelect: read-mask is NULL
    NiISelect: write-mask is NULL
    Fri May 16 01:24:39 2014
    NiISelect: TIMEOUT occured (1000ms)
    [DpProcDied] Process lives  (PID:5940  HANDLE:1296)
    DpHalt: waiting for termination of icman ...
    NiWait: sleep (1000ms) ...
    NiISelect: timeout 1000ms
    NiISelect: maximum fd=1445
    NiISelect: read-mask is NULL
    NiISelect: write-mask is NULL
    Fri May 16 01:24:40 2014
    NiISelect: TIMEOUT occured (1000ms)
    [DpProcDied] Process lives  (PID:5940  HANDLE:1296)
    DpHalt: waiting for termination of icman ...
    NiWait: sleep (1000ms) ...
    NiISelect: timeout 1000ms
    NiISelect: maximum fd=1445
    NiISelect: read-mask is NULL
    NiISelect: write-mask is NULL
    Fri May 16 01:24:41 2014
    NiISelect: TIMEOUT occured (1000ms)
    [DpProcDied] Process lives  (PID:5940  HANDLE:1296)
    DpHalt: waiting for termination of icman ...
    NiWait: sleep (1000ms) ...
    NiISelect: timeout 1000ms
    NiISelect: maximum fd=1445
    NiISelect: read-mask is NULL
    NiISelect: write-mask is NULL
    Fri May 16 01:24:42 2014
    NiISelect: TIMEOUT occured (1000ms)
    [DpProcDied] Process lives  (PID:5940  HANDLE:1296)
    DpHalt: waiting for termination of icman ...
    NiWait: sleep (1000ms) ...
    NiISelect: timeout 1000ms
    NiISelect: maximum fd=1445
    NiISelect: read-mask is NULL
    NiISelect: write-mask is NULL
    Fri May 16 01:24:43 2014
    NiISelect: TIMEOUT occured (1000ms)
    [DpProcDied] Process lives  (PID:5940  HANDLE:1296)
    DpHalt: waiting for termination of icman ...
    NiWait: sleep (1000ms) ...
    NiISelect: timeout 1000ms
    NiISelect: maximum fd=1445
    NiISelect: read-mask is NULL
    NiISelect: write-mask is NULL
    Fri May 16 01:24:44 2014
    NiISelect: TIMEOUT occured (1000ms)
    *** ERROR => [DpProcDied] Process died  (PID:5940  HANDLE:1296  rc:0x0) [dpnttool2.c  147]
    DpStartStopMsg: send stop message (myname is >SAPERP_PRD_00                           <)
    DpStartStopMsg: Write AD_STARTSTOP message with type=  0, name=SAPERP_PRD_00       , sapsysnr= 0, hostname=SAPERP                                                        
    AdGetSelfIdentRecord: >                                                                           <
    AdCvtRecToExt: opcode 60 (AD_SELFIDENT), ser 0, ex 0, errno 0
    AdCallRegisteredCvtToExt: opcode 60
    AdCallRegisteredCvtToExt: opcode 60 call 000007F7B2B8B6E0
    AdCallRegisteredCvtToExt: opcode 60 exit rc=SAP_O_K
    AdCvtRecToExt: opcode 4 (AD_STARTSTOP), ser 0, ex 0, errno 0
    AdCallRegisteredCvtToExt: opcode 4
    AdCallRegisteredCvtToExt: opcode 4 call 000007F7B2BB1470
    AdCallRegisteredCvtToExt: opcode 4 exit rc=SAP_O_K
    DpConvertRequest: net size = 189 bytes
    NiBufIAlloc: malloc MSLIB-BUF, to 32110 bytes
    NiBufSend starting
    NiIWrite: hdl 17 sent data (wrt=562,pac=1,MESG_IO)
    MsINiWrite: sent 562 bytes
    MsISnd2: send msg (ms hdr/msg 110/452 bytes) to name                    -, type 4, key -
    DpStartStopMsg: stop msg sent
    NiBufIAlloc: malloc MSLIB-BUF, to 32110 bytes
    NiBufIAlloc: malloc NIBUF-IN, to 32110 bytes
    NiIRead: hdl 17 received data (rcd=274,pac=1,MESG_IO)
    NiBufIIn: NIBUF len=274
    NiBufIIn: packet complete for hdl 17
    NiBufReceive starting
    MsINiRead: received 274 bytes
    MsIReceive: received msg (ms hdr/msg 110/164 bytes), flag 1, from MSG_SERVER          , typ 0, key -
    DpHalt: received 164 bytes from message server
    NiIRead: hdl 17 recv would block (errno=EAGAIN)
    NiIRead: read for hdl 17 timed out (0ms)
    DpHalt: more messages from the message server
    DpHalt: send keepalive to synchronize with the message server
    NiBufSend starting
    NiIWrite: hdl 17 sent data (wrt=114,pac=1,MESG_IO)
    MsINiWrite: sent 114 bytes
    MsISnd2: send msg (ms hdr/msg 110/4 bytes) to name           MSG_SERVER, type 0, key -
    MsSndName: MS_NOOP ok
    Send 4 bytes to MSG_SERVER
    NiBufIAlloc: malloc MSLIB-BUF, to 32110 bytes
    NiIRead: hdl 17 recv would block (errno=EAGAIN)
    NiIPeek: peek successful for hdl 17 (r)
    NiBufIAlloc: malloc NIBUF-IN, to 32110 bytes
    NiIRead: hdl 17 received data (rcd=114,pac=1,MESG_IO)
    NiBufIIn: NIBUF len=114
    NiBufIIn: packet complete for hdl 17
    NiBufReceive starting
    MsINiRead: received 114 bytes
    MsIReceive: received msg (ms hdr/msg 110/4 bytes), flag 3, from MSG_SERVER          , typ 0, key -
    Received 4 bytes from MSG_SERVER                            
    Received opcode MS_NOOP from msg_server, reply MSOP_OK
    MsOpReceive: ok
    MsISendKeepalive : keepalive sent to message server
    NiIRead: hdl 17 recv would block (errno=EAGAIN)
    Fri May 16 01:24:45 2014
    NiIPeek: peek for hdl 17 timed out (r; 1000ms)
    NiIRead: read for hdl 17 timed out (1000ms)
    DpHalt: no more messages from the message server
    DpHalt: sync with message server o.k.
    DpHalt: detach from message server
    ***LOG Q0M=> DpMsDetach, ms_detach () [dpxxdisp.c   13064]
    NiBufSend starting
    NiIWrite: hdl 17 sent data (wrt=110,pac=1,MESG_IO)
    MsINiWrite: sent 110 bytes
    MsIDetach: send logout to msg_server (SAPERP / 3900)
    MsIDetach: call exit function
    DpMsShutdownHook called
    NiBufISelUpdate: new MODE -- (r-) for hdl 17 in set0
    SiSelNSet: set events of sock 1400 to: ---
    NiBufISelRemove: remove hdl 17 from set0
    SiSelNRemove: removed sock 1400 (pos=2)
    SiSelNRemove: removed sock 1400
    NiSelIRemove: removed hdl 17
    DpDelSocketInfo: del info for nihdl 17 (pos/type=2/4)
    MBUF state OFF
    AdGetSelfIdentRecord: >                                                                           <
    AdCvtRecToExt: opcode 60 (AD_SELFIDENT), ser 0, ex 0, errno 0
    AdCallRegisteredCvtToExt: opcode 60
    AdCallRegisteredCvtToExt: opcode 60 call 000007F7B2B8B6E0
    AdCallRegisteredCvtToExt: opcode 60 exit rc=SAP_O_K
    AdCvtRecToExt: opcode 40 (AD_MSBUF), ser 0, ex 0, errno 0
    AdCallRegisteredCvtToExt: opcode 40
    AdCallRegisteredCvtToExt: opcode 40 call 000007F7B3297650
    AdCallRegisteredCvtToExt: opcode 40 exit rc=SAP_O_K
    AdCvtRecToExt: opcode 40 (AD_MSBUF), ser 0, ex 0, errno 0
    AdCallRegisteredCvtToExt: opcode 40
    AdCallRegisteredCvtToExt: opcode 40 call 000007F7B3297650
    AdCallRegisteredCvtToExt: opcode 40 exit rc=SAP_O_K
    DpWpBlksLow: wp_blks_in_queue/limit/max = 3/800/1000
    DpLockWpBlkEx: lock wp ca_blk 2
    make DISP owner of wp_ca_blk 2
    DpRqIPutIntoQ: put elem in queue DIA, elems=7
    DpRqPutIntoQueue: put request into queue (reqtype 1, prio LOW, rq_id 44)
    MBUF component DOWN
    NiICloseHandle: shutdown and close hdl 17/sock 1400
    NiBufIClose: clear extension for hdl 17
    MsIDetach: detach MS-system (SAPERP / 3900)
    DpHalt: cleanup EM
    EsCleanup( )
    EsCleanup ....
    EmCleanup() -> 0
    Es2Cleanup: Cleanup ES2
    ***LOG Q05=> DpHalt, DPStop ( 4924) [dpxxdisp.c   11574]
    DpHalt: Good Bye .....
    SAPSTARTSRV
    trc file: "sapstartsrv.log", trc level: 0, release: "721"
    pid        6196
    [Thr 6528] Fri May 16 00:38:09 2014
    SAP HA Trace: SAP Microsoft Cluster library '721, patch 100, changelist 1397439' initialized
    CCMS agent initialization for instance type ABAP: return code 0.
    CCMS agent start: return code 0.
    Initializing SAPControl Webservice
    Starting AutoRestart thread
    AutoRestart thread started, version check is enabled
    SapSSLInit failed => https support disabled
    Starting WebService Named Pipe thread
    Starting WebService thread
    Webservice named pipe thread started, listening on port \\.\pipe\sapcontrol_00
    Webservice thread started, listening on port 50013
    \sapadmin is starting SAP System at 2014/05/16  0:38:18
    SAP HA Trace: FindClusterResource: OpenCluster failed: 1753 [sapwinha.cpp, line 213]
    SAP HA Trace: SAP_HA_FindSAPInstance returns: SAP_HA_FAIL [sapwinha.cpp, line 920]
    \sapadmin is stopping SAP System at 2014/05/16  0:49:10
    SAP HA Trace: FindClusterResource: OpenCluster failed: 1753 [sapwinha.cpp, line 213]
    SAP HA Trace: SAP_HA_FindSAPInstance returns: SAP_HA_FAIL [sapwinha.cpp, line 920]
    \sapadmin is starting SAP System at 2014/05/16  0:50:47
    SAP HA Trace: FindClusterResource: OpenCluster failed: 1753 [sapwinha.cpp, line 213]
    SAP HA Trace: SAP_HA_FindSAPInstance returns: SAP_HA_FAIL [sapwinha.cpp, line 920]
    \sapadmin is stopping SAP System at 2014/05/16  1:21:22
    SAP HA Trace: FindClusterResource: OpenCluster failed: 1753 [sapwinha.cpp, line 213]
    SAP HA Trace: SAP_HA_FindSAPInstance returns: SAP_HA_FAIL [sapwinha.cpp, line 920]
    \prdadm is starting SAP System at 2014/05/16  1:23:04
    SAP HA Trace: FindClusterResource: OpenCluster failed: 1753 [sapwinha.cpp, line 213]
    SAP HA Trace: SAP_HA_FindSAPInstance returns: SAP_HA_FAIL [sapwinha.cpp, line 920]

    Hi Alwina, here is the DEV_ICM trace:
    From this trace, it appears that it is listening to 65000?
    Netstat shows that the system is listening to 127.0.0.1:65000 .
    Other SAP ports show listening on 0:0:0:0:xxxx , is ICM listening on 127 a problem?
    trc file: "dev_icm", trc level: 1, release: "721"
    sysno      00
    sid        PRD
    systemid   562 (PC with Windows NT)
    relno      7210
    patchlevel 0
    patchno    43
    intno      20020600
    make       multithreaded, Unicode, 64 bit, optimized
    profile    \\SAPERP\sapmnt\PRD\SYS\profile\PRD_DVEBMGS00_SAPERP
    pid        5940
    [Thr 1812] Fri May 16 01:23:13 2014
    [Thr 1812] Parameter system/type has value: "ABAP"
    [Thr 1812] started security log to file ./dev_icm_sec
    [Thr 1812] ICM running on:
    [Thr 1812] MtxInit: 30001 0 2
    [Thr 1812] ***LOG IM1=> IcmInit, Startup (ICM&SAPERP.CORP.CANSEL.CA&5940&) [icxxman.c    1934]
    [Thr 1812] IcmInit: listening to admin port: 65000
    [Thr 1812] DpSysAdmExtCreate: ABAP is active
    [Thr 1812] DpSysAdmExtCreate: VMC (JAVA VM in WP) is not active
    [Thr 1812] DpIPCInit2: read dp-profile-values from sys_adm_ext
    [Thr 1812] DpShMCreate: sizeof(wp_adm) 42864 (2256)
    [Thr 1812] DpShMCreate: sizeof(tm_adm) 5517056 (27448)
    [Thr 1812] DpShMCreate: sizeof(wp_ca_adm) 64000 (64)
    [Thr 1812] DpShMCreate: sizeof(appc_ca_adm) 64000 (64)
    [Thr 1812] DpCommTableSize: max/headSize/ftSize/tableSize=500/16/1384064/1384080
    [Thr 1812] DpShMCreate: sizeof(comm_adm) 1384080 (2744)
    [Thr 1812] DpSlockTableSize: max/headSize/ftSize/fiSize/tableSize=0/0/0/0/0
    [Thr 1812] DpShMCreate: sizeof(slock_adm) 0 (296)
    [Thr 1812] DpFileTableSize: max/headSize/ftSize/tableSize=0/0/0/0
    [Thr 1812] DpShMCreate: sizeof(file_adm) 0 (80)
    [Thr 1812] DpShMCreate: sizeof(vmc_adm) 0 (2160)
    [Thr 1812] DpShMCreate: sizeof(wall_adm) (41664/42896/64/192)
    [Thr 1812] DpShMCreate: sizeof(gw_adm) 48
    [Thr 1812] DpShMCreate: sizeof(j2ee_adm) 3952
    [Thr 1812] DpShMCreate: SHM_DP_ADM_KEY (addr: 00000000022F0050, size: 7174832)
    [Thr 1812] DpShMCreate: allocated sys_adm at 00000000022F0060
    [Thr 1812] DpShMCreate: allocated wp_adm_list at 00000000022F30B0
    [Thr 1812] DpShMCreate: allocated wp_adm at 00000000022F32A0
    [Thr 1812] DpShMCreate: allocated tm_adm_list at 00000000022FDA20
    [Thr 1812] DpShMCreate: allocated tm_adm at 00000000022FDA70
    [Thr 1812] DpShMCreate: allocated wp_ca_adm at 0000000002840980
    [Thr 1812] DpShMCreate: allocated appc_ca_adm at 0000000002850390
    [Thr 1812] DpShMCreate: allocated comm_adm at 000000000285FDA0
    [Thr 1812] DpShMCreate: system runs without slock table
    [Thr 1812] DpShMCreate: system runs without file table
    [Thr 1812] DpShMCreate: allocated vmc_adm_list at 00000000029B1C40
    [Thr 1812] DpShMCreate: system runs without vmc_adm
    [Thr 1812] DpShMCreate: allocated gw_adm at 00000000029B1CF0
    [Thr 1812] DpShMCreate: allocated j2ee_adm at 00000000029B1D30
    [Thr 1812] DpShMCreate: allocated ca_info at 00000000029B2CB0
    [Thr 1812] DpRqQInit: use protect_queue / slots_per_queue 0 / 2001 from sys_adm
    [Thr 1812] MPI: dynamic quotas disabled.
    [Thr 1812] MPI init: pipes=4000 buffers=1279 reserved=383 quota=10%
    [Thr 1812] CCMS: initialize CCMS Monitoring for ABAP instance with J2EE addin.
    [Thr 1812] CCMS: SemInMgt: Semaphore Management initialized by AlAttachShm_Doublestack.
    [Thr 1812] Fri May 16 01:23:14 2014
    [Thr 1812] CCMS: SemInit: Semaphore 38 initialized by AlAttachShm_Doublestack.
    [Thr 1812] IcmCreateWorkerThreads: created worker thread 0
    [Thr 1812] IcmCreateWorkerThreads: created worker thread 1
    [Thr 1812] IcmCreateWorkerThreads: created worker thread 2
    [Thr 6912] IcmProxyWatchDog: proxy watchdog started
    [Thr 1812] IcmCreateWorkerThreads: created worker thread 3
    [Thr 1812] IcmCreateWorkerThreads: created worker thread 4
    [Thr 1812] IcmCreateWorkerThreads: created worker thread 5
    [Thr 1812] IcmCreateWorkerThreads: created worker thread 6
    [Thr 1812] IcmCreateWorkerThreads: created worker thread 7
    [Thr 1812] IcmCreateWorkerThreads: created worker thread 8
    [Thr 1812] IcmCreateWorkerThreads: created worker thread 9
    [Thr 4024] IcmMpiWatchDogThread: MPI watchdog started
    [Thr 4400] IcmWatchDogThread: watchdog started
    [Thr 6524] HttpISubHandlerAdd: Added handler HttpFileAccessHandler(000000000C2E2750), slot=0, flags=4098) for /sap/public/icmandir/, active: 1, table 000000000C2E24C0
    [Thr 6524] ISC: created 400 MB disk cache.
    [Thr 6524] ISC: created 50 MB memory cache.
    [Thr 6524] HttpISubHandlerAdd: Added handler HttpCacheHandler(000000000C3EB4B0), slot=1, flags=12293) for /, active: 1, table 000000000C2E24C0
    [Thr 6524] HttpExtractArchive: files from archive E:\usr\sap\PRD\DVEBMGS00\exe/icmadmin.SAR in directory E:/usr/sap/PRD/DVEBMGS00/data/icmandir are up to date
    [Thr 6524] HttpISubHandlerAdd: Added handler HttpAdminHandler(000000000C461480), slot=2, flags=36869) for /sap/admin, active: 1, table 000000000C2E24C0
    [Thr 6524] HttpISubHandlerAdd: Added handler HttpModHandler(000000000C461570), slot=3, flags=12293) for /, active: 1, table 000000000C2E24C0
    [Thr 6524] CsiInit(): Initializing the Content Scan Interface
    [Thr 6524]            PC with Windows NT (mt,unicode,SAP_CHAR/size_t/void* = 16/64/64)
    [Thr 6524] CsiInit(): CSA_LIB = "E:\usr\sap\PRD\DVEBMGS00\exe\sapcsa.dll"
    [Thr 6524] HttpISubHandlerAdd: Added handler HttpAuthHandler(000000000C4615F0), slot=4, flags=12293) for /, active: 1, table 000000000C2E24C0
    [Thr 6524] HttpISubHandlerAdd: Added handler HttpSAPR3Handler(000000000C4AFAE0), slot=5, flags=1052677) for /, active: 1, table 000000000C2E24C0
    [Thr 6524] Started service PORT=8000,PROT=HTTP,TIMEOUT=60,PROCTIMEOUT=60
    [Thr 6524] Started service PORT=0,PROT=SMTP,TIMEOUT=120,PROCTIMEOUT=120
    [Thr 6524] Fri May 16 01:23:18 2014
    [Thr 6524] IcmNetCheck: network check passed without detecting problems
    [Thr 4268] Fri May 16 01:23:24 2014
    [Thr 4268] HttpExtractArchive: files from archive E:\usr\sap\PRD\DVEBMGS00\exe/ITS.SAR in directory E:/usr/sap/PRD/DVEBMGS00/data/icmandir are up to date
    [Thr 8156] Fri May 16 01:24:14 2014
    [Thr 8156] *** WARNING => IcmCallAllSchedules: Schedule func 1 already running - avoid recursion [icxxsched.c  481]
    [Thr 5948] Fri May 16 01:24:24 2014
    [Thr 5948] *** WARNING => IcmJ2EEScheduleFunc: Cannot access "/sap/public/icman" (rc=500)- please check node in TA sicf [icxxman.c    2598]
    [Thr 6912] Fri May 16 01:24:44 2014
    [Thr 6912] IcmProxyWatchDog: Shutdown request received
    [Thr 4400] IcmWatchDogThread: Shutdown request received
    [Thr 6912] *** IcmProxyWatchDog: exit thread ***
    [Thr 4024] *** IcmMpiWatchDogThread: exit thread ***
    [Thr 4400] *** IcmWatchDogThread: exit thread ***
    [Thr 1812] IcmLoop: Shutdown request received
    [Thr 1812] Deactivated service PORT=8000,PROT=HTTP,TIMEOUT=60,PROCTIMEOUT=60
    [Thr 1812] Deactivated service PORT=0,PROT=SMTP,TIMEOUT=120,PROCTIMEOUT=120
    [Thr 1812] Removed service PORT=8000,PROT=HTTP,TIMEOUT=60,PROCTIMEOUT=60
    [Thr 1812] Removed service PORT=0,PROT=SMTP,TIMEOUT=120,PROCTIMEOUT=120
    [Thr 1812] *** ICM shutdown completed (pid: 5940) ***

  • SAP disp+work.exe started but then stopped

    i am attaching 2 files .. dev_disp, dev_w0
    SAP stops running after few seconds
    please help me with that regards
    Thanks in Advance
    trc file: "dev_w0", trc level: 1, release: "720"
    *  ACTIVE TRACE LEVEL           1
    *  ACTIVE TRACE COMPONENTS      all, MJ
    M sysno      00
    M sid        SLM
    M systemid   390 (AMD/Intel x86_64 with Linux)
    M relno      7200
    M patchlevel 0
    M patchno    201
    M intno      20020600
    M make       single threaded, Unicode, 64 bit, optimized
    M profile /usr/sap/SLM/SYS/profile/SLM_DVEBMGS00_haidrislm
    M pid        12541
    M

    M Thu Jun  7 11:46:10 2012
    M  kernel runs with dp version 133000(ext=118000) (@(#) DPLIB-INT-VERSION-133000-UC)
    M  length of sys_adm_ext is 588 bytes
    M  ThStart: taskhandler started
    M  ThInit: initializing DIA work process W0
    M  ***LOG Q01=> ThInit, WPStart (Workp. 0 1 12541) [thxxhead.c 1321]

    M Thu Jun  7 11:46:11 2012
    M  ThInit: running on host haidrislm
    M  calling db_connect ...
    B  Loading DB library '/usr/sap/SLM/DVEBMGS00/exe/dbsdbslib.so' ...
    B  Library '/usr/sap/SLM/DVEBMGS00/exe/dbsdbslib.so' loaded
    B  Version of '/usr/sap/SLM/DVEBMGS00/exe/dbsdbslib.so' is "720.00", patchlevel (0.201)

    C  DBSDBSLIB : version 720.00, patch 0.201 (Make PL 0.201)
    C  MAXDB shared library (dbsdbslib) patchlevels (last 10)
    C    (0.201) Take care of warnings during database connect (note 1600066)
    C    (0.117) Define a primary key on the temp tables for R3szchk (note 1606260)
    C    (0.114) Support of MaxDB 7.8 and 7.9 (note 1653058)
    C    (0.103) Close all lob locators at end of the transaction (note 1626591)
    C    (0.101) Fix for unknown table __TABLE_SIZES_ (R3szchk) (note 1619504)
    C    (0.098) Use filesystem counter for R3szchk (note 1606260)
    C    (0.092) Secondary connection to HANA (note 1481256)
    C    (0.089) UPDSTAT with SAPSYSTEMNAME longer as 3 characters (note 1584921)
    C    (0.081) No UPSERT on WBCROSSGT (note 1521468)
    C    (0.080) New feature batch streaming (note 1340617)


    C  Loading SQLDBC client runtime ...
    C  SQLDBC Module  : /sapdb/clients/SLM/lib/libSQLDBC77.so
    C  SQLDBC SDK     : SQLDBC.H 7.8.2    BUILD 017-121-241-257
    C  SQLDBC Runtime : libSQLDBC 7.8.1    BUILD 014-121-233-288
    C  SQLDBC client runtime is MaxDB 7.8.1.014 CL 233288
    C  SQLDBC supports new DECIMAL interface : 1
    C  SQLDBC supports VARIABLE INPUT data   : 1
    C  SQLDBC supports VARIABLE OUTPUT data  : 1
    C  SQLDBC supports Multiple Streams      : 1
    C  SQLDBC supports LOB LOCATOR KEEPALIVE : 1
    C  SQLDBC supports LOB LOCATOR COPY      : 1
    C  SQLDBC supports BULK SELECT with LOBS : 1
    C  SQLDBC supports BATCH STREAM          : 0
    C  INFO : SQLOPT= -I 0 -t 0 -S SAPR3
    C  Try to connect (DEFAULT) on connection 0 ...
    C  Attach to SAP DB : Kernel    7.8.01 Build 014-121-233-288
    C  Database release is SAP DB 7.8.01.014
    C  INFO : Database 'SLM' instance is running on 'haidrislm'
    C  DB supports UPSERT SQL syntax : 1
    C  DB supports new EXPAND syntax : 1
    C  DB supports LOB locators      : 1
    C  DB uses MVCC support          : 0
    C  DB max. input host variables  : 2000
    C  DB max. statement length      : 65535
    C  UPSERT is disabled for : WBCROSSGT
    C  INFO : SAP DB Packet_Size = 131072
    C  INFO : SAP DB Min_Reply_Size = 4096
    C  INFO : SAP DB Comm_Size = 126976
    C  INFO : DBSL buffer size = 126976

    C Thu Jun  7 11:46:12 2012
    C  INFO : SAP DB MaxLocks = 300000
    C  INFO : Connect to DB as 'SAPSLM'
    C  Command info enabled
    C  Now I'm connected to MaxDB
    C  00: haidrislm-SLM, since=20120607114611, ABAP= <unknown> (0)
    B  Connection 0 opened (DBSL handle 0)
    C  INFO : SAP RELEASE (DB) = 702
    M  ThInit: db_connect o.k.
    M  ICT: exclude compression: *.zip,*.rar,*.arj,*.z,*.gz,*.tar,*.lzh,*.cab,*.hqx,*.ace,*.jar,*.ear,*.war,*.css,*.pdf,*.gzip,*.uue,*.bz2,*.iso,*.sda,*.sar,*.gif,*.png,*.swc,*.swf

    I Thu Jun  7 11:46:25 2012
    I  MtxInit: 0 0 0
    M  SHM_PRES_BUF               (addr: 7fb868ed2000, size: 4400000)
    M  SHM_ROLL_AREA        (addr: 7fb74c607000, size: 268435456)
    M  SHM_PAGING_AREA            (addr: 7fb73c607000, size: 268435456)
    M  SHM_ROLL_ADM               (addr: 7fb869306000, size: 11142696)
    M  SHM_PAGING_ADM       (addr: 7fb73c2e6000, size: 3277856)
    M  ThCreateNoBuffer           allocated 564152 bytes for 1000 entries at 7fb735818000
    M  ThCreateNoBuffer           index size: 3000 elems
    M  ThCreateVBAdm        allocated 30976 bytes (50 server) at 7fb879e92000
    X  EmInit: MmSetImplementation( 2 ).
    X  MM global diagnostic options set: 0
    X  <ES> client 0 initializing ....
    X  Using implementation std
    X  Linux: Kernel supports shared memory disclaiming
    X  Linux: using madvise(<pointer>, <size>, 9).
    X  Linux: disclaiming for shared memory enabled
    X  ES initialized.
    X  mm.dump: set maximum dump mem to 96 MB
    I  *** INFO  SHM 45 in POOL 40     4771 KB estimated      3625 KB real (   -1146 KB -25 %)
    B  db_con_shm_ini:  WP_ID = 0, WP_CNT = 19, CON_ID = -1
    B  dbtbxbuf: Buffer TABL  (addr: 7fb732697100, size: 30000000, end: 7fb734333480)
    B  dbtbxbuf: Buffer TABLP (addr: 7fb731cd3100, size: 10240000, end: 7fb732697100)
    B  dbsync[db_syinit]: successfully attached to shared memory, sync_adm_p = 7fb738812000
    B  dbsync[db_syinit]: Buffer synchronisation started with
    B    sync_concept      = SEQ_NR
    B    sendon            = 1
    B    bufreftime        = 120
    B    max_gap_wait_time = 60
    B    ddlog_del_time    = 60
    B    last_counter      = -2147399349
    B    oldest_gap        = (2147483647,00000000000000)
    B    time_of_last_sync = 20120607114622
    B    MySysId           = 'haidrislm           00'
    B  dbexpbuf: Buffer EIBUF (addr: 7fb72ebfe108, size: 51200000, end: 7fb731cd2108)
    B  dbexpbuf: Buffer ESM   (addr: 7fb72e7fd108, size: 4194304, end: 7fb72ebfd108)
    B  dbexpbuf: Buffer CUA   (addr: 7fb738814108, size: 3072000, end: 7fb738b02108)
    B  dbexpbuf: Buffer OTR   (addr: 7fb72e3fc108, size: 4194304, end: 7fb72e7fc108)
    I  MPI: dynamic quotas disabled.
    I  MPI init: pipes=4000 buffers=1279 reserved=383 quota=10%
    M  rdisp/thsend_mode : -1 -> 0
    M  rdisp/setactfields_late : -1 -> 0
    M  CCMS uses Shared Memory Key 73 for monitoring.
    M  CCMS: SemInMgt: Semaphore Management initialized by AlAttachShm_Doublestack.
    M  CCMS: SemInit: Semaphore 38 initialized by AlAttachShm_Doublestack.

    G Thu Jun  7 11:46:26 2012
    G  RelWritePermissionForShm( pLocation = 120, pEnforce = 0 )
    G  GetWritePermissionForShm( pLocation =  99, pEnforce = 1 )
    G  RelWritePermissionForShm( pLocation = 100, pEnforce = 1 )
    S  *** init spool environment
    S  TSPEVJOB updates outside critical section: event_update_nocsec = 1
    S  initialize debug system
    T  Stack direction is downwards.
    T  debug control: prepare exclude for printer trace
    T  new memory block 66b5e80
    S  spool kernel/ddic check: Ok
    S  using table TSP02FX for frontend printing
    S  1 spool work process(es) found
    S  frontend print via spool service enabled
    S  printer list size is 150
    S  printer type list size is 50
    S  queue size (profile)   = 300
    S  hostspool list size = 3000
    S  option list size is 30
    I  *** INFO  SHM 49 in POOL 40     2898 KB estimated      1632 KB real (   -1266 KB -44 %)
    S      found processing queue enabled
    S  found spool memory service RSPO-RCLOCKS at 7fb738b03070
    S  doing lock recovery
    S  setting server cache root
    S  found spool memory service RSPO-SERVERCACHE at 7fb738b03750
    S    using messages for server info
    S  size of spec char cache entry: 297032 bytes (timeout 100 sec)
    S  size of open spool request entry: 2512 bytes
    S  immediate print option for implicitely closed spool requests is disabled
    N  SncInit(): Initializing Secure Network Communication (SNC)
    N        AMD/Intel x86_64 with Linux (st,ascii,SAP_UC/size_t/void* = 16/64/64)
    N  SncInit():   found snc/data_protection/max=3, using 3 (Privacy Level)
    N  SncInit():   found snc/data_protection/min=2, using 2 (Integrity Level)
    N  SncInit():   found snc/data_protection/use=9, using 3 (Privacy Level)
    N  SncInit(): Trying builtin default as a
    N        gssapi library name: "sncgss.so".
    N  SncInit(): snc/gssapi_lib UNDEFINED in profile!
    N        YOU DEFINITELY SHOULD SET snc/gssapi_lib !!
    M  *** ERROR => DlLoadLib()==DLENOACCESS - dlopen("sncgss.so") FAILED
    "sncgss.so: cannot open shared object file: No such file or directory" [dlux.c       445]
    N  *** ERROR => SncPDLInit()==SNCERR_INIT, Adapter #1 (sncgss.so) not loaded [sncxxdl.c  640]
    N  <<- SncInit()==SNCERR_INIT
    N           sec_avail = "false"
    M  ***LOG R19=> ThSncInit, SncInitU ( SNC-000001) [thxxsnc.c    237]
    M  *** ERROR => ThSncInit: SncInitU (SNCERR_INIT) [thxxsnc.c    239]
    M  in_ThErrHandle: 1
    M  *** ERROR => SncInitU (step 1, th_errno 44, action 3, level 1) [thxxhead.c 11321]

    M  Info for wp 0

    M    pid = 12541
    M    severity = 0
    M    status = 0
    M    stat = WP_NEW
    M    waiting_for = NO_WAITING
    M    reqtype = DP_RQ_DIAWP
    M    act_reqtype = NO_REQTYPE
    M    req.req_info =
    M    req.tid = -1
    M    req.uid = 4294967295
    M    req.mode = 255
    M    req.len = 0
    M    req.rq_id = 65535
    M    req.rq_source =
    M    last_tid = 0
    M    last_uid = 0
    M    last_mode = 0
    M    act_cs_count = 0
    M    csTrack = 0
    M    csTrackRwExcl = 0
    M    csTrackRwShrd = 0
    M    mode_cleaned_counter = 0
    M    control_flag = 0
    M    int_checked_resource(RFC) = 0
    M    ext_checked_resource(RFC) = 0
    M    int_checked_resource(HTTP) = 0
    M    ext_checked_resource(HTTP) = 0
    M    report = > <
    M    action = 0
    M    tab_name = >                              <
    M    attachedVm = no VM

    M  ThIErrHandle: current request:

    M  -IN-- sender_id ?                 tid  -1 wp_ca_blk   -1      wp_id -1
    M  -IN-- action    -                 uid  -1 appc_ca_blk -1      type  -
    M  -IN-- new_stat  NO_CHANGE         mode 255   len 0       rq_id -1
    M  PfStatDisconnect: disconnect statistics
    M  Entering TH_CALLHOOKS
    M  ThCallHooks: call hook >TrThHookFunc< for event BEFORE_DUMP
    M  TrThHookFunc: called for WP dump
    M  ThCallHooks: hook >TrThHookFunc< o.k.
    M  ThCallHooks: call hook >ThrSaveSPAFields< for event BEFORE_DUMP
    M  *** ERROR => ThrSaveSPAFields: no valid thr_wpadm [thxxrun1.c   844]
    M  *** ERROR => ThCallHooks: event handler ThrSaveSPAFields for event BEFORE_DUMP failed [thxxtool3.c  303]
    M  ThCallHooks: call hook >ThrBtcCallLgCl< for event BEFORE_DUMP
    M  ThCallHooks: hook >ThrBtcCallLgCl< o.k.
    M  ThIErrHandle: entering ThSetStatError
    M  ThIErrHandle: do not call ThrCoreInfo (no_core_info=0, in_dynp_env=0)
    M  Entering ThReadDetachMode
    M  call ThrShutDown (1)...
    M  ***LOG Q02=> wp_halt, WPStop (Workp. 0 12541) [dpuxtool.c   327]
    trc file: "dev_disp.new", trc level: 1, release: "720"
    sysno      00
    sid        SLM
    systemid   390 (AMD/Intel x86_64 with Linux)
    relno      7200
    patchlevel 0
    patchno    201
    intno      20020600
    make       single threaded, Unicode, 64 bit, optimized
    profile /usr/sap/SLM/SYS/profile/SLM_DVEBMGS00_haidrislm
    pid        12502
    kernel runs with dp version 133000(ext=118000) (@(#) DPLIB-INT-VERSION-133000-UC)
    length of sys_adm_ext is 588 bytes
    *** SWITCH TRC-HIDE on ***
    ***LOG Q00=> DpSapEnvInit, DPStart (00 12502) [dpxxdisp.c   1315]
    shared lib "dw_xml.so" version 201 successfully loaded
    shared lib "dw_xtc.so" version 201 successfully loaded
    shared lib "dw_stl.so" version 201 successfully loaded
    shared lib "dw_gui.so" version 201 successfully loaded
    shared lib "dw_mdm.so" version 201 successfully loaded
    shared lib "dw_rndrt.so" version 201 successfully loaded
    shared lib "dw_abp.so" version 201 successfully loaded
    shared lib "dw_sym.so" version 201 successfully loaded
    shared lib "dw_aci.so" version 201 successfully loaded
    rdisp/softcancel_sequence :  -> 0,5,-1
    use internal message server connection to port 3900
    rdisp/dynamic_wp_check : 1
    rdisp/calculateLoadAverage : 1
    Thu Jun  7 11:46:10 2012
    MtxInit: 30000 0 0
    DpSysAdmExtInit: ABAP is active
    DpSysAdmExtInit: VMC (JAVA VM in WP) is not active
    DpIPCInit2: write dp-profile-values into sys_adm_ext
    DpIPCInit2: start server >haidrislm_SLM_00                        <
    DpShMCreate: sizeof(wp_adm)         43016 (2264)
    DpShMCreate: sizeof(tm_adm)         5581368     (27768)
    DpShMCreate: sizeof(wp_ca_adm)            80000 (80)
    DpShMCreate: sizeof(appc_ca_adm)    80000 (80)
    DpCommTableSize: max/headSize/ftSize/tableSize=500/8/576056/576064
    DpShMCreate: sizeof(comm_adm)       576064      (1144)
    DpSlockTableSize: max/headSize/ftSize/fiSize/tableSize=0/0/0/0/0
    DpShMCreate: sizeof(slock_adm)            0     (296)
    DpFileTableSize: max/headSize/ftSize/tableSize=0/0/0/0
    DpShMCreate: sizeof(file_adm)       0     (80)
    DpShMCreate: sizeof(vmc_adm)        0     (2296)
    DpShMCreate: sizeof(wall_adm)       (40056/42872/80/192)
    DpShMCreate: sizeof(gw_adm)   48
    DpShMCreate: sizeof(j2ee_adm) 3952
    DpShMCreate: SHM_DP_ADM_KEY         (addr: 7fb868801000, size: 6461400)
    DpShMCreate: allocated sys_adm at 7fb868801008
    DpShMCreate: allocated wp_adm_list at 7fb868804130
    DpShMCreate: allocated wp_adm at 7fb868804318
    DpShMCreate: allocated tm_adm_list at 7fb86880eb28
    DpShMCreate: allocated tm_adm at 7fb86880eb70
    DpShMCreate: allocated wp_ca_adm at 7fb868d615b0
    DpShMCreate: allocated appc_ca_adm at 7fb868d74e38
    DpShMCreate: allocated comm_adm at 7fb868d886c0
    DpShMCreate: system runs without slock table
    DpShMCreate: system runs without file table
    DpShMCreate: allocated vmc_adm_list at 7fb868e15108
    DpShMCreate: system runs without vmc_adm
    DpShMCreate: allocated gw_adm at 7fb868e151b0
    DpShMCreate: allocated j2ee_adm at 7fb868e151e8
    DpShMCreate: allocated ca_info at 7fb868e16160
    DpShMCreate: allocated wall_adm at 7fb868e16200
    DpCommAttachTable: attached comm table (header=7fb868d886c0/ft=7fb868d886c8)
    DpSysAdmIntInit: initialize sys_adm
    rdisp/test_roll : roll strategy is DP_NORMAL_ROLL
    dia token check not active (10 token)
    MBUF state OFF
    DpCommInitTable: init table for 500 entries
    DpRqQInit: keep protect_queue / slots_per_queue 0 / 2001 in sys_adm
    rdisp/queue_size_check_value :  -> on,50,30,40,500,50,500,80
    EmInit: MmSetImplementation( 2 ).
    MM global diagnostic options set: 0
    <ES> client 0 initializing ....
    <ES> EsILock: use spinlock for locking
    <ES> InitFreeList
    <ES> block size is 4096 kByte.
    Using implementation std
    EsStdUnamFileMapInit: ES base = 0x7fb7625dc000
    EsStdInit: Extended Memory 4096 MB allocated
    Linux: Kernel supports shared memory disclaiming
    Linux: using madvise(<pointer>, <size>, 9).
    Linux: disclaiming for shared memory enabled
    <ES> 1023 blocks reserved for free list.
    ES initialized.
    mm.dump: set maximum dump mem to 96 MB
    DpVmcSetActive: set vmc state DP_VMC_NOT_ACTIVE
    MPI: dynamic quotas disabled.
    MPI init: pipes=4000 buffers=1279 reserved=383 quota=10%
    J2EE server info
    start = TRUE
    state = STARTED
    pid = 12540
    argv[0] = /usr/sap/SLM/DVEBMGS00/exe/jcontrol
    argv[1] = /usr/sap/SLM/DVEBMGS00/exe/jcontrol
    argv[2] = pf=/usr/sap/SLM/SYS/profile/SLM_DVEBMGS00_haidrislm
    argv[3] = -DSAPSTART=1
    argv[4] = -DCONNECT_PORT=65000
    argv[5] = -DSAPSYSTEM=00
    argv[6] = -DSAPSYSTEMNAME=SLM
    argv[7] = -DSAPMYNAME=haidrislm_SLM_00
    argv[8] = -DSAPPROFILE=/usr/sap/SLM/SYS/profile/SLM_DVEBMGS00_haidrislm
    argv[9] = -DFRFC_FALLBACK=ON
    argv[10] = -DFRFC_FALLBACK_HOST=localhost
    start_lazy = 0
    start_control = SAP J2EE startup framework
    DpJ2eeStart: j2ee state = STARTED
    rdisp/http_min_wait_dia_wp : 1 -> 1
    ***LOG CPS=> DpLoopInit, ICU ( 3.4 3.4 4.1) [dpxxdisp.c   1701]
    ***LOG Q0K=> DpMsAttach, mscon ( haidrislm) [dpxxdisp.c   12467]
    MBUF state LOADING
    DpStartStopMsg: send start message (myname is >haidrislm_SLM_00                        <)
    DpStartStopMsg: start msg sent
    *** WARNING: resource limit value for 'max open files' too low (1024 < 32800)
    **START Linux Memory Parameter Check
    virtual memory: hard-limit = UNLIMITED
    virtual memory: soft-limit = UNLIMITED
    core size: hard-limit = UNLIMITED
    core size: soft-limit = 0 MB
    data segment size: hard-limit = UNLIMITED
    data segment size: soft-limit = UNLIMITED
    stack size: hard-limit = UNLIMITED
    stack size: soft-limit = 8 MB
    max open files: hard-limit = 1024
    max open files: soft-limit = 1024
    Page Size: 4 KB
    kernel.shmmax = 8796093022207 MB
    kernel.shmall = 4503599627370495 MB
    **END   Linux Memory Parameter Check
    CCMS uses Shared Memory Key 73 for monitoring.
    CCMS: Initalized shared memory of size 60000000 for monitoring segment.
    CCMS: Checking Downtime Configuration of Monitoring Segment.
    CCMS: AlMsUpload called by wp 1024.
    Thu Jun  7 11:46:11 2012
    CCMS: AlMsUpload successful for /usr/sap/SLM/DVEBMGS00/log/ALMTTREE (2062 MTEs).
    Thu Jun  7 11:46:12 2012
    CCMS: start to initalize 3.X shared alert area (first segment).
    DpJ2eeLogin: j2ee state = CONNECTED
    DpMBufHwIdSet: set Hardware-ID
    ***LOG Q1C=> DpMBufHwIdSet [dpxxmbuf.c 1296]
    MBUF state ACTIVE
    DpWpBlksLow: max wp blocks in queue is 800 (80 %)
    MBUF component UP
    DpMsgProcess: 1 server in MBUF
    DpAppcBlksLow: max appc blocks in queue is 500 (50 %)
    Thu Jun  7 11:46:32 2012
    *** ERROR => DpHdlDeadWp: W0 (pid 12541) died (severity=0, status=65280) [dpxxwp.c     1531]
    DpTraceWpStatus: child (pid=12541) exited with exit code 255
    *** ERROR => DpHdlDeadWp: W1 (pid 12542) died (severity=0, status=65280) [dpxxwp.c     1531]
    DpTraceWpStatus: child (pid=12542) exited with exit code 255
    *** ERROR => DpHdlDeadWp: W2 (pid 12543) died (severity=0, status=65280) [dpxxwp.c     1531]
    DpTraceWpStatus: child (pid=12543) exited with exit code 255
    *** ERROR => DpHdlDeadWp: W3 (pid 12544) died (severity=0, status=65280) [dpxxwp.c     1531]
    DpTraceWpStatus: child (pid=12544) exited with exit code 255
    *** ERROR => DpHdlDeadWp: W4 (pid 12545) died (severity=0, status=65280) [dpxxwp.c     1531]
    DpTraceWpStatus: child (pid=12545) exited with exit code 255
    *** ERROR => DpHdlDeadWp: W5 (pid 12546) died (severity=0, status=65280) [dpxxwp.c     1531]
    DpTraceWpStatus: child (pid=12546) exited with exit code 255
    *** ERROR => DpHdlDeadWp: W6 (pid 12547) died (severity=0, status=65280) [dpxxwp.c     1531]
    DpTraceWpStatus: child (pid=12547) exited with exit code 255
    *** ERROR => DpHdlDeadWp: W7 (pid 12548) died (severity=0, status=65280) [dpxxwp.c     1531]
    DpTraceWpStatus: child (pid=12548) exited with exit code 255
    *** ERROR => DpHdlDeadWp: W8 (pid 12549) died (severity=0, status=65280) [dpxxwp.c     1531]
    DpTraceWpStatus: child (pid=12549) exited with exit code 255
    *** ERROR => DpHdlDeadWp: W9 (pid 12550) died (severity=0, status=65280) [dpxxwp.c     1531]
    DpTraceWpStatus: child (pid=12550) exited with exit code 255
    *** ERROR => DpHdlDeadWp: W10 (pid 12551) died (severity=0, status=65280) [dpxxwp.c     1531]
    DpTraceWpStatus: child (pid=12551) exited with exit code 255
    *** ERROR => DpHdlDeadWp: W11 (pid 12552) died (severity=0, status=65280) [dpxxwp.c     1531]
    DpTraceWpStatus: child (pid=12552) exited with exit code 255
    *** ERROR => DpHdlDeadWp: W12 (pid 12553) died (severity=0, status=65280) [dpxxwp.c     1531]
    DpTraceWpStatus: child (pid=12553) exited with exit code 255
    *** ERROR => DpHdlDeadWp: W13 (pid 12554) died (severity=0, status=65280) [dpxxwp.c     1531]
    DpTraceWpStatus: child (pid=12554) exited with exit code 255
    *** ERROR => DpHdlDeadWp: W14 (pid 12555) died (severity=0, status=65280) [dpxxwp.c     1531]
    DpTraceWpStatus: child (pid=12555) exited with exit code 255
    *** ERROR => DpHdlDeadWp: W15 (pid 12556) died (severity=0, status=65280) [dpxxwp.c     1531]
    DpTraceWpStatus: child (pid=12556) exited with exit code 255
    *** ERROR => DpHdlDeadWp: W16 (pid 12557) died (severity=0, status=65280) [dpxxwp.c     1531]
    DpTraceWpStatus: child (pid=12557) exited with exit code 255
    *** DP_FATAL_ERROR => DpWPCheck: no more work processes
    *** DISPATCHER EMERGENCY SHUTDOWN ***
    increase tracelevel of WPs
    NiWait: sleep (10000ms) ...
    NiISelect: timeout 10000ms
    NiISelect: maximum fd=16
    NiISelect: read-mask is NULL
    NiISelect: write-mask is NULL
    Thu Jun  7 11:46:42 2012
    NiISelect: TIMEOUT occured (10000ms)
    dump system status
    Workprocess Table (long)                  Thu Jun  7 06:46:42 2012
    ========================
    No Type  Pid    Status Cause Start Rstr  Err Sem Time Program          Cl  User Action                    Table
    0 DIA       -1 Ended         no no     1   0 0 NO_ACTION                          
    1 DIA       -1 Ended         no no     1   0 0 NO_ACTION
    2 DIA       -1 Ended         no no     1   0 0 NO_ACTION                          
    3 DIA       -1 Ended         no no     1   0 0 NO_ACTION
    4 DIA       -1 Ended         no no     1   0 0 NO_ACTION                          
    5 DIA       -1 Ended         no no     1   0 0 NO_ACTION
    6 DIA       -1 Ended         no no     1   0 0 NO_ACTION                          
    7 DIA       -1 Ended         no no     1   0 0 NO_ACTION
    8 DIA       -1 Ended         no no     1   0 0 NO_ACTION                          
    9 DIA       -1 Ended         no no     1   0 0 NO_ACTION
    10 UPD       -1 Ended         no no     1   0 0 NO_ACTION
    11 ENQ       -1 Ended         no no     1   0 0 NO_ACTION
    12 BTC       -1 Ended         no no     1   0 0 NO_ACTION
    13 BTC       -1 Ended         no no     1   0 0 NO_ACTION
    14 BTC       -1 Ended         no no     1   0 0 NO_ACTION
    15 SPO       -1 Ended         no no     1   0 0 NO_ACTION
    16 UP2       -1 Ended         no no     1   0 0 NO_ACTION
    Dispatcher Queue Statistics               Thu Jun  7 06:46:42 2012
    ===========================
    +------+--------+--------+--------+------------+------------+
    |  Typ |    now | high |    max | writes     | reads     |
    +------+--------+--------+--------+------------+------------+
    | NOWP |      0 |      4 | 2000 |          5 |          5 |
    +------+--------+--------+--------+------------+------------+
    |  DIA |      3 | 3 |   2000 |          3 |          0 |
    +------+--------+--------+--------+------------+------------+
    |  UPD |      0 | 0 |   2000 |          0 |          0 |
    +------+--------+--------+--------+------------+------------+
    |  ENQ |      0 | 0 |   2000 |          0 |          0 |
    +------+--------+--------+--------+------------+------------+
    |  BTC |      0 | 0 |   2000 |          0 |          0 |
    +------+--------+--------+--------+------------+------------+
    |  SPO |      0 | 0 |   2000 |          0 |          0 |
    +------+--------+--------+--------+------------+------------+
    |  UP2 |      0 | 0 |   2000 |          0 |          0 |
    +------+--------+--------+--------+------------+------------+
    max_rq_id         21
    wake_evt_udp_now  0
    wake events      total     6,  udp 1 ( 16%),  shm     5 ( 83%)
    since last update total     6, udp     1 ( 16%),  shm 5 ( 83%)
    DpGetLoadAverage: la1[1] = 0.000000 / -1.000000 %
    DpGetLoadAverage: la5[1] = 0.000000 / -1.000000 %
    DpGetLoadAverage: la15[1] = 0.000000 / -1.000000 %
    Dispatcher Load Statistics
    +------+---------+---------+---------+
    |  Typ |     LA1 | LA5 |    LA15 |
    +------+---------+---------+---------+
    |  DIA | 0.000 |   0.000 |   0.000 |
    +------+---------+---------+---------+
    DpGetLoadAverage: la1[2] = 0.000000 / -1.000000 %
    DpGetLoadAverage: la5[2] = 0.000000 / -1.000000 %
    DpGetLoadAverage: la15[2] = 0.000000 / -1.000000 %
    |  UPD | 0.000 |   0.000 |   0.000 |
    +------+---------+---------+---------+
    DpGetLoadAverage: la1[3] = 0.000000 / -1.000000 %
    DpGetLoadAverage: la5[3] = 0.000000 / -1.000000 %
    DpGetLoadAverage: la15[3] = 0.000000 / -1.000000 %
    |  ENQ | 0.000 |   0.000 |   0.000 |
    +------+---------+---------+---------+
    DpGetLoadAverage: la1[4] = 0.000000 / -1.000000 %
    DpGetLoadAverage: la5[4] = 0.000000 / -1.000000 %
    DpGetLoadAverage: la15[4] = 0.000000 / -1.000000 %
    |  BTC | 0.000 |   0.000 |   0.000 |
    +------+---------+---------+---------+
    DpGetLoadAverage: la1[5] = 0.000000 / -1.000000 %
    DpGetLoadAverage: la5[5] = 0.000000 / -1.000000 %
    DpGetLoadAverage: la15[5] = 0.000000 / -1.000000 %
    |  SPO | 0.000 |   0.000 |   0.000 |
    +------+---------+---------+---------+
    DpGetLoadAverage: la1[6] = 0.000000 / -1.000000 %
    DpGetLoadAverage: la5[6] = 0.000000 / -1.000000 %
    DpGetLoadAverage: la15[6] = 0.000000 / -1.000000 %
    |  UP2 | 0.000 |   0.000 |   0.000 |
    +------+---------+---------+---------+
    Dump of tm_adm structure:                 Thu Jun  7 06:46:42 2012
    =========================
    Term    uid  man user term   lastop  mod wp ta   a/i (modes)
    RM-T19, U20,                 , , 11:46:18, M0, W-1,     , 1/0
    Workprocess Comm. Area Blocks             Thu Jun  7 06:46:42 2012
    =============================
    Slots: 1000, Used: 14, Max: 14
    +------+--------------+----------+-------------+
    |   id | owner        | pid    | eyecatcher  |
    +------+--------------+----------+-------------+
    |    0 | DISPATCHER   | -1 | 0xdeadbeef |
    |  156 | WORK_PROCESS |       -1 | 0xdeadbeef |
    |  157 | WORK_PROCESS |       -1 | 0xdeadbeef |
    |  158 | WORK_PROCESS |       -1 | 0xdeadbeef |
    |  159 | WORK_PROCESS |       -1 | 0xdeadbeef |
    |  160 | WORK_PROCESS |       -1 | 0xdeadbeef |
    |  161 | WORK_PROCESS |       -1 | 0xdeadbeef |
    |  162 | WORK_PROCESS |       -1 | 0xdeadbeef |
    |  163 | WORK_PROCESS |       -1 | 0xdeadbeef |
    |  164 | WORK_PROCESS |       -1 | 0xdeadbeef |
    |  165 | WORK_PROCESS |       -1 | 0xdeadbeef |
    |  166 | WORK_PROCESS |       -1 | 0xdeadbeef |
    |  167 | WORK_PROCESS |       -1 | 0xdeadbeef |
    |  168 | WORK_PROCESS |       -1 | 0xdeadbeef |
    NiWait: sleep (5000ms) ...
    NiISelect: timeout 5000ms
    NiISelect: maximum fd=16
    NiISelect: read-mask is NULL
    NiISelect: write-mask is NULL
    Thu Jun  7 11:46:47 2012
    NiISelect: TIMEOUT occured (5000ms)
    DpHalt: shutdown server >haidrislm_SLM_00                        < (normal)
    DpJ2eeDisableRestart
    MsIDelService: delete service J2EE for myself
    NiBufSend starting
    NiIWrite: hdl 25 sent data (wrt=161,pac=1,MESG_IO)
    MsINiWrite: sent 161 bytes
    MsISnd2: send msg (ms hdr/msg 110/51 bytes) to name           MSG_SERVER, type 0, key -
    MsSndName: MS_DEL_PROPERTY ok
    Send 51 bytes to MSG_SERVER
    MS_DEL_PROPERTY : asynchronous call
    send MsDelService(J2EE) to msgserver
    DpIJ2eeShutdown: send SIGQUIT to SAP J2EE startup framework (pid=12540)
    killing proc (12540) (SOFTSHUTDOWN_KILL)
    MsIDelService: delete service J2EE for myself
    NiBufIAlloc: malloc MSLIB-BUF, to 32110 bytes
    NiBufSend starting
    NiIWrite: hdl 25 sent data (wrt=161,pac=1,MESG_IO)
    MsINiWrite: sent 161 bytes
    MsISnd2: send msg (ms hdr/msg 110/51 bytes) to name           MSG_SERVER, type 0, key -
    MsSndName: MS_DEL_PROPERTY ok
    Send 51 bytes to MSG_SERVER
    MS_DEL_PROPERTY : asynchronous call
    send DpDelService(J2EE) to msgserver
    MsDelLogon
    MsIBuildLogonData: prot = MS_LOGON_J2EE (2)
    NiBufIAlloc: malloc MSLIB-BUF, to 32110 bytes
    NiBufSend starting
    NiIWrite: hdl 25 sent data (wrt=132,pac=1,MESG_IO)
    MsINiWrite: sent 132 bytes
    MsISnd2: send msg (ms hdr/msg 110/22 bytes) to name           MSG_SERVER, type 0, key -
    MsSndName: MS_DEL_LOGON ok
    Send 22 bytes to MSG_SERVER
    MS_DEL_LOGON : asynchronous call
    MsDelLogon
    MsIBuildLogonData: prot = MS_LOGON_J2EERI (2)
    NiBufIAlloc: malloc MSLIB-BUF, to 32110 bytes
    NiBufSend starting
    NiIWrite: hdl 25 sent data (wrt=132,pac=1,MESG_IO)
    MsINiWrite: sent 132 bytes
    MsISnd2: send msg (ms hdr/msg 110/22 bytes) to name           MSG_SERVER, type 0, key -
    MsSndName: MS_DEL_LOGON ok
    Send 22 bytes to MSG_SERVER
    MS_DEL_LOGON : asynchronous call
    MsDelLogon
    MsIBuildLogonData: prot = MS_LOGON_J2EES (2)
    NiBufIAlloc: malloc MSLIB-BUF, to 32110 bytes
    NiBufSend starting
    NiIWrite: hdl 25 sent data (wrt=132,pac=1,MESG_IO)
    MsINiWrite: sent 132 bytes
    MsISnd2: send msg (ms hdr/msg 110/22 bytes) to name           MSG_SERVER, type 0, key -
    MsSndName: MS_DEL_LOGON ok
    Send 22 bytes to MSG_SERVER
    MS_DEL_LOGON : asynchronous call
    MsDelLogon
    MsIBuildLogonData: prot = MS_LOGON_J2EESRI (2)
    NiBufIAlloc: malloc MSLIB-BUF, to 32110 bytes
    NiBufSend starting
    NiIWrite: hdl 25 sent data (wrt=132,pac=1,MESG_IO)
    MsINiWrite: sent 132 bytes
    MsISnd2: send msg (ms hdr/msg 110/22 bytes) to name           MSG_SERVER, type 0, key -
    MsSndName: MS_DEL_LOGON ok
    Send 22 bytes to MSG_SERVER
    MS_DEL_LOGON : asynchronous call
    MsDelLogon
    MsIBuildLogonData: prot = MS_LOGON_P4 (2)
    NiBufIAlloc: malloc MSLIB-BUF, to 32110 bytes
    NiBufSend starting
    NiIWrite: hdl 25 sent data (wrt=132,pac=1,MESG_IO)
    MsINiWrite: sent 132 bytes
    MsISnd2: send msg (ms hdr/msg 110/22 bytes) to name           MSG_SERVER, type 0, key -
    MsSndName: MS_DEL_LOGON ok
    Send 22 bytes to MSG_SERVER
    MS_DEL_LOGON : asynchronous call
    MsDelLogon
    MsIBuildLogonData: prot = MS_LOGON_P4S (2)
    NiBufIAlloc: malloc MSLIB-BUF, to 32110 bytes
    NiBufSend starting
    NiIWrite: hdl 25 sent data (wrt=132,pac=1,MESG_IO)
    MsINiWrite: sent 132 bytes
    MsISnd2: send msg (ms hdr/msg 110/22 bytes) to name           MSG_SERVER, type 0, key -
    MsSndName: MS_DEL_LOGON ok
    Send 22 bytes to MSG_SERVER
    MS_DEL_LOGON : asynchronous call
    MsDelLogon
    MsIBuildLogonData: prot = MS_LOGON_IIOP (2)
    NiBufIAlloc: malloc MSLIB-BUF, to 32110 bytes
    NiBufSend starting
    NiIWrite: hdl 25 sent data (wrt=132,pac=1,MESG_IO)
    MsINiWrite: sent 132 bytes
    MsISnd2: send msg (ms hdr/msg 110/22 bytes) to name           MSG_SERVER, type 0, key -
    MsSndName: MS_DEL_LOGON ok
    Send 22 bytes to MSG_SERVER
    MS_DEL_LOGON : asynchronous call
    MsDelLogon
    MsIBuildLogonData: prot = MS_LOGON_IIOPS (2)
    NiBufIAlloc: malloc MSLIB-BUF, to 32110 bytes
    NiBufSend starting
    NiIWrite: hdl 25 sent data (wrt=132,pac=1,MESG_IO)
    MsINiWrite: sent 132 bytes
    MsISnd2: send msg (ms hdr/msg 110/22 bytes) to name           MSG_SERVER, type 0, key -
    MsSndName: MS_DEL_LOGON ok
    Send 22 bytes to MSG_SERVER
    MS_DEL_LOGON : asynchronous call
    MsDelLogon
    MsIBuildLogonData: prot = MS_LOGON_TELNET (2)
    NiBufIAlloc: malloc MSLIB-BUF, to 32110 bytes
    NiBufSend starting
    NiIWrite: hdl 25 sent data (wrt=132,pac=1,MESG_IO)
    MsINiWrite: sent 132 bytes
    MsISnd2: send msg (ms hdr/msg 110/22 bytes) to name           MSG_SERVER, type 0, key -
    MsSndName: MS_DEL_LOGON ok
    Send 22 bytes to MSG_SERVER
    MS_DEL_LOGON : asynchronous call
    DpIJ2eeShutdown: j2ee state = SHUTDOWN
    NiBufISelUpdate: new STAT --- (r--) for hdl 33 in set0
    NiSelIListRemove: remove hdl 33 [4] from buf-list (1) of set0
    NiBufISelRemove: remove hdl 33 from set0
    SiSelPRemove: removed sock 14 (pos=4)
    NiSelIRemove: removed hdl 33
    DpDelSocketInfo: del info for nihdl 33 (pos/type=4/8)
    NiICloseHandle: shutdown and close hdl 33/sock 14
    NiBufIClose: clear extension for hdl 33
    SemRq( 34, 1, -1) enter
    SemRq( 34, 1, -1) exit rtc=0, 0us
    SemRel( 34, 1 ) enter
    SemRel( 34, 1 ) exit rtc=0, 0us
    DpMBufRead: read server list from MBUF (1 entries)
    SemRq( 34, 1, -1) enter
    SemRq( 34, 1, -1) exit rtc=0, 0us
    DpMBufMod: name [haidrislm_SLM_00                        ], types 191 state 3 (0x0 0x0 0x0 0x0)
    SemRel( 34, 1 ) enter
    SemRel( 34, 1 ) exit rtc=0, 0us
    DpMBufMod: call hooks for event MBUF_DPEVT_DSTATE (5->3)
    AdGetSelfIdentRecord: > <
    AdCvtRecToExt: opcode 60 (AD_SELFIDENT), ser 0, ex 0, errno 0
    AdCallRegisteredCvtToExt: opcode 60
    AdCallRegisteredCvtToExt: opcode 60 call 1b08b80
    AdCallRegisteredCvtToExt: opcode 60 exit rc=SAP_O_K
    AdCvtRecToExt: opcode 40 (AD_MSBUF), ser 0, ex 0, errno 0
    AdCallRegisteredCvtToExt: opcode 40
    AdCallRegisteredCvtToExt: opcode 40 call 1b05120
    AdCallRegisteredCvtToExt: opcode 40 exit rc=SAP_O_K
    AdCvtRecToExt: opcode 40 (AD_MSBUF), ser 0, ex 0, errno 0
    AdCallRegisteredCvtToExt: opcode 40
    AdCallRegisteredCvtToExt: opcode 40 call 1b05120
    AdCallRegisteredCvtToExt: opcode 40 exit rc=SAP_O_K
    AdCvtRecToExt: opcode 40 (AD_MSBUF), ser 0, ex 0, errno 0
    AdCallRegisteredCvtToExt: opcode 40
    AdCallRegisteredCvtToExt: opcode 40 call 1b05120
    AdCallRegisteredCvtToExt: opcode 40 exit rc=SAP_O_K
    AdCvtRecToExt: opcode 40 (AD_MSBUF), ser 0, ex 0, errno 0
    AdCallRegisteredCvtToExt: opcode 40
    AdCallRegisteredCvtToExt: opcode 40 call 1b05120
    AdCallRegisteredCvtToExt: opcode 40 exit rc=SAP_O_K
    AdCvtRecToExt: opcode 40 (AD_MSBUF), ser 0, ex 0, errno 0
    AdCallRegisteredCvtToExt: opcode 40
    AdCallRegisteredCvtToExt: opcode 40 call 1b05120
    AdCallRegisteredCvtToExt: opcode 40 exit rc=SAP_O_K
    AdCvtRecToExt: opcode 40 (AD_MSBUF), ser 0, ex 0, errno 0
    AdCallRegisteredCvtToExt: opcode 40
    AdCallRegisteredCvtToExt: opcode 40 call 1b05120
    AdCallRegisteredCvtToExt: opcode 40 exit rc=SAP_O_K
    AdCvtRecToExt: opcode 40 (AD_MSBUF), ser 0, ex 0, errno 0
    AdCallRegisteredCvtToExt: opcode 40
    AdCallRegisteredCvtToExt: opcode 40 call 1b05120
    AdCallRegisteredCvtToExt: opcode 40 exit rc=SAP_O_K
    AdCvtRecToExt: opcode 40 (AD_MSBUF), ser 0, ex 0, errno 0
    AdCallRegisteredCvtToExt: opcode 40
    AdCallRegisteredCvtToExt: opcode 40 call 1b05120
    AdCallRegisteredCvtToExt: opcode 40 exit rc=SAP_O_K
    AdCvtRecToExt: opcode 40 (AD_MSBUF), ser 0, ex 0, errno 0
    AdCallRegisteredCvtToExt: opcode 40
    AdCallRegisteredCvtToExt: opcode 40 call 1b05120
    AdCallRegisteredCvtToExt: opcode 40 exit rc=SAP_O_K
    AdCvtRecToExt: opcode 40 (AD_MSBUF), ser 0, ex 0, errno 0
    AdCallRegisteredCvtToExt: opcode 40
    AdCallRegisteredCvtToExt: opcode 40 call 1b05120
    AdCallRegisteredCvtToExt: opcode 40 exit rc=SAP_O_K
    DpWpBlksLow: wp_blks_in_queue/limit/max = 1/800/1000
    DpLockWpBlkEx: lock wp ca_blk 1
    make DISP owner of wp_ca_blk 1
    SemRq( 2, 1, -1) enter
    SemRq( 2, 1, -1) exit rtc=0, 0us
    SemRel( 2, 1 ) enter
    SemRel( 2, 1 ) exit rtc=0, 0us
    DpRqIPutIntoQ: put elem in queue DIA, elems=4
    DpRqPutIntoQueue: put request into queue (reqtype 1, prio LOW, rq_id 22)
    MBUF server state SHUTDOWN
    DpModState: change state STARTING -> SHUTDOWN
    NiBufIAlloc: malloc MSLIB-BUF, to 32110 bytes
    NiBufSend starting
    NiIWrite: hdl 25 sent data (wrt=110,pac=1,MESG_IO)
    MsINiWrite: sent 110 bytes
    MsIModState: change state to SHUTDOWN
    AdCvtRecToExt: opcode 21 (AD_RZL_STRG), ser 0, ex 0, errno 0
    AdCallRegisteredCvtToExt: opcode 21
    AdCallRegisteredCvtToExt: opcode 21 call 1b0a360
    AdCvtRecRzlStrgToExt TYPE_WRITE_C TY 32, NL 20, VO 0, VL 40, NA SAPMSSY6_LB        
    AdCvtRecRzlStrgToExt VAL haidrislm_SLM_00                       
    AdCallRegisteredCvtToExt: opcode 21 exit rc=SAP_O_K
    eyec AD-EYECATCH   vers 1   type AD_REQUEST   rec_size 104   rec_no 1
    R# Op S# Ex Er  |  Data
    ----------------+------
    0 21 0  0  0 | 
    AdCvtRecToInt: opcode 21 (AD_RZL_STRG), ser 0, ex 0, errno 0
    AdCallRegisteredCvtToInt: opcode 21
    AdCallRegisteredCvtToInt: opcode 21 call 1b09200
    AdCvtRecRzlStrgToInt TYPE_WRITE_C TY 32, NL 20, VO 0, VL 40, NA SAPMSSY6_LB        
    AdCvtRecRzlStrgToInt VAL haidrislm_SLM_00                       
    AdCallRegisteredCvtToInt: opcode 21 exit rc=SAP_O_K
    AdCvtRecToExt: opcode 21 (AD_RZL_STRG), ser 0, ex 1, errno 0
    AdCallRegisteredCvtToExt: opcode 21
    AdCallRegisteredCvtToExt: opcode 21 call 1b0a360
    AdCvtRecRzlStrgToExt TYPE_WRITE_C TY 32, NL 20, VO 0, VL 40, NA SAPMSSY6_LB        
    AdCvtRecRzlStrgToExt VAL haidrislm_SLM_00                       
    AdCallRegisteredCvtToExt: opcode 21 exit rc=SAP_O_K
    eyec AD-EYECATCH   vers 1   type AD_REPLY     rec_size 104   rec_no 1
    R# Op S# Ex Er  |  Data
    ----------------+------
    0 21 0  1  0 | 
    DpTriggerAutoabap: trigger auto abap (only load balance)
    DpTriggerAutoabap: add to ad storage : >SAPMSSY6_LB         < >haidrislm_SLM_00                        <
    SemRq( 2, 1, -1) enter
    SemRq( 2, 1, -1) exit rtc=0, 0us
    SemRel( 2, 1 ) enter
    SemRel( 2, 1 ) exit rtc=0, 0us
    DpRqIPutIntoQ: put elem in queue DIA, elems=5
    DpRqPutIntoQueue: put request into queue (reqtype 1, prio LOW, rq_id 23)
    DpModState: change server state from STARTING to SHUTDOWN
    DpHalt: switch off Shared memory profiling
    ShmProtect( 57, 3 )
    ShmProtect: shmat key 57 prot 3/0 done
    ShmProtect(SHM_PROFILE, SHM_PROT_RW
    ShmProtect( 57, 1 )
    ShmProtect: shmat key 57 prot 1/4096 done
    ShmProtect(SHM_PROFILE, SHM_PROT_RD
    DpWakeUpWps: wake up all wp's
    DpHalt: stop work processes
    DpHalt: stop gateway
    killing proc (12538) (SOFT_KILL)
    DpHalt: stop icman
    killing proc (12539) (SOFT_KILL)
    DpHalt: terminate gui connections
    send SHUTDOWN to REM TM 19
    DpWpBlksLow: wp_blks_in_queue/limit/max = 2/800/1000
    DpLockWpBlkEx: lock wp ca_blk 2
    return errno (-17) to T19
    DpTmSend: errormsg without overhead: use mode 0
    NiBufIAlloc: malloc NiBufadm, to 0 bytes
    DpTmSend: try to send 14 bytes to T19/M0
    NiBufSend starting
    NiIWrite: hdl 49 sent data (wrt=14,pac=1,MESG_IO)
    REL WP ca_blk 2
    SemRq( 4, 1, -1) enter
    SemRq( 4, 1, -1) exit rtc=0, 0us
    SemRel( 4, 1 ) enter
    SemRel( 4, 1 ) exit rtc=0, 0us
    set status of T19 to TM_DISCONNECTED
    NiBufISelUpdate: new MODE -- (r-) for hdl 49 in set0
    SiSelPSet: set events of sock 15 to: ---
    NiBufISelRemove: remove hdl 49 from set0
    SiSelPRemove: removed last sock 15 (pos=7)
    NiSelIRemove: removed hdl 49
    DpDelSocketInfo: del info for nihdl 49 (pos/type=6/3)
    NiICloseHandle: shutdown and close hdl 49/sock 15
    NiBufIClose: clear extension for hdl 49
    dp_tm_adm[19].stat = DP_SLOT_FREE
    DpGetSchedule: next schedule 1339051590/487600
    DpGetSchedule: no schedule found
    DpITmSlotRelease: release slot 19
    SemRq( 4, 1, -1) enter
    SemRq( 4, 1, -1) exit rtc=0, 0us
    DpListRemove: remove elem 19 from tmadm_inuse_list
    DpListRemove: 19 elems in tmadm_inuse_list
    DpListInsert: insert elem 19 into tmadm_free_list (at begin)
    DpListInsert: 182 elems in tmadm_free_list
    SemRel( 4, 1 ) enter
    SemRel( 4, 1 ) exit rtc=0, 0us
    DpHalt: wait for end of work processes
    DpHalt: wait for end of gateway
    kill(12538,0) successful -> process alive
    DpHalt: waiting for termination of gateway ...
    NiWait: sleep (1000ms) ...
    NiISelect: timeout 1000ms
    NiISelect: maximum fd=16
    NiISelect: read-mask is NULL
    NiISelect: write-mask is NULL
    Thu Jun  7 11:46:49 2012
    NiISelect: TIMEOUT occured (1000ms)
    kill(12538,0) -> ESRCH: process died
    DpHalt: wait for end of icman
    kill(12539,0) successful -> process alive
    DpHalt: waiting for termination of icman ...
    NiWait: sleep (1000ms) ...
    NiISelect: timeout 1000ms
    NiISelect: maximum fd=16
    NiISelect: read-mask is NULL
    NiISelect: write-mask is NULL
    Thu Jun  7 11:46:50 2012
    NiISelect: TIMEOUT occured (1000ms)
    kill(12539,0) successful -> process alive
    DpHalt: waiting for termination of icman ...
    NiWait: sleep (1000ms) ...
    NiISelect: timeout 1000ms
    NiISelect: maximum fd=16
    NiISelect: read-mask is NULL
    NiISelect: write-mask is NULL
    Thu Jun  7 11:46:51 2012
    NiISelect: TIMEOUT occured (1000ms)
    kill(12539,0) successful -> process alive
    DpHalt: waiting for termination of icman ...
    NiWait: sleep (1000ms) ...
    NiISelect: timeout 1000ms
    NiISelect: maximum fd=16
    NiISelect: read-mask is NULL
    NiISelect: write-mask is NULL
    Thu Jun  7 11:46:52 2012
    NiISelect: TIMEOUT occured (1000ms)
    kill(12539,0) successful -> process alive
    DpHalt: waiting for termination of icman ...
    NiWait: sleep (1000ms) ...
    NiISelect: timeout 1000ms
    NiISelect: maximum fd=16
    NiISelect: read-mask is NULL
    NiISelect: write-mask is NULL
    Thu Jun  7 11:46:53 2012
    NiISelect: TIMEOUT occured (1000ms)
    kill(12539,0) successful -> process alive
    DpHalt: waiting for termination of icman ...
    NiWait: sleep (1000ms) ...
    NiISelect: timeout 1000ms
    NiISelect: maximum fd=16
    NiISelect: read-mask is NULL
    NiISelect: write-mask is NULL
    Thu Jun  7 11:46:54 2012
    NiISelect: TIMEOUT occured (1000ms)
    kill(12539,0) successful -> process alive
    DpHalt: waiting for termination of icman ...
    NiWait: sleep (1000ms) ...
    NiISelect: timeout 1000ms
    NiISelect: maximum fd=16
    NiISelect: read-mask is NULL
    NiISelect: write-mask is NULL
    Thu Jun  7 11:46:55 2012
    NiISelect: TIMEOUT occured (1000ms)
    kill(12539,0) successful -> process alive
    DpHalt: waiting for termination of icman ...
    NiWait: sleep (1000ms) ...
    NiISelect: timeout 1000ms
    NiISelect: maximum fd=16
    NiISelect: read-mask is NULL
    NiISelect: write-mask is NULL
    Thu Jun  7 11:46:56 2012
    NiISelect: TIMEOUT occured (1000ms)
    kill(12539,0) successful -> process alive
    DpHalt: waiting for termination of icman ...
    NiWait: sleep (1000ms) ...
    NiISelect: timeout 1000ms
    NiISelect: maximum fd=16
    NiISelect: read-mask is NULL
    NiISelect: write-mask is NULL
    Thu Jun  7 11:46:57 2012
    NiISelect: TIMEOUT occured (1000ms)
    kill(12539,0) successful -> process alive
    DpHalt: waiting for termination of icman ...
    NiWait: sleep (1000ms) ...
    NiISelect: timeout 1000ms
    NiISelect: maximum fd=16
    NiISelect: read-mask is NULL
    NiISelect: write-mask is NULL
    Thu Jun  7 11:46:58 2012
    NiISelect: TIMEOUT occured (1000ms)
    kill(12539,0) successful -> process alive
    DpHalt: waiting for termination of icman ...
    NiWait: sleep (1000ms) ...
    NiISelect: timeout 1000ms
    NiISelect: maximum fd=16
    NiISelect: read-mask is NULL
    NiISelect: write-mask is NULL
    Thu Jun  7 11:46:59 2012
    NiISelect: TIMEOUT occured (1000ms)
    kill(12539,0) successful -> process alive
    DpHalt: waiting for termination of icman ...
    NiWait: sleep (1000ms) ...
    NiISelect: timeout 1000ms
    NiISelect: maximum fd=16
    NiISelect: read-mask is NULL
    NiISelect: write-mask is NULL
    Thu Jun  7 11:47:00 2012
    NiISelect: TIMEOUT occured (1000ms)
    kill(12539,0) successful -> process alive
    DpHalt: waiting for termination of icman ...
    NiWait: sleep (1000ms) ...
    NiISelect: timeout 1000ms
    NiISelect: maximum fd=16
    NiISelect: read-mask is NULL
    NiISelect: write-mask is NULL
    Thu Jun  7 11:47:01 2012
    NiISelect: TIMEOUT occured (1000ms)
    kill(12539,0) successful -> process alive
    DpHalt: waiting for termination of icman ...
    NiWait: sleep (1000ms) ...
    NiISelect: timeout 1000ms
    NiISelect: maximum fd=16
    NiISelect: read-mask is NULL
    NiISelect: write-mask is NULL
    Thu Jun  7 11:47:03 2012
    NiISelect: TIMEOUT occured (1000ms)
    kill(12539,0) -> ESRCH: process died
    kill(12540,0) successful -> process alive
    DpHalt: wait for end of J2EE server
    kill(12540,0) successful -> process alive
    DpHalt: waiting for termination of J2EE server ...
    NiWait: sleep (1000ms) ...
    NiISelect: timeout 1000ms
    NiISelect: maximum fd=16
    NiISelect: read-mask is NULL
    NiISelect: write-mask is NULL
    Thu Jun  7 11:47:04 2012
    NiISelect: TIMEOUT occured (1000ms)
    kill(12540,0) successful -> process alive
    DpHalt: waiting for termination of J2EE server ...
    NiWait: sleep (1000ms) ...
    NiISelect: timeout 1000ms
    NiISelect: maximum fd=16
    NiISelect: read-mask is NULL
    NiISelect: write-mask is NULL
    Thu Jun  7 11:47:05 2012
    NiISelect: TIMEOUT occured (1000ms)
    kill(12540,0) successful -> process alive
    DpHalt: waiting for termination of J2EE server ...
    NiWait: sleep (1000ms) ...
    NiISelect: timeout 1000ms
    NiISelect: maximum fd=16
    NiISelect: read-mask is NULL
    NiISelect: write-mask is NULL
    Thu Jun  7 11:47:06 2012
    NiISelect: TIMEOUT occured (1000ms)
    kill(12540,0) successful -> process alive
    DpHalt: waiting for termination of J2EE server ...
    NiWait: sleep (1000ms) ...
    NiISelect: timeout 1000ms
    NiISelect: maximum fd=16
    NiISelect: read-mask is NULL
    NiISelect: write-mask is NULL
    Thu Jun  7 11:47:07 2012
    NiISelect: TIMEOUT occured (1000ms)
    kill(12540,0) successful -> process alive
    DpHalt: waiting for termination of J2EE server ...
    NiWait: sleep (1000ms) ...
    NiISelect: timeout 1000ms
    NiISelect: maximum fd=16
    NiISelect: read-mask is NULL
    NiISelect: write-mask is NULL
    Thu Jun  7 11:47:08 2012
    NiISelect: TIMEOUT occured (1000ms)
    kill(12540,0) successful -> process alive
    DpHalt: waiting for termination of J2EE server ...
    NiWait: sleep (1000ms) ...
    NiISelect: timeout 1000ms
    NiISelect: maximum fd=16
    NiISelect: read-mask is NULL
    NiISelect: write-mask is NULL
    Thu Jun  7 11:47:09 2012
    NiISelect: TIMEOUT occured (1000ms)
    kill(12540,0) successful -> process alive
    DpHalt: waiting for termination of J2EE server ...
    NiWait: sleep (1000ms) ...
    NiISelect: timeout 1000ms
    NiISelect: maximum fd=16
    NiISelect: read-mask is NULL
    NiISelect: write-mask is NULL
    Thu Jun  7 11:47:10 2012
    NiISelect: TIMEOUT occured (1000ms)
    kill(12540,0) successful -> process alive
    DpHalt: waiting for termination of J2EE server ...
    NiWait: sleep (1000ms) ...
    NiISelect: timeout 1000ms
    NiISelect: maximum fd=16
    NiISelect: read-mask is NULL
    NiISelect: write-mask is NULL
    Thu Jun  7 11:47:11 2012
    NiISelect: TIMEOUT occured (1000ms)
    kill(12540,0) successful -> process alive
    DpHalt: waiting for termination of J2EE server ...
    NiWait: sleep (1000ms) ...
    NiISelect: timeout 1000ms
    NiISelect: maximum fd=16
    NiISelect: read-mask is NULL
    NiISelect: write-mask is NULL
    Thu Jun  7 11:47:12 2012
    NiISelect: TIMEOUT occured (1000ms)
    kill(12540,0) successful -> process alive
    DpHalt: waiting for termination of J2EE server ...
    NiWait: sleep (1000ms) ...
    NiISelect: timeout 1000ms
    NiISelect: maximum fd=16
    NiISelect: read-mask is NULL
    NiISelect: write-mask is NULL
    Thu Jun  7 11:47:13 2012
    NiISelect: TIMEOUT occured (1000ms)
    kill(12540,0) successful -> process alive
    DpHalt: waiting for termination of J2EE server ...
    NiWait: sleep (1000ms) ...
    NiISelect: timeout 1000ms
    NiISelect: maximum fd=16
    NiISelect: read-mask is NULL
    NiISelect: write-mask is NULL
    Thu Jun  7 11:47:14 2012
    NiISelect: TIMEOUT occured (1000ms)
    kill(12540,0) successful -> process alive
    DpHalt: waiting for termination of J2EE server ...
    NiWait: sleep (1000ms) ...
    NiISelect: timeout 1000ms
    NiISelect: maximum fd=16
    NiISelect: read-mask is NULL
    NiISelect: write-mask is NULL
    Thu Jun  7 11:47:15 2012
    NiISelect: TIMEOUT occured (1000ms)
    kill(12540,0) successful -> process alive
    DpHalt: waiting for termination of J2EE server ...
    NiWait: sleep (1000ms) ...
    NiISelect: timeout 1000ms
    NiISelect: maximum fd=16
    NiISelect: read-mask is NULL
    NiISelect: write-mask is NULL
    Thu Jun  7 11:47:16 2012
    NiISelect: TIMEOUT occured (1000ms)
    kill(12540,0) successful -> process alive
    DpHalt: waiting for termination of J2EE server ...
    NiWait: sleep (1000ms) ...
    NiISelect: timeout 1000ms
    NiISelect: maximum fd=16
    NiISelect: read-mask is NULL
    NiISelect: write-mask is NULL
    Thu Jun  7 11:47:17 2012
    NiISelect: TIMEOUT occured (1000ms)
    kill(12540,0) successful -> process alive
    DpHalt: waiting for termination of J2EE server ...
    NiWait: sleep (1000ms) ...
    NiISelect: timeout 1000ms
    NiISelect: maximum fd=16
    NiISelect: read-mask is NULL
    NiISelect: write-mask is NULL
    Thu Jun  7 11:47:18 2012
    NiISelect: TIMEOUT occured (1000ms)
    kill(12540,0) successful -> process alive
    DpHalt: waiting for termination of J2EE server ...
    NiWait: sleep (1000ms) ...
    NiISelect: timeout 1000ms
    NiISelect: maximum fd=16
    NiISelect: read-mask is NULL
    NiISelect: write-mask is NULL
    Thu Jun  7 11:47:19 2012
    NiISelect: TIMEOUT occured (1000ms)
    kill(12540,0) successful -> process alive
    DpHalt: waiting for termination of J2EE server ...
    NiWait: sleep (1000ms) ...
    NiISelect: timeout 1000ms
    NiISelect: maximum fd=16
    NiISelect: read-mask is NULL
    NiISelect: write-mask is NULL
    Thu Jun  7 11:47:20 2012
    NiISelect: TIMEOUT occured (1000ms)
    kill(12540,0) successful -> process alive
    DpHalt: waiting for termination of J2EE server ...
    NiWait: sleep (1000ms) ...
    NiISelect: timeout 1000ms
    NiISelect: maximum fd=16
    NiISelect: read-mask is NULL
    NiISelect: write-mask is NULL
    Thu Jun  7 11:47:21 2012
    NiISelect: TIMEOUT occured (1000ms)
    kill(12540,0) successful -> process alive
    DpHalt: waiting for termination of J2EE server ...
    NiWait: sleep (1000ms) ...
    NiISelect: timeout 1000ms
    NiISelect: maximum fd=16
    NiISelect: read-mask is NULL
    NiISelect: write-mask is NULL
    Thu Jun  7 11:47:22 2012
    NiISelect: TIMEOUT occured (1000ms)
    kill(12540,0) successful -> process alive
    DpHalt: waiting for termination of J2EE server ...
    NiWait: sleep (1000ms) ...
    NiISelect: timeout 1000ms
    NiISelect: maximum fd=16
    NiISelect: read-mask is NULL
    NiISelect: write-mask is NULL
    Thu Jun  7 11:47:23 2012
    NiISelect: TIMEOUT occured (1000ms)
    kill(12540,0) successful -> process alive
    DpHalt: waiting for termination of J2EE server ...
    NiWait: sleep (1000ms) ...
    NiISelect: timeout 1000ms
    NiISelect: maximum fd=16
    NiISelect: read-mask is NULL
    NiISelect: write-mask is NULL
    Thu Jun  7 11:47:24 2012
    NiISelect: TIMEOUT occured (1000ms)
    kill(12540,0) successful -> process alive
    DpHalt: waiting for termination of J2EE server ...
    NiWait: sleep (1000ms) ...
    NiISelect: timeout 1000ms
    NiISelect: maximum fd=16
    NiISelect: read-mask is NULL
    NiISelect: write-mask is NULL
    Thu Jun  7 11:47:25 2012
    NiISelect: TIMEOUT occured (1000ms)
    kill(12540,0) successful -> process alive
    DpHalt: waiting for termination of J2EE server ...
    NiWait: sleep (1000ms) ...
    NiISelect: timeout 1000ms
    NiISelect: maximum fd=16
    NiISelect: read-mask is NULL
    NiISelect: write-mask is NULL
    Thu Jun  7 11:47:26 2012
    NiISelect: TIMEOUT occured (1000ms)
    kill(12540,0) successful -> process alive
    DpHalt: waiting for termination of J2EE server ...
    NiWait: sleep (1000ms) ...
    NiISelect: timeout 1000ms
    NiISelect: maximum fd=16
    NiISelect: read-mask is NULL
    NiISelect: write-mask is NULL
    Thu Jun  7 11:47:27 2012
    NiISelect: TIMEOUT occured (1000ms)
    kill(12540,0) successful -> process alive
    DpHalt: waiting for termination of J2EE server ...
    NiWait: sleep (1000ms) ...
    NiISelect: timeout 1000ms
    NiISelect: maximum fd=16
    NiISelect: read-mask is NULL
    NiISelect: write-mask is NULL
    Thu Jun  7 11:47:28 2012
    NiISelect: TIMEOUT occured (1000ms)
    kill(12540,0) successful -> process alive
    DpHalt: waiting for termination of J2EE server ...
    NiWait: sleep (1000ms) ...
    NiISelect: timeout 1000ms
    NiISelect: maximum fd=16
    NiISelect: read-mask is NULL
    NiISelect: write-mask is NULL
    Thu Jun  7 11:47:29 2012
    NiISelect: TIMEOUT occured (1000ms)
    kill(12540,0) successful -> process alive
    DpHalt: waiting for termination of J2EE server ...
    NiWait: sleep (1000ms) ...
    NiISelect: timeout 1000ms
    NiISelect: maximum fd=16
    NiISelect: read-mask is NULL
    NiISelect: write-mask is NULL
    Thu Jun  7 11:47:30 2012
    NiISelect: TIMEOUT occured (1000ms)
    kill(12540,0) successful -> process alive
    DpHalt: waiting for termination of J2EE server ...
    NiWait: sleep (1000ms) ...
    NiISelect: timeout 1000ms
    NiISelect: maximum fd=16
    NiISelect: read-mask is NULL
    NiISelect: write-mask is NULL
    Thu Jun  7 11:47:31 2012
    NiISelect: TIMEOUT occured (1000ms)
    kill(12540,0) successful -> process alive
    DpHalt: waiting for termination of J2EE server ...
    NiWait: sleep (1000ms) ...
    NiISelect: timeout 1000ms
    NiISelect: maximum fd=16
    NiISelect: read-mask is NULL
    NiISelect: write-mask is NULL
    Thu Jun  7 11:47:32 2012
    NiISelect: TIMEOUT occured (1000ms)
    kill(12540,0) successful -> process alive
    DpHalt: waiting for termination of J2EE server ...
    NiWait: sleep (1000ms) ...
    NiISelect: timeout 1000ms
    NiISelect: maximum fd=16
    NiISelect: read-mask is NULL
    NiISelect: write-mask is NULL
    Thu Jun  7 11:47:33 2012
    NiISelect: TIMEOUT occured (1000ms)
    kill(12540,0) successful -> process alive
    DpHalt: waiting for termination of J2EE server ...
    NiWait: sleep (1000ms) ...
    NiISelect: timeout 1000ms
    NiISelect: maximum fd=16
    NiISelect: read-mask is NULL
    NiISelect: write-mask is NULL
    Thu Jun  7 11:47:34 2012
    NiISelect: TIMEOUT occured (1000ms)
    kill(12540,0) successful -> process alive
    DpHalt: waiting for termination of J2EE server ...
    NiWait: sleep (1000ms) ...
    NiISelect: timeout 1000ms
    NiISelect: maximum fd=16
    NiISelect: read-mask is NULL
    NiISelect: write-mask is NULL
    Thu Jun  7 11:47:35 2012
    NiISelect: TIMEOUT occured (1000ms)
    kill(12540,0) successful -> process alive
    DpHalt: waiting for termination of J2EE server ...
    NiWait: sleep (1000ms) ...
    NiISelect: timeout 1000ms
    NiISelect: maximum fd=16
    NiISelect: read-mask is NULL
    NiISelect: write-mask is NULL
    Thu Jun  7 11:47:36 2012
    NiISelect: TIMEOUT occured (1000ms)
    kill(12540,0) successful -> process alive
    DpHalt: waiting for termination of J2EE server ...
    NiWait: sleep (1000ms) ...
    NiISelect: timeout 1000ms
    NiISelect: maximum fd=16
    NiISelect: read-mask is NULL
    NiISelect: write-mask is NULL
    Thu Jun  7 11:47:37 2012
    NiISelect: TIMEOUT occured (1000ms)
    kill(12540,0) successful -> process alive
    DpHalt: waiting for termination of J2EE server ...
    NiWait: sleep (1000ms) ...
    NiISelect: timeout 1000ms
    NiISelect: maximum fd=16
    NiISelect: read-mask is NULL
    NiISelect: write-mask is NULL
    Thu Jun  7 11:47:38 2012
    NiISelect: TIMEOUT occured (1000ms)
    kill(12540,0) successful -> process alive
    DpHalt: waiting for termination of J2EE server ...
    NiWait: sleep (1000ms) ...
    NiISelect: timeout 1000ms
    NiISelect: maximum fd=16
    NiISelect: read-mask is NULL
    NiISelect: write-mask is NULL
    Thu Jun  7 11:47:39 2012
    NiISelect: TIMEOUT occured (1000ms)
    kill(12540,0) successful -> process alive
    DpHalt: waiting for termination of J2EE server ...
    NiWait: sleep (1000ms) ...
    NiISelect: timeout 1000ms
    NiISelect: maximum fd=16
    NiISelect: read-mask is NULL
    NiISelect: write-mask is NULL
    Thu Jun  7 11:47:40 2012
    NiISelect: TIMEOUT occured (1000ms)
    kill(12540,0) successful -> process alive
    DpHalt: waiting for termination of J2EE server ...
    NiWait: sleep (1000ms) ...
    NiISelect: timeout 1000ms
    NiISelect: maximum fd=16
    NiISelect: read-mask is NULL
    NiISelect: write-mask is NULL
    Thu Jun  7 11:47:41 2012
    NiISelect: TIMEOUT occured (1000ms)
    kill(12540,0) successful -> process alive
    DpHalt: waiting for termination of J2EE server ...
    NiWait: sleep (1000ms) ...
    NiISelect: timeout 1000ms
    NiISelect: maximum fd=16
    NiISelect: read-mask is NULL
    NiISelect: write-mask is NULL
    Thu Jun  7 11:47:42 2012
    NiISelect: TIMEOUT occured (1000ms)
    kill(12540,0) successful -> process alive
    DpHalt: waiting for termination of J2EE server ...
    NiWait: sleep (1000ms) ...
    NiISelect: timeout 1000ms
    NiISelect: maximum fd=16
    NiISelect: read-mask is NULL
    NiISelect: write-mask is NULL
    Thu Jun  7 11:47:43 2012
    NiISelect: TIMEOUT occured (1000ms)
    kill(12540,0) successful -> process alive
    DpHalt: waiting for termination of J2EE server ...
    NiWait: sleep (1000ms) ...
    NiISelect: timeout 1000ms
    NiISelect: maximum fd=16
    NiISelect: read-mask is NULL
    NiISelect: write-mask is NULL
    Thu Jun  7 11:47:44 2012
    NiISelect: TIMEOUT occured (1000ms)
    kill(12540,0) successful -> process alive
    DpHalt: waiting for termination of J2EE server ...
    NiWait: sleep (1000ms) ...
    NiISelect: timeout 1000ms
    NiISelect: maximum fd=16
    NiISelect: read-mask is NULL
    NiISelect: write-mask is NULL
    Thu Jun  7 11:47:45 2012
    NiISelect: TIMEOUT occured (1000ms)
    kill(12540,0) successful -> process alive
    DpHalt: waiting for termination of J2EE server ...
    NiWait: sleep (1000ms) ...
    NiISelect: timeout 1000ms
    NiISelect: maximum fd=16
    NiISelect: read-mask is NULL
    NiISelect: write-mask is NULL
    Thu Jun  7 11:47:46 2012
    NiISelect: TIMEOUT occured (1000ms)
    kill(12540,0) successful -> process alive
    DpHalt: waiting for termination of J2EE server ...
    NiWait: sleep (1000ms) ...
    NiISelect: timeout 1000ms
    NiISelect: maximum fd=16
    NiISelect: read-mask is NULL
    NiISelect: write-mask is NULL
    Thu Jun  7 11:47:47 2012
    NiISelect: TIMEOUT occured (1000ms)
    kill(12540,0) successful -> process alive
    DpHalt: waiting for termination of J2EE server ...
    NiWait: sleep (1000ms) ...
    NiISelect: timeout 1000ms
    NiISelect: maximum fd=16
    NiISelect: read-mask is NULL
    NiISelect: write-mask is NULL
    Thu Jun  7 11:47:48 2012
    NiISelect: TIMEOUT occured (1000ms)
    kill(12540,0) successful -> process alive
    DpHalt: waiting for termination of J2EE server ...
    NiWait: sleep (1000ms) ...
    NiISelect: timeout 1000ms
    NiISelect: maximum fd=16
    NiISelect: read-mask is NULL
    NiISelect: write-mask is NULL
    Thu Jun  7 11:47:49 2012
    NiISelect: TIMEOUT occured (1000ms)
    kill(12540,0) successful -> process alive
    DpHalt: waiting for termination of J2EE server ...
    NiWait: sleep (1000ms) ...
    NiISelect: timeout 1000ms
    NiISelect: maximum fd=16
    NiISelect: read-mask is NULL
    NiISelect: write-mask is NULL
    Thu Jun  7 11:47:50 2012
    NiISelect: TIMEOUT occured (1000ms)
    kill(12540,0) successful -> process alive
    DpHalt: waiting for termination of J2EE server ...
    NiWait: sleep (1000ms) ...
    NiISelect: timeout 1000ms
    NiISelect: maximum fd=16
    NiISelect: read-mask is NULL
    NiISelect: write-mask is NULL
    Thu Jun  7 11:47:51 2012
    NiISelect: TIMEOUT occured (1000ms)
    kill(12540,0) successful -> process alive
    DpHalt: waiting for termination of J2EE server ...
    NiWait: sleep (1000ms) ...
    NiISelect: timeout 1000ms
    NiISelect: maximum fd=16
    NiISelect: read-mask is NULL
    NiISelect: write-mask is NULL
    Thu Jun  7 11:47:52 2012
    NiISelect: TIMEOUT occured (1000ms)
    kill(12540,0) successful -> process alive
    DpHalt: waiting for termination of J2EE server ...
    NiWait: sleep (1000ms) ...
    NiISelect: timeout 1000ms
    NiISelect: maximum fd=16
    NiISelect: read-mask is NULL
    NiISelect: write-mask is NULL
    Thu Jun  7 11:47:53 2012
    NiISelect: TIMEOUT occured (1000ms)
    kill(12540,0) successful -> process alive
    DpHalt: waiting for termination of J2EE server ...
    NiWait: sleep (1000ms) ...
    NiISelect: timeout 1000ms
    NiISelect: maximum fd=16
    NiISelect: read-mask is NULL
    NiISelect: write-mask is NULL
    Thu Jun  7 11:47:54 2012
    NiISelect: TIMEOUT occured (1000ms)
    kill(12540,0) successful -> process alive
    DpHalt: waiting for termination of J2EE server ...
    NiWait: sleep (1000ms) ...
    NiISelect: timeout 1000ms
    NiISelect: maximum fd=16
    NiISelect: read-mask is NULL
    NiISelect: write-mask is NULL
    Thu Jun  7 11:47:55 2012
    NiIS

    Hello,
    I think I have the same issue but not the same problem. I started an sld to lmdb synchronisation and after that the system broke down and i had to stop it. But after the restart the disp+work.exe always was yellow and then grey (stopped). Before the synchronisation it worked fine, all was green. 
    Here ist my trace list:
    trc file: "dev_disp", trc level: 1, release: "721"
    sysno      00
    sid        SLM
    systemid   562 (PC with Windows NT)
    relno      7210
    patchlevel 0
    patchno    332
    intno      20020600
    make       multithreaded, Unicode, 64 bit, optimized
    profile    \\fsrvsolman01\sapmnt\SLM\SYS\profile\SLM_DVEBMGS00_fsrvsolman01
    pid        4648
    kernel runs with dp version 139000(ext=121000) (@(#) DPLIB-INT-VERSION-139000-UC)
    length of sys_adm_ext is 592 bytes
    *** SWITCH TRC-HIDE on ***
    ***LOG Q00=> DpSapEnvInit, DPStart (00 4648) [dpxxdisp.c   1323]
      shared lib "dw_xml.dll" version 332 successfully loaded
      shared lib "dw_xtc.dll" version 332 successfully loaded
      shared lib "dw_stl.dll" version 332 successfully loaded
      shared lib "dw_gui.dll" version 332 successfully loaded
      shared lib "dw_mdm.dll" version 332 successfully loaded
      shared lib "dw_rndrt.dll" version 332 successfully loaded
      shared lib "dw_abp.dll" version 332 successfully loaded
      shared lib "dw_sym.dll" version 332 successfully loaded
      shared lib "dw_aci.dll" version 332 successfully loaded
    rdisp/softcancel_sequence :  -> 0,5,-1
    use internal message server connection to port 3901
    rdisp/dynamic_wp_check : 1
    rdisp/calculateLoadAverage : 1
    Tue Dec 09 10:44:27 2014
    *** WARNING => DpNetCheck: NiAddrToHost(1.0.0.0) took 4 seconds
    ***LOG GZZ=> 1 possible network problems detected - check tracefile and adjust the DNS settings [dpxxtool2.c  6525]
    MtxInit: 30000 0 0
    DpSysAdmExtInit: ABAP is active
    DpSysAdmExtInit: VMC (JAVA VM in WP) is not active
    display_tcp_ip: 0
    Set Check Logoff Flags to 0x0
    DpIPCInit2: write dp-profile-values into sys_adm_ext
    DpIPCInit2: start server >fsrvsolman01_SLM_00                     <
    DpShMCreate: sizeof(wp_adm) 63168 (2256)
    DpShMCreate: sizeof(tm_adm) 5517056 (27448)
    DpShMCreate: sizeof(wp_ca_adm) 64000 (64)
    DpShMCreate: sizeof(appc_ca_adm) 64000 (64)
    DpCommTableSize: max/headSize/ftSize/tableSize=500/16/1392064/1392080
    DpShMCreate: sizeof(comm_adm) 1392080 (2768)
    DpSlockTableSize: max/headSize/ftSize/fiSize/tableSize=0/0/0/0/0
    DpShMCreate: sizeof(slock_adm) 0 (296)
    DpFileTableSize: max/headSize/ftSize/tableSize=0/0/0/0
    DpShMCreate: sizeof(file_adm) 0 (80)
    DpShMCreate: sizeof(vmc_adm) 0 (2160)
    DpShMCreate: sizeof(wall_adm) (41664/42896/64/192)
    DpShMCreate: sizeof(gw_adm) 48
    DpShMCreate: sizeof(j2ee_adm) 3952
    DpShMCreate: SHM_DP_ADM_KEY (addr: 0000000002E20050, size: 7203136)
    DpShMCreate: allocated sys_adm at 0000000002E20060
    DpShMCreate: allocated wp_adm_list at 0000000002E230B0
    DpShMCreate: allocated wp_adm at 0000000002E232A0
    DpShMCreate: allocated tm_adm_list at 0000000002E32970
    DpShMCreate: allocated tm_adm at 0000000002E329C0
    DpShMCreate: allocated wp_ca_adm at 00000000033758D0
    DpShMCreate: allocated appc_ca_adm at 00000000033852E0
    DpShMCreate: allocated comm_adm at 0000000003394CF0
    DpShMCreate: system runs without slock table
    DpShMCreate: system runs without file table
    DpShMCreate: allocated vmc_adm_list at 00000000034E8AD0
    DpShMCreate: system runs without vmc_adm
    DpShMCreate: allocated gw_adm at 00000000034E8B80
    DpShMCreate: allocated j2ee_adm at 00000000034E8BC0
    DpShMCreate: allocated ca_info at 00000000034E9B40
    DpShMCreate: allocated wall_adm at 00000000034E9BD0
    Tue Dec 09 10:44:28 2014
    DpCommAttachTable: attached comm table (header=0000000003394CF0/ft=0000000003394D00)
    DpSysAdmIntInit: initialize sys_adm
    rdisp/test_roll : roll strategy is DP_NORMAL_ROLL
    dia token check not active (15 token)
    MBUF state OFF
    DpCommInitTable: init table for 500 entries
    DpRqQInit: keep protect_queue / slots_per_queue 0 / 4001 in sys_adm
    rdisp/queue_size_check_value :  -> on,50,30,40,500,50,500,80
    EmInit: MmSetImplementation( 2 ).
    MM global diagnostic options set: 0
    <ES> client 0 initializing ....
    <ES> EsILock: use Mutex for locking
    <ES> InitFreeList
    <ES> block size is 4096 kByte.
    Using implementation view
    <EsNT> Using memory model view.
    <EsNT> Memory Reset disabled as NT default
    <ES> 1023 blocks reserved for free list.
    ES initialized.
    mm.dump: set maximum dump mem to 192 MB
    mm.dump: set global maximum dump mem to 192 MB
    EsRegisterEmCheck: Register EmGetEsHandles at 00007FF6010B5640
    DpVmcSetActive: set vmc state DP_VMC_NOT_ACTIVE
    MPI: dynamic quotas disabled.
    MPI init: pipes=4000 buffers=1279 reserved=383 quota=10%
    J2EE server info
      start = TRUE
      state = STARTED
      pid = 7620
      argv[0] = D:\usr\sap\SLM\DVEBMGS00\exe\jcontrol.EXE
      argv[1] = D:\usr\sap\SLM\DVEBMGS00\exe\jcontrol.EXE
      argv[2] = pf=\\fsrvsolman01\sapmnt\SLM\SYS\profile\SLM_DVEBMGS00_fsrvsolman01
      argv[3] = -DSAPSTART=1
      argv[4] = -DCONNECT_PORT=65000
      argv[5] = -DSAPSYSTEM=00
      argv[6] = -DSAPSYSTEMNAME=SLM
      argv[7] = -DSAPMYNAME=fsrvsolman01_SLM_00
      argv[8] = -DSAPPROFILE=\\fsrvsolman01\sapmnt\SLM\SYS\profile\SLM_DVEBMGS00_fsrvsolman01
      argv[9] = -DFRFC_FALLBACK=ON
      argv[10] = -DFRFC_FALLBACK_HOST=localhost
      start_lazy = 0
      start_control = SAP J2EE startup framework
    DpJ2eeStart: j2ee state = STARTED
    rdisp/http_min_wait_dia_wp : 1 -> 1
    ***LOG CPS=> DpLoopInit, ICU ( 4.0.1 4.0.1 5.1) [dpxxdisp.c   1709]
    ***LOG Q0K=> DpMsAttach, mscon ( fsrvsolman01) [dpxxdisp.c   12939]
    MBUF state LOADING
    DpStartStopMsg: send start message (myname is >fsrvsolman01_SLM_00                     <)
    DpStartStopMsg: start msg sent to message server o.k.
    CCMS: Initialized monitoring segment of size 60000000.
    CCMS: Initialized CCMS Headers in the shared monitoring segment.
    CCMS: Checking Downtime Configuration of Monitoring Segment.
    CCMS: AlMsUpload called by wp 1024.
    Tue Dec 09 10:44:29 2014
    CCMS: AlMsUpload successful for D:\usr\sap\SLM\DVEBMGS00\log\ALMTTREE.DAT (2221 MTEs).
    Tue Dec 09 10:44:30 2014
    CCMS: start to initalize 3.X shared alert area (first segment).
    DpJ2eeLogin: j2ee state = CONNECTED
    DpMBufHwIdSet: set Hardware-ID
    ***LOG Q1C=> DpMBufHwIdSet [dpxxmbuf.c   1296]
    MBUF state ACTIVE
    DpWpBlksLow: max wp blocks in queue is 800 (80 %)
    MBUF component UP
    DpMsgProcess: 1 server in MBUF
    DpAppcBlksLow: max appc blocks in queue is 500 (50 %)
    Tue Dec 09 10:44:51 2014
    ***LOG Q0I=> NiIRead: P=127.0.0.1:51741; L=127.0.0.1:65000: recv (10054: WSAECONNRESET: Connection reset by peer) [nixxi.cpp 5082]
    *** ERROR => NiIRead: SiRecv failed for hdl 33/sock 1172
        (SI_ECONN_BROKEN/10054; I4; ST; P=127.0.0.1:51741; L=127.0.0.1:65000) [nixxi.cpp    5082]
    DpJ2eeMsgProcess: j2ee state = CONNECTED (NIECONN_BROKEN)
    DpIJ2eeShutdown: send SIGINT to SAP J2EE startup framework (pid=7620)
    *** ERROR => DpProcKill: kill failed [dpntdisp.c   397]
    DpIJ2eeShutdown: j2ee state = SHUTDOWN
    Tue Dec 09 10:45:08 2014
    *** ERROR => DpHdlDeadWp: W0 (pid 4720) died (severity=0, status=0) [dpxxwp.c     1746]
    *** ERROR => DpHdlDeadWp: W1 (pid 6920) died (severity=0, status=0) [dpxxwp.c     1746]
    *** ERROR => DpHdlDeadWp: W2 (pid 1908) died (severity=0, status=0) [dpxxwp.c     1746]
    *** ERROR => DpHdlDeadWp: W3 (pid 5852) died (severity=0, status=0) [dpxxwp.c     1746]
    *** ERROR => DpHdlDeadWp: W4 (pid 6528) died (severity=0, status=0) [dpxxwp.c     1746]
    *** ERROR => DpHdlDeadWp: W5 (pid 4076) died (severity=0, status=0) [dpxxwp.c     1746]
    *** ERROR => DpHdlDeadWp: W6 (pid 6824) died (severity=0, status=0) [dpxxwp.c     1746]
    *** ERROR => DpHdlDeadWp: W7 (pid 5940) died (severity=0, status=0) [dpxxwp.c     1746]
    *** ERROR => DpHdlDeadWp: W8 (pid 7796) died (severity=0, status=0) [dpxxwp.c     1746]
    *** ERROR => DpHdlDeadWp: W9 (pid 5564) died (severity=0, status=0) [dpxxwp.c     1746]
    *** ERROR => DpHdlDeadWp: W10 (pid 6048) died (severity=0, status=0) [dpxxwp.c     1746]
    *** ERROR => DpHdlDeadWp: W11 (pid 7612) died (severity=0, status=0) [dpxxwp.c     1746]
    *** ERROR => DpHdlDeadWp: W12 (pid 5208) died (severity=0, status=0) [dpxxwp.c     1746]
    *** ERROR => DpHdlDeadWp: W13 (pid 5088) died (severity=0, status=0) [dpxxwp.c     1746]
    *** ERROR => DpHdlDeadWp: W14 (pid 5752) died (severity=0, status=0) [dpxxwp.c     1746]
    *** ERROR => DpHdlDeadWp: W15 (pid 8184) died (severity=0, status=0) [dpxxwp.c     1746]
    *** ERROR => DpHdlDeadWp: W16 (pid 6500) died (severity=0, status=0) [dpxxwp.c     1746]
    *** ERROR => DpHdlDeadWp: W17 (pid 6560) died (severity=0, status=0) [dpxxwp.c     1746]
    *** ERROR => DpHdlDeadWp: W18 (pid 4984) died (severity=0, status=0) [dpxxwp.c     1746]
    *** ERROR => DpHdlDeadWp: W19 (pid 5840) died (severity=0, status=0) [dpxxwp.c     1746]
    *** ERROR => DpHdlDeadWp: W20 (pid 4064) died (severity=0, status=0) [dpxxwp.c     1746]
    *** ERROR => DpHdlDeadWp: W21 (pid 4920) died (severity=0, status=0) [dpxxwp.c     1746]
    *** ERROR => DpHdlDeadWp: W22 (pid 1476) died (severity=0, status=0) [dpxxwp.c     1746]
    *** ERROR => DpHdlDeadWp: W23 (pid 4340) died (severity=0, status=0) [dpxxwp.c     1746]
    *** ERROR => DpHdlDeadWp: W24 (pid 4324) died (severity=0, status=0) [dpxxwp.c     1746]
    *** ERROR => DpHdlDeadWp: W25 (pid 4212) died (severity=0, status=0) [dpxxwp.c     1746]
    *** DP_FATAL_ERROR => DpWPCheck: no more work processes
    *** DISPATCHER EMERGENCY SHUTDOWN ***
    increase tracelevel of WPs
    NiWait: sleep (10000ms) ...
    NiISelect: timeout 10000ms
    NiISelect: maximum fd=1189
    NiISelect: read-mask is NULL
    NiISelect: write-mask is NULL
    Tue Dec 09 10:45:18 2014
    NiISelect: TIMEOUT occured (10000ms)
    dump system status
    Workprocess Table (long) Tue Dec 09 09:45:18 2014
    ========================
    No Type  Pid    Status  Cause Start Rstr  Err Sem Time Program          Cl  User         Action                    Table
    0 DIA       -1 Ended         no    no     1   0    0                                    NO_ACTION                          
    1 DIA       -1 Ended         no    no     1   0    0                                    NO_ACTION                          
    2 DIA       -1 Ended         no    no     1   0    0                                    NO_ACTION                          
    3 DIA       -1 Ended         no    no     1   0    0                                    NO_ACTION                          
    4 DIA       -1 Ended         no    no     1   0    0                                    NO_ACTION                          
    5 DIA       -1 Ended         no    no     1   0    0                                    NO_ACTION                          
    6 DIA       -1 Ended         no    no     1   0    0                                    NO_ACTION                          
    7 DIA       -1 Ended         no    no     1   0    0                                    NO_ACTION                          
    8 DIA       -1 Ended         no    no     1   0    0                                    NO_ACTION                          
    9 DIA       -1 Ended         no    no     1   0    0                                    NO_ACTION                          
    10 DIA       -1 Ended         no    no     1   0    0                                    NO_ACTION                          
    11 DIA       -1 Ended         no    no     1   0    0                                    NO_ACTION                          
    12 DIA       -1 Ended         no    no     1   0    0                                    NO_ACTION                          
    13 DIA       -1 Ended         no    no     1   0    0                                    NO_ACTION                          
    14 DIA       -1 Ended         no    no     1   0    0                                    NO_ACTION                          
    15 UPD       -1 Ended         no    no     1   0    0                                    NO_ACTION                          
    16 UPD       -1 Ended         no    no     1   0    0                                    NO_ACTION                          
    17 UPD       -1 Ended         no    no     1   0    0                                    NO_ACTION                          
    18 BTC       -1 Ended         no    no     1   0    0                                    NO_ACTION                          
    19 BTC       -1 Ended         no    no     1   0    0                                    NO_ACTION                          
    20 BTC       -1 Ended         no    no     1   0    0                                    NO_ACTION                          
    21 BTC       -1 Ended         no    no     1   0    0                                    NO_ACTION                          
    22 BTC       -1 Ended         no    no     1   0    0                                    NO_ACTION                          
    23 SPO       -1 Ended         no    no     1   0    0                                    NO_ACTION                          
    24 UP2       -1 Ended         no    no     1   0    0                                    NO_ACTION                          
    25 UP2       -1 Ended         no    no     1   0    0                                    NO_ACTION                          
    Dispatcher Queue Statistics Tue Dec 09 09:45:18 2014
    ===========================
    +------+--------+--------+--------+------------+------------+
    |  Typ |    now |   high |    max | writes     |  reads     |
    +------+--------+--------+--------+------------+------------+
    | NOWP |      0 |      2 |   4000 |          6 |          6 |
    +------+--------+--------+--------+------------+------------+
    |  DIA |      4 |      4 |   4000 |          4 |          0 |
    +------+--------+--------+--------+------------+------------+
    |  UPD |      0 |      0 |   4000 |          0 |          0 |
    +------+--------+--------+--------+------------+------------+
    |  ENQ |      0 |      0 |   4000 |          0 |          0 |
    +------+--------+--------+--------+------------+------------+
    |  BTC |      0 |      0 |   4000 |          0 |          0 |
    +------+--------+--------+--------+------------+------------+
    |  SPO |      0 |      0 |   4000 |          0 |          0 |
    +------+--------+--------+--------+------------+------------+
    |  UP2 |      0 |      0 |   4000 |          0 |          0 |
    +------+--------+--------+--------+------------+------------+
    max_rq_id 9
    wake_evt_udp_now 0
    wake events       total     7,  udp     7 (100%),  shm     0 (  0%)
    since last update total     7,  udp     7 (100%),  shm     0 (  0%)
    DpGetLoadAverage: la1[1] = 0.000000 / -1.000000 %
    DpGetLoadAverage: la5[1] = 0.000000 / -1.000000 %
    DpGetLoadAverage: la15[1] = 0.044444 / -1.000000 %
    Dispatcher Load Statistics
    +------+---------+---------+---------+
    |  Typ |     LA1 |     LA5 |    LA15 |
    +------+---------+---------+---------+
    |  DIA |   0.000 |   0.000 |   0.044 |
    +------+---------+---------+---------+
    DpGetLoadAverage: la1[2] = 0.000000 / -1.000000 %
    DpGetLoadAverage: la5[2] = 0.000000 / -1.000000 %
    DpGetLoadAverage: la15[2] = 0.000000 / -1.000000 %
    |  UPD |   0.000 |   0.000 |   0.000 |
    +------+---------+---------+---------+
    DpGetLoadAverage: la1[3] = 0.000000 / -1.000000 %
    DpGetLoadAverage: la5[3] = 0.000000 / -1.000000 %
    DpGetLoadAverage: la15[3] = 0.000000 / -1.000000 %
    |  ENQ |   0.000 |   0.000 |   0.000 |
    +------+---------+---------+---------+
    DpGetLoadAverage: la1[4] = 0.000000 / -1.000000 %
    DpGetLoadAverage: la5[4] = 0.000000 / -1.000000 %
    DpGetLoadAverage: la15[4] = 0.000000 / -1.000000 %
    |  BTC |   0.000 |   0.000 |   0.000 |
    +------+---------+---------+---------+
    DpGetLoadAverage: la1[5] = 0.000000 / -1.000000 %
    DpGetLoadAverage: la5[5] = 0.000000 / -1.000000 %
    DpGetLoadAverage: la15[5] = 0.000000 / -1.000000 %
    |  SPO |   0.000 |   0.000 |   0.000 |
    +------+---------+---------+---------+
    DpGetLoadAverage: la1[6] = 0.000000 / -1.000000 %
    DpGetLoadAverage: la5[6] = 0.000000 / -1.000000 %
    DpGetLoadAverage: la15[6] = 0.000000 / -1.000000 %
    |  UP2 |   0.000 |   0.000 |   0.000 |
    +------+---------+---------+---------+
    Dump of tm_adm structure: Tue Dec 09 09:45:18 2014
    =========================
    Term    uid  man user    term   lastop  mod wp  ta   a/i (modes)
    Workprocess Comm. Area Blocks Tue Dec 09 09:45:18 2014
    =============================
    Slots: 1000, Used: 1, Max: 2
    +------+--------------+----------+-------------+
    |   id | owner        |   pid    | eyecatcher  |
    +------+--------------+----------+-------------+
    |    0 | DISPATCHER   |       -1 | 0xdeadbeef |
    NiWait: sleep (5000ms) ...
    NiISelect: timeout 5000ms
    NiISelect: maximum fd=1189
    NiISelect: read-mask is NULL
    NiISelect: write-mask is NULL
    Tue Dec 09 10:45:23 2014
    NiISelect: TIMEOUT occured (5000ms)
    DpHalt: shutdown server >fsrvsolman01_SLM_00                     < (normal)
    DpJ2eeDisableRestart
    DpMBufRead: read server list from MBUF (1 entries)
    DpMBufMod: name [fsrvsolman01_SLM_00                     ], types 187 state 3 (0x0 0x0 0x0 0x0)
    DpMBufMod: call hooks for event MBUF_DPEVT_DSTATE (5->3)
    AdGetSelfIdentRecord: >                                                                           <
    AdCvtRecToExt: opcode 60 (AD_SELFIDENT), ser 0, ex 0, errno 0
    AdCallRegisteredCvtToExt: opcode 60
    AdCallRegisteredCvtToExt: opcode 60 call 00007FF6003A7AA0
    AdCallRegisteredCvtToExt: opcode 60 exit rc=SAP_O_K
    AdCvtRecToExt: opcode 40 (AD_MSBUF), ser 0, ex 0, errno 0
    AdCallRegisteredCvtToExt: opcode 40
    AdCallRegisteredCvtToExt: opcode 40 call 00007FF600D23F90
    AdCallRegisteredCvtToExt: opcode 40 exit rc=SAP_O_K
    AdCvtRecToExt: opcode 40 (AD_MSBUF), ser 0, ex 0, errno 0
    AdCallRegisteredCvtToExt: opcode 40
    AdCallRegisteredCvtToExt: opcode 40 call 00007FF600D23F90
    AdCallRegisteredCvtToExt: opcode 40 exit rc=SAP_O_K
    AdCvtRecToExt: opcode 40 (AD_MSBUF), ser 0, ex 0, errno 0
    AdCallRegisteredCvtToExt: opcode 40
    AdCallRegisteredCvtToExt: opcode 40 call 00007FF600D23F90
    AdCallRegisteredCvtToExt: opcode 40 exit rc=SAP_O_K
    AdCvtRecToExt: opcode 40 (AD_MSBUF), ser 0, ex 0, errno 0
    AdCallRegisteredCvtToExt: opcode 40
    AdCallRegisteredCvtToExt: opcode 40 call 00007FF600D23F90
    AdCallRegisteredCvtToExt: opcode 40 exit rc=SAP_O_K
    AdCvtRecToExt: opcode 40 (AD_MSBUF), ser 0, ex 0, errno 0
    AdCallRegisteredCvtToExt: opcode 40
    AdCallRegisteredCvtToExt: opcode 40 call 00007FF600D23F90
    AdCallRegisteredCvtToExt: opcode 40 exit rc=SAP_O_K
    AdCvtRecToExt: opcode 40 (AD_MSBUF), ser 0, ex 0, errno 0
    AdCallRegisteredCvtToExt: opcode 40
    AdCallRegisteredCvtToExt: opcode 40 call 00007FF600D23F90
    AdCallRegisteredCvtToExt: opcode 40 exit rc=SAP_O_K
    AdCvtRecToExt: opcode 40 (AD_MSBUF), ser 0, ex 0, errno 0
    AdCallRegisteredCvtToExt: opcode 40
    AdCallRegisteredCvtToExt: opcode 40 call 00007FF600D23F90
    AdCallRegisteredCvtToExt: opcode 40 exit rc=SAP_O_K
    AdCvtRecToExt: opcode 40 (AD_MSBUF), ser 0, ex 0, errno 0
    AdCallRegisteredCvtToExt: opcode 40
    AdCallRegisteredCvtToExt: opcode 40 call 00007FF600D23F90
    AdCallRegisteredCvtToExt: opcode 40 exit rc=SAP_O_K
    AdCvtRecToExt: opcode 40 (AD_MSBUF), ser 0, ex 0, errno 0
    AdCallRegisteredCvtToExt: opcode 40
    AdCallRegisteredCvtToExt: opcode 40 call 00007FF600D23F90
    AdCallRegisteredCvtToExt: opcode 40 exit rc=SAP_O_K
    AdCvtRecToExt: opcode 40 (AD_MSBUF), ser 0, ex 0, errno 0
    AdCallRegisteredCvtToExt: opcode 40
    AdCallRegisteredCvtToExt: opcode 40 call 00007FF600D23F90
    AdCallRegisteredCvtToExt: opcode 40 exit rc=SAP_O_K
    DpWpBlksLow: wp_blks_in_queue/threshold/max = 1/800/1000
    DpLockWpBlkEx: lock wp ca_blk 1
    make DISP owner of wp_ca_blk 1
    DpRqIPutIntoQ: put elem in queue DIA, elems=5
    DpRqPutIntoQueue: put request into queue (reqtype 1, prio LOW, rq_id 10)
    MBUF server state SHUTDOWN
    DpModState: change state STARTING -> SHUTDOWN
    NiBufSend starting
    NiIWrite: hdl 25 sent data (wrt=110,pac=1,MESG_IO)
    MsINiWrite: sent 110 bytes
    MsIModState: change state to SHUTDOWN
    DpModState: change server state from STARTING to SHUTDOWN
    DpHalt: switch off Shared memory profiling
    ShmProtect( 57, 3 )
    ShmProtect(SHM_PROFILE, SHM_PROT_RW
    ShmProtect( 57, 1 )
    ShmProtect(SHM_PROFILE, SHM_PROT_RD
    DpWakeUpWps: wake up all wp's
    DpHalt: stop work processes
    DpHalt: stop gateway
    killing process (7608) (SOFT_KILL)
    DpHalt: stop icman
    killing process (5648) (SOFT_KILL)
    DpHalt: terminate gui connections
    DpHalt: wait for end of work processes
    DpHalt: wait for end of gateway
    [DpProcDied] Process lives  (PID:7608  HANDLE:908)
    DpHalt: waiting for termination of gateway ...
    NiWait: sleep (1000ms) ...
    NiISelect: timeout 1000ms
    NiISelect: maximum fd=1189
    NiISelect: read-mask is NULL
    NiISelect: write-mask is NULL
    Tue Dec 09 10:45:24 2014
    NiISelect: TIMEOUT occured (1000ms)
    *** ERROR => [DpProcDied] Process died  (PID:7608  HANDLE:908  rc:0x0) [dpnttool2.c  147]
    DpHalt: wait for end of icman
    [DpProcDied] Process lives  (PID:5648  HANDLE:916)
    DpHalt: waiting for termination of icman ...
    NiWait: sleep (1000ms) ...
    NiISelect: timeout 1000ms
    NiISelect: maximum fd=1189
    NiISelect: read-mask is NULL
    NiISelect: write-mask is NULL
    Tue Dec 09 10:45:25 2014
    NiISelect: TIMEOUT occured (1000ms)
    [DpProcDied] Process lives  (PID:5648  HANDLE:916)
    DpHalt: waiting for termination of icman ...
    NiWait: sleep (1000ms) ...
    NiISelect: timeout 1000ms
    NiISelect: maximum fd=1189
    NiISelect: read-mask is NULL
    NiISelect: write-mask is NULL
    Tue Dec 09 10:45:26 2014
    NiISelect: TIMEOUT occured (1000ms)
    [DpProcDied] Process lives  (PID:5648  HANDLE:916)
    DpHalt: waiting for termination of icman ...
    NiWait: sleep (1000ms) ...
    NiISelect: timeout 1000ms
    NiISelect: maximum fd=1189
    NiISelect: read-mask is NULL
    NiISelect: write-mask is NULL
    Tue Dec 09 10:45:27 2014
    NiISelect: TIMEOUT occured (1000ms)
    [DpProcDied] Process lives  (PID:5648  HANDLE:916)
    DpHalt: waiting for termination of icman ...
    NiWait: sleep (1000ms) ...
    NiISelect: timeout 1000ms
    NiISelect: maximum fd=1189
    NiISelect: read-mask is NULL
    NiISelect: write-mask is NULL
    Tue Dec 09 10:45:28 2014
    NiISelect: TIMEOUT occured (1000ms)
    [DpProcDied] Process lives  (PID:5648  HANDLE:916)
    DpHalt: waiting for termination of icman ...
    NiWait: sleep (1000ms) ...
    NiISelect: timeout 1000ms
    NiISelect: maximum fd=1189
    NiISelect: read-mask is NULL
    NiISelect: write-mask is NULL
    Tue Dec 09 10:45:29 2014
    NiISelect: TIMEOUT occured (1000ms)
    [DpProcDied] Process lives  (PID:5648  HANDLE:916)
    DpHalt: waiting for termination of icman ...
    NiWait: sleep (1000ms) ...
    NiISelect: timeout 1000ms
    NiISelect: maximum fd=1189
    NiISelect: read-mask is NULL
    NiISelect: write-mask is NULL
    Tue Dec 09 10:45:30 2014
    NiISelect: TIMEOUT occured (1000ms)
    [DpProcDied] Process lives  (PID:5648  HANDLE:916)
    DpHalt: waiting for termination of icman ...
    NiWait: sleep (1000ms) ...
    NiISelect: timeout 1000ms
    NiISelect: maximum fd=1189
    NiISelect: read-mask is NULL
    NiISelect: write-mask is NULL
    Tue Dec 09 10:45:31 2014
    NiISelect: TIMEOUT occured (1000ms)
    [DpProcDied] Process lives  (PID:5648  HANDLE:916)
    DpHalt: waiting for termination of icman ...
    NiWait: sleep (1000ms) ...
    NiISelect: timeout 1000ms
    NiISelect: maximum fd=1189
    NiISelect: read-mask is NULL
    NiISelect: write-mask is NULL
    Tue Dec 09 10:45:32 2014
    NiISelect: TIMEOUT occured (1000ms)
    [DpProcDied] Process lives  (PID:5648  HANDLE:916)
    DpHalt: waiting for termination of icman ...
    NiWait: sleep (1000ms) ...
    NiISelect: timeout 1000ms
    NiISelect: maximum fd=1189
    NiISelect: read-mask is NULL
    NiISelect: write-mask is NULL
    Tue Dec 09 10:45:33 2014
    NiISelect: TIMEOUT occured (1000ms)
    [DpProcDied] Process lives  (PID:5648  HANDLE:916)
    DpHalt: waiting for termination of icman ...
    NiWait: sleep (1000ms) ...
    NiISelect: timeout 1000ms
    NiISelect: maximum fd=1189
    NiISelect: read-mask is NULL
    NiISelect: write-mask is NULL
    Tue Dec 09 10:45:34 2014
    NiISelect: TIMEOUT occured (1000ms)
    [DpProcDied] Process lives  (PID:5648  HANDLE:916)
    DpHalt: waiting for termination of icman ...
    NiWait: sleep (1000ms) ...
    NiISelect: timeout 1000ms
    NiISelect: maximum fd=1189
    NiISelect: read-mask is NULL
    NiISelect: write-mask is NULL
    Tue Dec 09 10:45:35 2014
    NiISelect: TIMEOUT occured (1000ms)
    [DpProcDied] Process lives  (PID:5648  HANDLE:916)
    DpHalt: waiting for termination of icman ...
    NiWait: sleep (1000ms) ...
    NiISelect: timeout 1000ms
    NiISelect: maximum fd=1189
    NiISelect: read-mask is NULL
    NiISelect: write-mask is NULL
    Tue Dec 09 10:45:36 2014
    NiISelect: TIMEOUT occured (1000ms)
    [DpProcDied] Process lives  (PID:5648  HANDLE:916)
    DpHalt: waiting for termination of icman ...
    NiWait: sleep (1000ms) ...
    NiISelect: timeout 1000ms
    NiISelect: maximum fd=1189
    NiISelect: read-mask is NULL
    NiISelect: write-mask is NULL
    Tue Dec 09 10:45:37 2014
    NiISelect: TIMEOUT occured (1000ms)
    [DpProcDied] Process lives  (PID:5648  HANDLE:916)
    DpHalt: waiting for termination of icman ...
    NiWait: sleep (1000ms) ...
    NiISelect: timeout 1000ms
    NiISelect: maximum fd=1189
    NiISelect: read-mask is NULL
    NiISelect: write-mask is NULL
    Tue Dec 09 10:45:38 2014
    NiISelect: TIMEOUT occured (1000ms)
    [DpProcDied] Process lives  (PID:5648  HANDLE:916)
    DpHalt: waiting for termination of icman ...
    NiWait: sleep (1000ms) ...
    NiISelect: timeout 1000ms
    NiISelect: maximum fd=1189
    NiISelect: read-mask is NULL
    NiISelect: write-mask is NULL
    Tue Dec 09 10:45:39 2014
    NiISelect: TIMEOUT occured (1000ms)
    [DpProcDied] Process lives  (PID:5648  HANDLE:916)
    DpHalt: waiting for termination of icman ...
    NiWait: sleep (1000ms) ...
    NiISelect: timeout 1000ms
    NiISelect: maximum fd=1189
    NiISelect: read-mask is NULL
    NiISelect: write-mask is NULL
    Tue Dec 09 10:45:40 2014
    NiISelect: TIMEOUT occured (1000ms)
    [DpProcDied] Process lives  (PID:5648  HANDLE:916)
    DpHalt: waiting for termination of icman ...
    NiWait: sleep (1000ms) ...
    NiISelect: timeout 1000ms
    NiISelect: maximum fd=1189
    NiISelect: read-mask is NULL
    NiISelect: write-mask is NULL
    Tue Dec 09 10:45:41 2014
    NiISelect: TIMEOUT occured (1000ms)
    [DpProcDied] Process lives  (PID:5648  HANDLE:916)
    DpHalt: waiting for termination of icman ...
    NiWait: sleep (1000ms) ...
    NiISelect: timeout 1000ms
    NiISelect: maximum fd=1189
    NiISelect: read-mask is NULL
    NiISelect: write-mask is NULL
    Tue Dec 09 10:45:42 2014
    NiISelect: TIMEOUT occured (1000ms)
    *** ERROR => [DpProcDied] Process died  (PID:5648  HANDLE:916  rc:0x0) [dpnttool2.c  147]
    *** ERROR => [DpProcDied] Process died  (PID:7620  HANDLE:912  rc:0x42) [dpnttool2.c  147]
    DpStartStopMsg: send stop message (myname is >fsrvsolman01_SLM_00                     <)
    DpStartStopMsg: Write AD_STARTSTOP message with type=  0, name=fsrvsolman01_SLM_00 , sapsysnr= 0, hostname=fsrvsolman01                                                   
    AdGetSelfIdentRecord: >                                                                           <
    AdCvtRecToExt: opcode 60 (AD_SELFIDENT), ser 0, ex 0, errno 0
    AdCallRegisteredCvtToExt: opcode 60
    AdCallRegisteredCvtToExt: opcode 60 call 00007FF6003A7AA0
    AdCallRegisteredCvtToExt: opcode 60 exit rc=SAP_O_K
    AdCvtRecToExt: opcode 4 (AD_STARTSTOP), ser 0, ex 0, errno 0
    AdCallRegisteredCvtToExt: opcode 4
    AdCallRegisteredCvtToExt: opcode 4 call 00007FF600628390
    AdCallRegisteredCvtToExt: opcode 4 exit rc=SAP_O_K
    DpConvertRequest: net size = 189 bytes
    NiBufIAlloc: malloc MSLIB-BUF, to 32110 bytes
    NiBufSend starting
    NiIWrite: hdl 25 sent data (wrt=562,pac=1,MESG_IO)
    MsINiWrite: sent 562 bytes
    MsISndTypeOnce: send msg (ms hdr/msg 110/452 bytes) to MSG_SERVER, type 1
    DpStartStopMsg: stop msg sent to message server o.k.
    NiBufIAlloc: malloc MSLIB-BUF, to 32110 bytes
    NiBufIAlloc: malloc NIBUF-IN, to 32110 bytes
    NiIRead: hdl 25 received data (rcd=274,pac=1,MESG_IO)
    NiBufIIn: NIBUF len=274
    NiBufIIn: packet complete for hdl 25
    NiBufReceive starting
    MsINiRead: received 274 bytes
    MsIReceive: received msg (ms hdr/msg 110/164 bytes), flag 1, from MSG_SERVER          , typ 0, key -
    DpHalt: received 164 bytes from message server
    NiIRead: hdl 25 recv would block (errno=EAGAIN)
    NiIRead: read for hdl 25 timed out (0ms)
    DpHalt: more messages from the message server
    DpHalt: send keepalive to synchronize with the message server
    NiBufSend starting
    NiIWrite: hdl 25 sent data (wrt=114,pac=1,MESG_IO)
    MsINiWrite: sent 114 bytes
    MsISnd2: send msg (ms hdr/msg 110/4 bytes) to name           MSG_SERVER, type 0, key -
    MsSndName: MS_NOOP ok
    Send 4 bytes to MSG_SERVER
    NiBufIAlloc: malloc MSLIB-BUF, to 32110 bytes
    NiBufIAlloc: malloc NIBUF-IN, to 32110 bytes
    NiIRead: hdl 25 received data (rcd=114,pac=1,MESG_IO)
    NiBufIIn: NIBUF len=114
    NiBufIIn: packet complete for hdl 25
    NiBufReceive starting
    MsINiRead: received 114 bytes
    MsIReceive: received msg (ms hdr/msg 110/4 bytes), flag 3, from MSG_SERVER          , typ 0, key -
    Received 4 bytes from MSG_SERVER                             
    Received opcode MS_NOOP from msg_server, reply MSOP_OK
    MsOpReceive: ok
    MsISendKeepalive : keepalive sent to message server
    NiIRead: hdl 25 recv would block (errno=EAGAIN)
    Tue Dec 09 10:45:43 2014
    NiIPeek: peek for hdl 25 timed out (r; 1000ms)
    NiIRead: read for hdl 25 timed out (1000ms)
    DpHalt: no more messages from the message server
    DpHalt: sync with message server o.k.
    DpHalt: detach from message server
    ***LOG Q0M=> DpMsDetach, ms_detach () [dpxxdisp.c   13339]
    NiBufSend starting
    NiIWrite: hdl 25 sent data (wrt=110,pac=1,MESG_IO)
    MsINiWrite: sent 110 bytes
    MsIDetach: send logout to msg_server (fsrvsolman01 / 3901)
    MsIDetach: call exit function
    DpMsShutdownHook called
    NiBufISelUpdate: new MODE -- (r-) for hdl 25 in set0
    SiSelNSet: set events of sock 1060 to: ---
    NiBufISelRemove: remove hdl 25 from set0
    SiSelNRemove: removed sock 1060 (pos=3)
    SiSelNRemove: removed sock 1060
    NiSelIRemove: removed hdl 25
    DpDelSocketInfo: del info for nihdl 25 (pos/type=3/4)
    MBUF state OFF
    AdGetSelfIdentRecord: >                                                                           <
    AdCvtRecToExt: opcode 60 (AD_SELFIDENT), ser 0, ex 0, errno 0
    AdCallRegisteredCvtToExt: opcode 60
    AdCallRegisteredCvtToExt: opcode 60 call 00007FF6003A7AA0
    AdCallRegisteredCvtToExt: opcode 60 exit rc=SAP_O_K
    AdCvtRecToExt: opcode 40 (AD_MSBUF), ser 0, ex 0, errno 0
    AdCallRegisteredCvtToExt: opcode 40
    AdCallRegisteredCvtToExt: opcode 40 call 00007FF600D23F90
    AdCallRegisteredCvtToExt: opcode 40 exit rc=SAP_O_K
    AdCvtRecToExt: opcode 40 (AD_MSBUF), ser 0, ex 0, errno 0
    AdCallRegisteredCvtToExt: opcode 40
    AdCallRegisteredCvtToExt: opcode 40 call 00007FF600D23F90
    AdCallRegisteredCvtToExt: opcode 40 exit rc=SAP_O_K
    DpWpBlksLow: wp_blks_in_queue/threshold/max = 2/800/1000
    DpLockWpBlkEx: lock wp ca_blk 2
    make DISP owner of wp_ca_blk 2
    DpRqIPutIntoQ: put elem in queue DIA, elems=6
    DpRqPutIntoQueue: put request into queue (reqtype 1, prio LOW, rq_id 13)
    MBUF component DOWN
    NiICloseHandle: shutdown and close hdl 25/sock 1060
    NiBufIClose: clear extension for hdl 25
    MsIDetach: detach MS-system (fsrvsolman01 / 3901)
    DpHalt: cleanup EM
    EsCleanup( )
    EsCleanup ....
    EmCleanup() -> 0
    Es2Cleanup: Cleanup ES2
    ***LOG Q05=> DpHalt, DPStop ( 4648) [dpxxdisp.c   11819]
    DpHalt: Good Bye .....

  • SAP work Process goes in run state,Users cannot login developer trace paste

    Hi team,
    We have a system which is at ECC6 release 701 ABAP + java system.
    The work process frequently go in run state and since this is an IDES system, I always restart the system.
    Please help me since i want tio know the root cause for the same.
    The dev trace is as follows, and i beleive its a listener problem by the logs.
    kernel runs with dp version 244000(ext=110000) (@(#) DPLIB-INT-VERSION-244000-UC)
    length of sys_adm_ext is 576 bytes
    SWITCH TRC-HIDE on ***
    ***LOG Q00=> DpSapEnvInit, DPStart (00 199004) [dpxxdisp.c   1287]
         shared lib "dw_xml.dll" version 254 successfully loaded
         shared lib "dw_xtc.dll" version 254 successfully loaded
         shared lib "dw_stl.dll" version 254 successfully loaded
         shared lib "dw_gui.dll" version 254 successfully loaded
         shared lib "dw_mdm.dll" version 254 successfully loaded
    rdisp/softcancel_sequence :  -> 0,5,-1
    use internal message server connection to port 3900
    Mon Dec 13 08:26:23 2010
    WARNING => DpNetCheck: NiHostToAddr(www.doesnotexist0223.qqq.nxst) took 6 seconds
    <EsNT> Using memory model view.
    <EsNT> Memory Reset disabled as NT default
    <ES> 127 blocks reserved for free list.
    ES initialized.
    mm.dump: set maximum dump mem to 96 MB
    Mon Dec 13 08:26:29 2010
    J2EE server info
      start = TRUE
      state = STARTED
      pid = 200040
      argv[0] = D:\usr\sap\BI7\DVEBMGS00\exe\jcontrol.EXE
      argv[1] = D:\usr\sap\BI7\DVEBMGS00\exe\jcontrol.EXE
      argv[2] = pf=D:\usr\sap\BI7\SYS\profile\BI7_DVEBMGS00_q4de3gsy203
      argv[3] = -DSAPSTART=1
      argv[4] = -DCONNECT_PORT=65000
      argv[5] = -DSAPSYSTEM=00
      argv[6] = -DSAPSYSTEMNAME=BI7
      argv[7] = -DSAPMYNAME=q4de3gsy203_BI7_00
      argv[8] = -DSAPPROFILE=D:\usr\sap\BI7\SYS\profile\BI7_DVEBMGS00_q4de3gsy203
      argv[9] = -DFRFC_FALLBACK=ON
      argv[10] = -DFRFC_FALLBACK_HOST=localhost
      start_lazy = 0
      start_control = SAP J2EE startup framework
    DpJ2eeStart: j2ee state = STARTED
    rdisp/http_min_wait_dia_wp : 1 -> 1
    ***LOG CPS=> DpLoopInit, ICU ( 3.0 3.0 4.0.1) [dpxxdisp.c   1694]
    ***LOG Q0K=> DpMsAttach, mscon ( q4de3gsy203) [dpxxdisp.c   12697]
    DpStartStopMsg: send start message (myname is >q4de3gsy203_BI7_00                      <)
    DpStartStopMsg: start msg sent
    CCMS: AlInitGlobals : alert/use_sema_lock = TRUE.
    CCMS: start to initalize 3.X shared alert area (first segment).
    DpMsgAdmin: Set release to 7000, patchlevel 0
    MBUF state PREPARED
    MBUF component UP
    DpMBufHwIdSet: set Hardware-ID
    ***LOG Q1C=> DpMBufHwIdSet [dpxxmbuf.c   1050]
    DpMsgAdmin: Set patchno for this platform to 254
    Release check o.K.
    DpJ2eeLogin: j2ee state = CONNECTED
    Mon Dec 13 08:27:09 2010
    my types changed after wp death/restart 0xbf --> 0xbd
    my types changed after wp death/restart 0xbd --> 0xb5
    my types changed after wp death/restart 0xb5 --> 0x95
    Mon Dec 13 08:27:29 2010
    ERROR => DpWPCheck: W1 (pid 199044) died (severity=0, status=0) [dpxxdisp.c   15841]
    ERROR => DpWPCheck: W4 (pid 199912) died (severity=0, status=0) [dpxxdisp.c   15841]
    ERROR => DpWPCheck: W6 (pid 192420) died (severity=0, status=0) [dpxxdisp.c   15841]
    ERROR => DpWPCheck: W8 (pid 199528) died (severity=0, status=0) [dpxxdisp.c   15841]
    ERROR => DpWPCheck: W9 (pid 198860) died (severity=0, status=0) [dpxxdisp.c   15841]
    ERROR => DpWPCheck: W10 (pid 199664) died (severity=0, status=0) [dpxxdisp.c   15841]
    my types changed after wp death/restart 0x95 --> 0x85
    ERROR => DpWPCheck: W12 (pid 200036) died (severity=0, status=0) [dpxxdisp.c   15841]
    Mon Dec 13 08:27:43 2010
    ***LOG Q0I=> NiIRead: recv (10054: WSAECONNRESET: Connection reset by peer) [nixxi.cpp 4424]
    ERROR => NiIRead: SiRecv failed for hdl 6 / sock 316
        (SI_ECONN_BROKEN/10054; I4; ST; 127.0.0.1:4882) [nixxi.cpp    4424]
    ERROR => DpJ2eeMsgProcess: NiRead failed (NIECONN_BROKEN) [dpxxj2ee.c   1212]
    DpJ2eeMsgProcess: j2ee state = CONNECTED (NIECONN_BROKEN)
    Mon Dec 13 08:27:49 2010
    ERROR => DpWPCheck: W0 (pid 200632) died (severity=0, status=0) [dpxxdisp.c   15841]
    ERROR => DpWPCheck: W1 (pid 199044) died (severity=0, status=0) [dpxxdisp.c   15841]
    my types changed after wp death/restart 0x85 --> 0x84
    ERROR => DpWPCheck: W3 (pid 93796) died (severity=0, status=0) [dpxxdisp.c   15841]
    ERROR => DpWPCheck: W4 (pid 199912) died (severity=0, status=0) [dpxxdisp.c   15841]
    ERROR => DpWPCheck: W5 (pid 200484) died (severity=0, status=0) [dpxxdisp.c   15841]
    ERROR => DpWPCheck: W6 (pid 192420) died (severity=0, status=0) [dpxxdisp.c   15841]
    my types changed after wp death/restart 0x84 --> 0x80
    ERROR => DpWPCheck: W8 (pid 199528) died (severity=0, status=0) [dpxxdisp.c   15841]
    ERROR => DpWPCheck: W9 (pid 198860) died (severity=0, status=0) [dpxxdisp.c   15841]
    ERROR => DpWPCheck: W10 (pid 199664) died (severity=0, status=0) [dpxxdisp.c   15841]
    ERROR => DpWPCheck: W11 (pid 199720) died (severity=0, status=0) [dpxxdisp.c   15841]
    ERROR => DpWPCheck: W12 (pid 200036) died (severity=0, status=0) [dpxxdisp.c   15841]
    DP_FATAL_ERROR => DpWPCheck: no more work processes
    DISPATCHER EMERGENCY SHUTDOWN ***
    increase tracelevel of WPs
    NiWait: sleep (10000ms) ...
    NiISelect: timeout 10000ms
    NiISelect: maximum fd=493
    NiISelect: read-mask is NULL
    NiISelect: write-mask is NULL
    Mon Dec 13 08:27:59 2010
    NiISelect: TIMEOUT occured (10000ms)
    dump system status
    Workprocess Table (long)               Mon Dec 13 07:27:59 2010
    ========================
    No Ty. Pid      Status  Cause Start Err Sem CPU    Time  Program          Cl  User         Action                    Table
    0 DIA   200632 Ended         no      2   0        0                                                                         
    1 DIA   199044 Ended         no      3   0        0                                                                         
    2 DIA   200280 Ended         no      1   0        0                                                                         
    3 DIA    93796 Ended         no      2   0        0                                                                         
    4 DIA   199912 Ended         no      3   0        0                                                                         
    5 DIA   200484 Ended         no      2   0        0                                                                         
    6 UPD   192420 Ended         no      3   0        0                                                                         
    7 ENQ   199792 Ended         no      1   0        0                                                                         
    8 BTC   199528 Ended         no      3   0        0                                                                         
    9 BTC   198860 Ended         no      3   0        0                                                                         
    10 BTC   199664 Ended         no      3   0        0                                                                         
    11 SPO   199720 Ended         no      2   0        0                                                                         
    12 UP2   200036 Ended         no      3   0        0                                                                         
    Dispatcher Queue Statistics               Mon Dec 13 07:27:59 2010
    Switch off Shared memory profiling
    ShmProtect( 57, 3 )
    ShmProtect(SHM_PROFILE, SHM_PROT_RW
    ShmProtect( 57, 1 )
    ShmProtect(SHM_PROFILE, SHM_PROT_RD
    DpWakeUpWps: wake up all wp's
    Stop work processes
    Stop gateway
    killing process (184860) (SOFT_KILL)
    Stop icman
    killing process (190124) (SOFT_KILL)
    Terminate gui connections
    wait for end of work processes
    wait for end of gateway
    [DpProcDied] Process lives  (PID:184860  HANDLE:440)
    waiting for termination of gateway ...
    NiWait: sleep (1000ms) ...
    NiISelect: timeout 1000ms
    NiISelect: maximum fd=493
    NiISelect: read-mask is NULL
    NiISelect: write-mask is NULL
    Mon Dec 13 08:28:05 2010
    NiISelect: TIMEOUT occured (1000ms)
    [DpProcDied] Process died  (PID:184860  HANDLE:440)
    wait for end of icman
    [DpProcDied] Process lives  (PID:190124  HANDLE:448)
    waiting for termination of icman ...
    NiWait: sleep (1000ms) ...
    NiISelect: timeout 1000ms
    NiISelect: maximum fd=493
    NiISelect: read-mask is NULL
    NiISelect: write-mask is NULL
    Mon Dec 13 08:28:06 2010
    NiISelect: TIMEOUT occured (1000ms)
    [DpProcDied] Process lives  (PID:190124  HANDLE:448)
    waiting for termination of icman ...
    NiWait: sleep (1000ms) ...
    NiISelect: timeout 1000ms
    NiISelect: maximum fd=493
    NiISelect: read-mask is NULL
    NiISelect: write-mask is NULL
    Mon Dec 13 08:28:07 2010
    NiISelect: TIMEOUT occured (1000ms)
    [DpProcDied] Process lives  (PID:190124  HANDLE:448)
    waiting for termination of icman ...
    NiWait: sleep (1000ms) ...
    NiISelect: timeout 1000ms
    NiISelect: maximum fd=493
    NiISelect: read-mask is NULL
    NiISelect: write-mask is NULL
    Mon Dec 13 08:28:08 2010
    NiISelect: TIMEOUT occured (1000ms)
    [DpProcDied] Process lives  (PID:190124  HANDLE:448)
    waiting for termination of icman ...
    NiWait: sleep (1000ms) ...
    NiISelect: timeout 1000ms
    NiISelect: maximum fd=493
    NiISelect: read-mask is NULL
    NiISelect: write-mask is NULL
    Mon Dec 13 08:28:09 2010
    NiISelect: TIMEOUT occured (1000ms)
    [DpProcDied] Process died  (PID:190124  HANDLE:448)
    [DpProcDied] Process died  (PID:200040  HANDLE:424)
    DpStartStopMsg: send stop message (myname is >q4de3gsy203_BI7_00                      <)
    AdGetSelfIdentRecord: >                                                                           <
    AdCvtRecToExt: opcode 60 (AD_SELFIDENT), ser 0, ex 0, errno 0
    AdCvtRecToExt: opcode 4 (AD_STARTSTOP), ser 0, ex 0, errno 0
    DpConvertRequest: net size = 189 bytes
    NiBufSend starting
    NiIWrite: hdl 3 sent data (wrt=562,pac=1,MESG_IO)
    MsINiWrite: sent 562 bytes
    send msg (len 110+452) to name                    -, type 4, key -
    DpStartStopMsg: stop msg sent
    NiIRead: hdl 3 received data (rcd=274,pac=1,MESG_IO)
    server
    NiIRead: hdl 3 recv would block (errno=EAGAIN)
    NiIRead: read for hdl 3 timed out (0ms)
    DpHalt: no more messages from the message server
    DpHalt: send keepalive to synchronize with the message server
    NiBufReceive starting
    MsINiRead: received 114 bytes
    MSG received, len 110+4, flag 3, from MSG_SERVER          , typ 0, key -
    Received 4 bytes from MSG_SERVER                             
    Received opcode MS_NOOP from msg_server, reply MSOP_OK
    MsOpReceive: ok
    MsSendKeepalive : keepalive sent to message server
    NiIRead: hdl 3 recv would block (errno=EAGAIN)
    Mon Dec 13 08:28:10 2010
    NiIPeek: peek for hdl 3 timed out (r; 1000ms)
    NiIRead: read for hdl 3 timed out (1000ms)
    DpHalt: no more messages from the message server
    DpHalt: sync with message server o.k.
    detach from message server
    ***LOG Q0M=> DpMsDetach, ms_detach () [dpxxdisp.c   13043]
    NiBufSend starting
    NiIWrite: hdl 3 sent data (wrt=110,pac=1,MESG_IO)
    MsINiWrite: sent 110 bytes
    MsIDetach: send logout to msg_server
    MsIDetach: call exit function
    DpMsShutdownHook called
    NiBufISelUpdate: new MODE -- (r-) for hdl 3 in set0
    SiSelNSet: set events of sock 368 to: ---
    NiBufISelRemove: remove hdl 3 from set0
    SiSelNRemove: removed sock 368 (pos=3)
    SiSelNRemove: removed sock 368
    NiSelIRemove: removed hdl 3
    MBUF state OFF
    AdGetSelfIdentRecord: >                                                                           <
    AdCvtRecToExt: opcode 60 (AD_SELFIDENT), ser 0, ex 0, errno 0
    AdCvtRecToExt: opcode 40 (AD_MSBUF), ser 0, ex 0, errno 0
    AdCvtRecToExt: opcode 40 (AD_MSBUF), ser 0, ex 0, errno 0
    blks_in_queue/wp_ca_blk_no/wp_max_no = 1/300/13
    LOCK WP ca_blk 1
    make DISP owner of wp_ca_blk 1
    DpSemRq: key: 2, units: 1, timeout: -1
    DpSemRel: key: 2, units: 1
    DpRqPutIntoQueue: put request into queue (reqtype 1, prio LOW, rq_id 15)
    MBUF component DOWN
    NiICloseHandle: shutdown and close hdl 3 / sock 368
    NiBufIClose: clear extension for hdl 3
    MsIDetach: detach MS-system
    cleanup EM
    EsCleanup ....
    EmCleanup() -> 0
    Es2Cleanup: Cleanup ES2
    ***LOG Q05=> DpHalt, DPStop ( 199004) [dpxxdisp.c   11230]
    Good Bye .....
    Please revert if you need more information.
    Regards,
    Prasad Shetty

    HI Juan,
    trace file for dev_w0 as asked
    C  Starting user session: OCISessionBegin(con_hdl=0, usr=SAPSR3/<pwd>, svchp=0000000013FB7748, srvhp=0000000013FB9B78, usrhp=0000000013EA1EC8)
    C  Now 'SAPSR3/<pwd>@BI7' is connected: con_hdl=0, nls_hdl=0, session_id=65.
    C  Database NLS settings: AMERICAN_AMERICA.UTF8
    C  DB instance BI7 is running on Q4DE3GSY203 with ORACLE version 10.2.0.2.0 since DEC 13, 2010, 08:38:55
    B  Connection 0 opened (DBSL handle 0)
    B  Wp  Hdl ConName                        ConId     ConState     TX  HC  PRM RCT FRC TIM MAX OPT Date     Time   DBHost                       
    B  000 000 R/3                            000000000 ACTIVE       NO  NO  YES NO  NO  000 255 255 20101213 083926 Q4DE3GSY203                  
    C  build_stmt: reallocating stmt buffer: 256 -> 2000 characters
    M  db_connect o.k.
    M  ICT: exclude compression: .zip,.cs,.rar,.arj,.z,.gz,.tar,.lzh,.cab,.hqx,.ace,.jar,.ear,.war,.css,.pdf,.js,.gzip,.uue,.bz2,.iso,.sda,.sar,.gif,*.png

    I Mon Dec 13 08:40:14 2010
    I  MtxInit: 0 0 0
    M  SHM_PRES_BUF               (addr: 0000000015860050, size: 4400000)
    M  SHM_ROLL_AREA          (addr: 000007FFEA010050, size: 61440000)
    M  SHM_PAGING_AREA          (addr: 0000000015CA0050, size: 32768000)
    M  SHM_ROLL_ADM               (addr: 0000000017BF0050, size: 633840)
    M  SHM_PAGING_ADM          (addr: 0000000017C90050, size: 525344)
    M  ThCreateNoBuffer          allocated 544152 bytes for 1000 entries at 0000000017D20050
    M  ThCreateNoBuffer          index size: 3000 elems
    M  ThCreateVBAdm          allocated 12176 bytes (50 server) at 000000000B490050
    X  EmInit: MmSetImplementation( 2 ).
    X  MM global diagnostic options set: 0
    X  <ES> client 0 initializing ....
    X  Using implementation view
    X  ES initialized.
    X  mm.dump: set maximum dump mem to 96 MB
    M  Deactivate statistics hyper index locking
    B  dbntab: NTAB buffers attached
    B  dbntab: Buffer FTAB(hash header)  (addr: 0000000017E400E0, size: 584)
    B  dbntab: Buffer FTAB(anchor array) (addr: 0000000017E40330, size: 320072)
    B  dbntab: Buffer FTAB(item array)   (addr: 0000000017E8E580, size: 1280000)
    B  dbntab: Buffer FTAB(data area)    (addr: 0000000017FC6D80, size: 30720000)
    B  dbntab: Buffer IREC(hash header)  (addr: 0000000019D200E0, size: 584)
    B  dbntab: Buffer IREC(anchor array) (addr: 0000000019D20330, size: 320072)
    B  dbntab: Buffer IREC(item array)   (addr: 0000000019D6E580, size: 320000)
    B  dbntab: Buffer IREC(data area)    (addr: 0000000019DBC780, size: 6144000)
    B  dbntab: Buffer STAB(hash header)  (addr: 000000001A3A00E0, size: 584)
    B  dbntab: Buffer STAB(anchor array) (addr: 000000001A3A0330, size: 320072)
    B  dbntab: Buffer STAB(item array)   (addr: 000000001A3EE580, size: 320000)
    B  dbntab: Buffer STAB(data area)    (addr: 000000001A43C780, size: 3072000)
    B  dbntab: Buffer TTAB(hash header)  (addr: 000000001A7300E0, size: 1944)
    B  dbntab: Buffer TTAB(anchor array) (addr: 000000001A730880, size: 320072)
    B  dbntab: Buffer TTAB(item array)   (addr: 000000001A77EAD0, size: 800000)
    B  dbntab: Buffer TTAB(data area)    (addr: 000000001A841FD0, size: 5840000)
    B  db_con_shm_ini:  WP_ID = 0, WP_CNT = 13, CON_ID = -1
    B  dbstat: TABSTAT buffer attached (addr: 000000001ADE9FB0)
    B  dbtbxbuf: Buffer TABL  (addr: 000000001D7D0160, size: 30000000, end: 000000001F46C4E0)
    B  dbtbxbuf: Buffer TABLP (addr: 000000001F470160, size: 10240000, end: 000000001FE34160)
    B  dbexpbuf: Buffer EIBUF (addr: 000000001FE40170, size: 4194304, end: 0000000020240170)
    B  dbexpbuf: Buffer ESM   (addr: 0000000020250170, size: 4194304, end: 0000000020650170)
    B  dbexpbuf: Buffer CUA   (addr: 0000000020660170, size: 3072000, end: 000000002094E170)
    B  dbexpbuf: Buffer OTR   (addr: 0000000020950170, size: 4194304, end: 0000000020D50170)
    B  dbcalbuf: Buffer CALE  (addr: 0000000020D60050, size: 500000, end: 0000000020DDA170)
    M  CCMS: AlInitGlobals : alert/use_sema_lock = TRUE.
    S  *** init spool environment
    S  TSPEVJOB updates inside critical section: event_update_nocsec = 0
    S  initialize debug system
    T  Stack direction is downwards.
    T  debug control: prepare exclude for printer trace
    T  new memory block 00000000141756E0
    S  spool kernel/ddic check: Ok
    S  using table TSP02FX for frontend printing
    S  1 spool work process(es) found
    S  frontend print via spool service enabled
    S  printer list size is 150
    S  printer type list size is 50
    S  queue size (profile)   = 300
    S  hostspool list size = 3000
    S  option list size is 30
    S      intervals: query=50, rescan=1800, global=300 info=120
    S      processing queue enabled
    S  creating spool memory service RSPO-RCLOCKS at 000000002A0700D0
    S  doing lock recovery
    S  setting server cache root
    S  using server cache size 100 (prof=100)
    S  creating spool memory service RSPO-SERVERCACHE at 000000002A0704F0
    S    using messages for server info
    B  dbtran INFO (init_connection '<DEFAULT>' [ORACLE:700.08]):
    B   max_blocking_factor =   5,  max_in_blocking_factor      =   5,
    B   min_blocking_factor =   5,  min_in_blocking_factor      =   5,
    B   prefer_union_all    =   0,  prefer_join                 =   0,
    B   prefer_fix_blocking =   0,  prefer_in_itab_opt          =   1,
    B   convert AVG         =   0,  alias table FUPD            =   0,
    B   escape_as_literal   =   1,  opt GE LE to BETWEEN        =   0,
    B   select *            =0x0f,  character encoding          = STD / <none>:-,
    B   use_hints           = abap->1, dbif->0x1, upto->2147483647, rule_in->0,
    B                         rule_fae->0, concat_fae->0, concat_fae_or->0

    S Mon Dec 13 08:40:15 2010
    S  size of spec char cache entry: 297032 bytes (timeout 100 sec)
    S  size of open spool request entry: 2512 bytes
    S  immediate print option for implicitely closed spool requests is disabled
    A  **GENER Trace switched on ***

    A  -PXA--
    A  PXA INITIALIZATION
    A  PXA: Locked PXA-Semaphore.
    A  System page size: 4kb, total admin_size: 20564kb, dir_size: 20472kb.
    A  Attached to PXA (address 000007FFEDAB0050, size 300000K)
    A  abap/pxa = shared protect gen_remote
    A  PXA INITIALIZATION FINISHED
    A  -PXA--

    A  ABAP ShmAdm attached (addr=000007FF4FEEA000 leng=20955136 end=000007FF512E6000)
    A  >> Shm MMADM area (addr=000007FF50392E80 leng=247168 end=000007FF503CF400)
    A  >> Shm MMDAT area (addr=000007FF503D0000 leng=15818752 end=000007FF512E6000)
    A  RFC Destination> destination q4de3gsy203_BI7_00 host q4de3gsy203 system BI7 systnr 0 (q4de3gsy203_BI7_00)
    A  RFC Options> H=q4de3gsy203,S=00,d=2,
    A  RFC FRFC> fallback activ but this is not a central instance.
    A   
    A  RFC rfc/signon_error_log = -1
    A  RFC rfc/dump_connection_info = 0
    A  RFC rfc/dump_client_info = 0
    A  RFC rfc/cp_convert/ignore_error = 1
    A  RFC rfc/cp_convert/conversion_char = 23
    A  RFC rfc/wan_compress/threshold = 251
    A  RFC rfc/recorder_pcs not set, use defaule value: 2
    A  RFC rfc/delta_trc_level not set, use default value: 0
    A  RFC rfc/no_uuid_check not set, use default value: 0
    A  RFC rfc/bc_ignore_thcmaccp_retcode not set, use default value: 0
    A  RFC Method> initialize RemObjDriver for ABAP Objects
    M  ThrCreateShObjects          allocated 27042 bytes at 000000002A9E0050

    N Mon Dec 13 08:40:16 2010
    N  SsfSapSecin: putenv(SECUDIR=D:\usr\sap\BI7\DVEBMGS00\sec): ok

    N  =================================================
    N  === SSF INITIALIZATION:
    N  ===...SSF Security Toolkit name SAPSECULIB .
    N  ===...SSF trace level is 0 .
    N  ===...SSF library is D:\usr\sap\BI7\DVEBMGS00\exe\sapsecu.dll .
    N  ===...SSF hash algorithm is SHA1 .
    N  ===...SSF symmetric encryption algorithm is DES-CBC .
    N  ===...sucessfully completed.
    N  =================================================

    N Mon Dec 13 08:40:17 2010
    N  MskiInitLogonTicketCacheHandle: Logon Ticket cache pointer retrieved from shared memory.
    N  MskiInitLogonTicketCacheHandle: Workprocess runs with Logon Ticket cache.
    M  JrfcVmcRegisterNativesDriver o.k.
    W  =================================================
    W  === ipl_Init() called
    W    ITS Plugin: Path dw_gui
    W    ITS Plugin: Description ITS Plugin - ITS rendering DLL
    W    ITS Plugin: sizeof(SAP_UC) 2
    W    ITS Plugin: Release: 700, [7000.0.254.20050900]
    W    ITS Plugin: Int.version, [33]
    W    ITS Plugin: Feature set: [22]
    W    ===... Calling itsp_Init in external dll ===>
    W  === ipl_Init() returns 0, ITSPE_OK: OK
    W  =================================================
    N  VSI: WP init in ABAP VM completed with rc=0
    E  Profile-Parameter: enque/deque_wait_answer = FALSE
    E  Profile-Parameter: enque/sync_dequeall = 0
    E  Replication is disabled
    E  EnqCcInitialize: local lock table initialization o.k.
    E  EnqId_SuppressIpc: local EnqId initialization o.k.
    E  EnqCcInitialize: local enqueue client init o.k.

    S Mon Dec 13 08:40:19 2010
    S  found spool memory service RSPO-ACTIONS at 000000002A07A230

    A Mon Dec 13 08:40:20 2010
    A  **GENER Trace switched off ***
    M  SosICreateNewAnchorArray: sos_search_anchor_semantics = 1

    C Mon Dec 13 08:40:21 2010
    C  build_stmt: reallocating stmt buffer: 2000 -> 3002 characters
    B  table logging switched on for client '800'

    M Mon Dec 13 08:40:23 2010
    M  SecAudit(RsauShmInit): WP attached to existing shared memory.
    M  SecAudit(RsauShmInit): addr of SCSA........... = 000000000AFC0050
    M  SecAudit(RsauShmInit): addr of RSAUSHM........ = 000000000AFC07C0
    M  SecAudit(RsauShmInit): addr of RSAUSLOTINFO... = 000000000AFC0800
    M  SecAudit(RsauShmInit): addr of RSAUSLOTS...... = 000000000AFC080C
    M  rdisp/rb_cleaned_rfc = 0

    M Mon Dec 13 08:40:27 2010
    M  Deactivate ASTAT hyper index locking

    M Mon Dec 13 08:44:30 2010

    M  *****************************************************************************
    M  *
    M  *  LOCATION    SAP-Gateway on host q4de3gsy203 / sapgw00
    M  *  ERROR       program dbmrfc@sapdb not registered
    M  *
    M  *  TIME        Mon Dec 13 08:44:30 2010
    M  *  RELEASE     700
    M  *  COMPONENT   SAP-Gateway
    M  *  VERSION     2
    M  *  RC          679
    M  *  MODULE      gwr3cpic.c
    M  *  LINE        1835
    M  *  DETAIL      TP dbmrfc@sapdb not registered
    M  *  COUNTER     15
    M  *
    M  *****************************************************************************

    A  RFC 1485  CONVID 21905907
    A   * CMRC=2 DATA=0 STATUS=0 SAPRC=679 ThSAPOCMINIT
    A  RFC> ABAP Programm: SAPLSADC (Transaction: )
    A  RFC> User: RANGUPTA (Client: 001)
    A  RFC> Destination: SAPDB_DBM_DAEMON (handle: 2, , )
    A  RFC SERVER> RFC Server Session (handle: 1, 21904860, {D18C06E0-7859-F141-92A8-005056956B4B})
    A  RFC SERVER> Caller host:
    A  RFC SERVER> Caller transaction code:  (Caller Program: SAPLSADC)
    A  RFC SERVER> Called function module: DBM_CONNECT_PUR
    A  TH VERBOSE LEVEL FULL
    A  ** RABAX: end RX_GET_MESSAGE

    M Mon Dec 13 08:45:54 2010

    M  *****************************************************************************
    M  *
    M  *  LOCATION    SAP-Gateway on host q4de3gsy203 / sapgw00
    M  *  ERROR       program dbmrfc@sapdb not registered
    M  *
    M  *  TIME        Mon Dec 13 08:45:54 2010
    M  *  RELEASE     700
    M  *  COMPONENT   SAP-Gateway
    M  *  VERSION     2
    M  *  RC          679
    M  *  MODULE      gwr3cpic.c
    M  *  LINE        1835
    M  *  DETAIL      TP dbmrfc@sapdb not registered
    M  *  COUNTER     30
    M  *
    M  *****************************************************************************

    A  RFC 1485  CONVID 21998657
    A   * CMRC=2 DATA=0 STATUS=0 SAPRC=679 ThSAPOCMINIT
    A  RFC> ABAP Programm: SAPLSADC (Transaction: )
    A  RFC> User: RANGUPTA (Client: 001)
    A  RFC> Destination: SAPDB_DBM_DAEMON (handle: 2, , )
    A  RFC SERVER> RFC Server Session (handle: 1, 21997642, {038D06E0-8E49-F147-92A8-005056956B4B})
    A  RFC SERVER> Caller host:
    A  RFC SERVER> Caller transaction code:  (Caller Program: SAPLSADC)
    A  RFC SERVER> Called function module: DBM_CONNECT_PUR
    A  TH VERBOSE LEVEL FULL
    A  ** RABAX: end RX_GET_MESSAGE

    M Mon Dec 13 08:48:12 2010

    M  *****************************************************************************
    M  *
    M  *  LOCATION    SAP-Gateway on host q4de3gsy203 / sapgw00
    M  *  ERROR       program dbmrfc@sapdb not registered
    M  *
    M  *  TIME        Mon Dec 13 08:48:12 2010
    M  *  RELEASE     700
    M  *  COMPONENT   SAP-Gateway
    M  *  VERSION     2
    M  *  RC          679
    M  *  MODULE      gwr3cpic.c
    M  *  LINE        1835
    M  *  DETAIL      TP dbmrfc@sapdb not registered
    M  *  COUNTER     45
    M  *
    M  *****************************************************************************

    A  RFC 1485  CONVID 22146986
    A   * CMRC=2 DATA=0 STATUS=0 SAPRC=679 ThSAPOCMINIT
    A  RFC> ABAP Programm: SAPLSADC (Transaction: )
    A  RFC> User: RANGUPTA (Client: 001)
    A  RFC> Destination: SAPDB_DBM_DAEMON (handle: 2, , )
    A  RFC SERVER> RFC Server Session (handle: 1, 22145986, {558D06E0-45BF-F199-92A8-005056956B4B})
    A  RFC SERVER> Caller host:
    A  RFC SERVER> Caller transaction code:  (Caller Program: SAPLSADC)
    A  RFC SERVER> Called function module: DBM_CONNECT_PUR
    A  TH VERBOSE LEVEL FULL
    A  ** RABAX: end RX_GET_MESSAGE

    M Mon Dec 13 08:49:33 2010

    M  *****************************************************************************
    M  *
    M  *  LOCATION    SAP-Gateway on host q4de3gsy203 / sapgw00
    M  *  ERROR       program dbmrfc@sapdb not registered
    M  *
    M  *  TIME        Mon Dec 13 08:49:33 2010
    M  *  RELEASE     700
    M  *  COMPONENT   SAP-Gateway
    M  *  VERSION     2
    M  *  RC          679
    M  *  MODULE      gwr3cpic.c
    M  *  LINE        1835
    M  *  DETAIL      TP dbmrfc@sapdb not registered
    M  *  COUNTER     60
    M  *
    M  *****************************************************************************
    It is a bit large will this do ?
    Regards,
    Prasad

Maybe you are looking for