PID boucle imbriquée

Bonjour,
je cherche à réaliser un asservissement de vitesse d'un moteur à courant continu piloté par un hacheur. L'asservissement avec une boucle vitesse fonctionne bien, mais pas possible d'introduire une boucle interne d'asservissement pour le courant.Carte 6009 et LV 8.5.
merci de la réponse.
je joints 2 VI .
Pièces jointes :
n et i avec PID simple du toolkit 6009.vi ‏246 KB
avec PID simple du toolkit 6009.vi ‏197 KB

Il faut jouer sur les réglages K, Ti, Td
Si possible il ne faut jamais stopper un PID, cela perturbe ses caculs internes (ils sont liées à une base de temps).
Si vous avez besoin de 'suspendre' un PID, il vaux mieux forcer SetPoint = ProcessValue (ce qui implique une sortie à 0%)
Par contre les PID de NI sont assez bas niveau, il est parfaitement possible de rajouter des fonctions comme l'overshoot ou d'autres 'astuces' de ce genre.
soit e l'erreur de correction : e = abs (Mesure-SetPoint)
Overshoot : si e > valeur alors SetPoint = SetPoint + offset (on dope temporairement la consigne pour augmenter la vitesse d'un PID sans changer les réglage, ce qui permet de rendre rapide un pid lent et de garder une bonne stabilité si e est faile)
Loie de sortie différente : Pour une sortie entre 0 et 1, on peut appliquer la loi suivante : s = s²
> Les petites variations sont amorties, les grandes sont conservées - Cela convient bien à un système avec du bruit et/ou un pid instable (pour x raison)
Ingénieur d'Application / Développeur LabVIEW Certifié (CLD)
Application Engineer / LabVIEW Certified Developer (CLD)

Similar Messages

  • Boucles imbriquées

    Bonjour,
    Je réalise une chaine d'acquisition de données hémodynamiques. Pour cela j'ai crée un VI qui permet d'afficher et d'enregistrer les données quand l'utilisateur le souhaite.
    Je mets en pièce jointe les 2 faces du VI
    L'utilisateur enregistre sous forme de séquences qui corresponde chacune a un fichier. J'ai donc fait deux boucles for pour cela.
    Mon problème est que quand je clique sur le bouton stop le VI ne s'arréte pas...
    Merci d'avance pour votre aide
    ps: il doit y avoir d'autres erreurs ou améliorations possibles mais le VI fonctionne
    Attachments:
    untitled.JPG ‏241 KB
    untitled2.JPG ‏266 KB

    I recommend that you make a copy of this VI, remove everything except the stop buttons, and then run it with Execution Highlighting (the "light bulb" icon in the toolbar). You might also want to put a delay (the Wait(ms)) function inside the inner while loop. See if that helps you understand the problem. The way your code is currently set up, you need to first push the "stop 2" button, then the "stop" button, and the whole VI will stop. Pushing only one button, or pushing them in the wrong order, won't work.

  • Comment écrire en plusieurs colonnes dans Write to spreadsheet?

    Bonjour,
    J'ai plusieurs  données à récupérer, mais mon problème n'est pas dans l'écriture du fichier mais plutôt les écrire
    en colonne dans le fichier. J'ai deux  boucles imbriquées, une qui va prendre les données et les écrire dans un fichier , et l'autre répète
    cette manouvre x nombre de fois. J'aimerais affiché les premières données en rangée (première boucle) et quand la deuxième
    boucle répète le processus j'aimerais que les nouveaux donnés se fassent dans une nouvelle rangée et non en dessus des autres données.
    Quelqu'un peux m'aidé  ???? Cela fait 2 jours que je suis bloqué dans ce petit détail.
    Merci de vos futurs réponse.

    Pouvez-vous nous montrer votre VI?
    Je pense que vous trouverez vous ne pouvez pas ajouter une colonne à un fichier existant. Vous aurez besoin d'effacer la totalité du fichier et ensuite de recréer un nouveau fichier avec les nouvelles données ajoutées.

  • Comment écrire en colonne dans un Write to spreadsheet

    Bonjour,
    J'ai plusieurs  données à récupérer, mais mon problème n'est pas dans l'écriture du fichier mais plutôt les écrire
    en colonne dans le fichier. J'ai deux  boucles imbriquées, une qui va prendre les données et les écrire dans un fichier , et l'autre répète
    cette manouvre x nombre de fois. J'aimerais affiché les premières données en rangée (première boucle) et quand la deuxième
    boucle répète le processus j'aimerais que les nouveaux donnés se fassent dans une nouvelle rangée et non en dessus des autres données.
    Quelqu'un peux m'aidé  ???? Cela fait 2 jours que je suis bloqué dans ce petit détail.
    Merci de vos futurs réponse.
    Résolu !
    Accéder à la solution.

    Bonjour
    Sort la fonction write to spreadsheet des deux boucles et active l’indexation à la sortie de celles-ci.
    Pièces jointes :
    ajout colonne.jpg ‏21 KB
    enable indexing.jpg ‏28 KB
    ajout colonne.vi ‏11 KB

  • [DAQMX 634] Ecriture : seul le pin 0 fonctionne

    Bonjour la communauté,
    Aprés de nombreuses tentatives de génération de signaux créneaux, je me retrouve dans un problème plutôt singulier.
    en effet, l'application est simple, créer des signaux carrés sur le port 0 des lignes 0 à 3 et les lire sur les lignes 4 à 7. Cependant, seul le pin 0 fonctionne dans la génération de signal, et ceux malgrés les tests effectués et les changements de port.
    Une idée du disfonctionnement?
    Je commences sur labVIEW depuis seulement 1 semaine. Tout cela m'est totalement nouveau.
     

    Bonjour,
    Je viens de regarder ton VI, et il est très difficile de comprendre celui-ci.
    Je te conseillerais vivement de reprendre ton VIs en respectant les conseils de base de labview
    Partir d'un modèle de structure :
    - Machine d'état ou producteur/consommateur, cf les exemples à la création d'un nouveau projet
    - Un vi ne doit pas dépasser la taille d'un écran, là, il n'est pas possible de lire ton programme sans se faire de noeud au cerveau entre les boucles imbriquées et la taille de celle-ci. (metttre un structure event pour modifier les commandes face avant en les ré-écrivant leur valeur n'a aucun sens).
    - Il te faut un lien entre tes boucles pour ordonner leur exécution, la bonne pratique est de suivre la logique d'exécution grâce à la gestion d'erreur, et ainsi organiser correctement le séquencement de tes étapes.
    Essaye de retoucher un peu ton programme, afin qu'il soit lisible et que l'on puisse identifier le tenant et aboutissant en moins de 5 minutes, et alors je pourrais potentiellement t'apporter de l'aide sur la résolution de ton problème.
    Bon courage,
    Cdt
    Michael

  • Probleme de decalage dans une boucle FOR

    Bonjour j'ai un petit probleme dans ma boucle j'ai un code source et je dois extraire des informations de temperature de vent ... voici les lignes où je dois extraire les infos : 
    <tr class="temp">
    <th scope="row">Temp. (&deg;C)</th>
    <td class="first-col">6&#176;</td>
    <td class="">6&#176;</td>
    <td class="">6&#176;</td>
    <td class="">6&#176;</td>
    <td class="">5&#176;</td>
    <td class="">5&#176;</td>
    <td class="">4&#176;</td>
    <td class="last-col">4&#176;</td>
    </tr>
    <tr class="realfeel">
    <th scope="row">RealFeel&#174;</th>
    <td class="first-col">3&#176;</td>
    <td class="">3&#176;</td>
    <td class="">4&#176;</td>
    <td class="">3&#176;</td>
    <td class="">3&#176;</td>
    <td class="">4&#176;</td>
    <td class="">4&#176;</td>
    <td class="last-col">3&#176;</td>
    </tr>
    <tr class="realfeel">
    <th scope="row">Pr&#233;cipitations</th>
    <td style="border-right:solid 1px #EFECE4;" class="first-col" colspan="3">50%</td>
    <td style="border-right:solid 1px #EFECE4;" class="bggray" colspan="3">50%</td>
    <td class="last-col" colspan="3">40%</td>
    </tr>
    <tr>
    <th scope="row">Vent (km/h)</th>
    <td class="first-col">13 OSO</td>
    <td class="">11 OSO</td>
    <td class="">10 OSO</td>
    <td class="">8 OSO</td>
    <td class="">6 OSO</td>
    <td class="">6 OSO</td>
    <td class="">5 OSO</td>
    <td class="last-col">5 SO</td>
    </tr>
    <tr>
    <th scope="row">Humidit&#233;</th>
    <td class="first-col">80%</td>
    <td class="">81%</td>
    <td class="">82%</td>
    <td class="">85%</td>
    <td class="">87%</td>
    <td class="">90%</td>
    <td class="">92%</td>
    <td class="last-col">93%</td>
    </tr>
    <tr>
    <th scope="row">Indice UV</th>
    <td class="first-col">1</td>
    <td class="">0</td>
    <td class="">0</td>
    <td class="">0</td>
    <td class="">0</td>
    <td class="">0</td>
    <td class="">0</td>
    <td class="last-col">0</td>
    </tr>
    <tr>
    <th scope="row">Couverture nuageuse</th>
    <td class="first-col">83%</td>
    <td class="">100%</td>
    <td class="">100%</td>
    <td class="">100%</td>
    <td class="">100%</td>
    <td class="">100%</td>
    <td class="">100%</td>
    <td class="last-col">100%</td>
    </tr>
    <tr class="last-row">
    <th scope="row">Point de ros&#233;e</th>
    <td class="first-col">3&#176;</td>
    <td class="">3&#176;</td>
    <td class="">4&#176;</td>
    <td class="">3&#176;</td>
    <td class="">3&#176;</td>
    <td class="">3&#176;</td>
    <td class="">3&#176;</td>
    <td class="last-col">3&#176;</td>
    </tr>
     Le probleme que c'est j'ai fais 2 boucle For imbriqué la premiere elle lit les données " les valeurs de la temperature..." et la deuxieme pour quelle passe à la prochaine donnée par exemple:  vent pour que je puisse lire ces valeurs ainsi de suite , mais ca marche pas !!! vu quelle reste toujours dans la premiere donnée "temperature " ensuite elle sort, et  au final j'ai juste les primiere valeurs  AIDER MOI PLZZZZZZ !!! MERCI
    PS : voici mon VI dans les pieces jointes  
    Pièces jointes :
    La total.vi ‏95 KB

    Bonjour,
    Pour ce qui est de récupérer tes valeurs, il suffit de récupérer  et de modifier le Vi que je t'avais envoyé dans le post suivant :
    http://forums.ni.com/t5/Discussions-de-produit-de-NI/remplir-un-tableau/m-p/1870401#M45083
    Il d'y ajouter une boucle For de modifier les fins de lignes et de faire un tableau 1D avec les en-têtes des blocs de mesures que tu veux récupérer, par exemple :
    <th scope="row">Temp. (&deg;C)</th>
    <th scope="row">RealFeel&#174;</th>
    <th scope="row">Vent (km/h)</th>

  • Problème PID

    Bonjour, 
    J'ai un problème avec un programme Labview type ConpactRIO. Je travaille sous 3 cibles IHM (PC), RT, FPGA.
    Dans ma cible RT, j'utilise 6 PID.
    Malheuresement quand je lance mon programme, les entrées/sorties automate se bloquent à l'activation de la structure PID.
    Est ce que vous auriez une idée du type de problème rencontré, et d'une solution pour contourner le problème.
    J'avais pensé à transférer les boucles PID sur le cible IHM(PC).
    Mais le plus important à l'heure actuelle est que je puisse identifier qu'elle est le problème.
    Merci d'avance
    Simon

    Hi Simaoniko,
    You are on English speeaking forum. Please ask your question in English please or post it in French forum.
    http://forums.ni.com/t5/Discussions-au-sujet-de-NI/bd-p/4171
    Thanks
    Paolo_P
    National Instruments France
    #adMrkt{text-align: center;font-size:11px; font-weight: bold;} #adMrkt a {text-decoration: none;} #adMrkt a:hover{font-size: 9px;} #adMrkt a span{display: none;} #adMrkt a:hover span{display: block;}
    Travaux Pratiques d'initiation à LabVIEW et à la mesure
    Du 2 au 23 octobre, partout en France

  • After effects - Durée boucle loopOut

    Bonjour à tous,
    J'utilise after effects depuis très peu et je n'arrive pas à trouver de solution à mon problème malgré pas mal de recherches.
    J'ai une composition où un personnage (compo 1) est animé (ses jambes bougent) en continue grace à une boucle, composition que j'integre dans une autre composition (compo finale), où je fais faire un mouvement de translation à mon personnage (pour qu'il marche, fort original).
    Je voudrais faire faire ce mouvement précis à mon perso : Départ (donc marche, la boucle fonctionne) / Pause (arret de la trajectoire, arret de la boucle, perso immobile) / Redépart (re marche, re boucle).
    Mon problème est que pour la pause, je voudrais faire stoper la boucle et que je n'ai aucune idée de comment faire. Je voudrais savoir si il est possible dans ma "compo 1" d'écrire un expression faisant tourner la boucle pendant par exemple 5 secondes, l'arreter, et la refaire fonctionner.
    J'espère avoir été clair, et vous remercie d'avance.

    Je ne sais pas comment vous boucles sont imbriquées (précomps ?) mais peut-être qu'un remappage temporel résoudrait vos problèmes ?

  • Modifier la condition de fin d'une boucle for

    Bonjour à tous,
    Je bute sur un problème qui est de modifier la condtion de fin d'une boucle for. Voici mons soucis, je dipose de deux boucles for imbriquées : l'une est nommée maître et l'autre esclave. Je souhaite qu'après avoir lancé le vi l'utlisateur puisse modifier la valeur de fin de la boucle esclave alors que la boucle maître se trouve toujours à l'indice n.
    En résumé :
    condition avant lancement du vi, "cpt boucle maître" = 10 et "cpt boucle esclave" = 100
    lacement du vi
    lorsque la boucle maître est à l'indice 7 par exemple, que l'indice de la boucle esclave se trouve à l'indice 70.  Si l'utilsateur modifie la valeur "cpt boucle esclave" et la met 200 en validant par le bouton "Valider nouvelle valeur boucle esclave", il faut que la boucle esclave aille jusqu'à l'indice 200 pour l'indice 7 de la boucle maître. Si ce n'est pas possible, il faut que la valeur 200 soit prise en compte pour l'indice 8 de la boucle maître.
    Une de mes contraintes étant de conserve le cluster.
    En vous remerciant
    Djamel
    Résolu !
    Accéder à la solution.
    Pièces jointes :
    boucle maitre esclave.vi ‏10 KB

    Au risque de paraître un peu pédant, je te renvoie vers les règles de développement : http://www.ni.com/pdf/manuals/321393d.pdf
    page 6-10 : Avoid the use of local variables when you can use a wire to transfer
    data. Every local variable that reads the data makes a copy of the data.
    page 6-11 : Use global and local variables as sparingly as possible. You can use
    both global and local variables to write VIs very efficiently. However,
    if you misuse or abuse global and local variables, particularly with data
    types, the memory usage of the VI increases and the performance is
    affected.
    Additionally, you can encounter race conditions when reading from
    and writing to global variables in the same application. These race
    conditions are difficult to debug since there is no data dependency
    between different instances of the same global variable on the block
    diagram.
    Consider using functional global variables instead of global variables.
    Functional global variables do not create extra copies of data and allow
    certain actions such as initialize, read, write, and empty. Refer to the
    Using LabVIEW to Create Multithreaded VIs for Maximum
    Performance and Reliability Application Note for more information
    on using functional global variables.
    Si l'anglais n'est pas ton fort : il existe peut être une bonne âme pour t'aider
    When my feet touch the ground each morning the devil thinks "bloody hell... He's up again!"

  • PID - comportements bizarres

    Bonjour,
    Nous venons d'intégrer une installation industrielle dont le controle commande est assuré par un poste de travail Labview2010 et un compactRio Real Time.
    Cette installation régule entre autre 2 chauffes thermiques par resistances (effet joule)...
    Nous rencontrons des difficultés concernant les boucles de régulation PID que nous avons intégrées dans le diagramme du CompactRio Real Time (voir fichier Pid_RTCrio.jpg ci joint pour + de détails) :
    - vous trouverez ci joint (fichier Pid_GraphPBPID.jpg), reportant le comportement de notre régulation; il apparait nettement des pics 0% ou 100% qui nous semblent inopportuns; nous avons tout vérifié et nous pouvons dire qu'il ne s'agit pas d'un problème d'affichage puisque la sortie electrique associée à la sortie PID se comportent comme ce que l'on voit apparaitre sur le graphe.
    - comment éliminer ces pics ? nous avons essayé plusieurs jeux de paramètres PID, rien n'y fait...
    - pour info, nous avons cablé sur l'entrée dt de chaque bloque PID la constante '10'; cela a semble t-il résolu le problème des pics, mais nous ne comprenons pas pourquoi; pouvez nous dire à quoi sert ce paramètre dt du PID ? ; l'aide Labview et le document PID_User_Manual.pdf ne nous permettent pas de trouver l'explication...
    - enfin, nous avons réussi à réguler au 1/10 de degré (ce qui nous satisfait) mais encore une fois nous avons du mettre le paramètre I (intégration) à 5000 minutes !!! le P est à 20 et le D à 1; malgré le document PID_User_Manual.pdf, nous ne comprenons à quoi correspondent ces 5000 minutes ?
    Nous sommes conscients de nos limites en développement Labview et en régulation PID,
    N'hésitez pas s'il vous manque des précisions,
    Nous vous remercions par avance de vos réponses qui nous aideraient vraiment à apprécier votre produit,
    Cordialement.
    Attachments:
    Pid_RTCrio.jpg ‏252 KB
    Pid_GraphPBPID.jpg ‏1097 KB

    Bonjour et merci d'être venu sur le forum de discussions de National Instruments.
    Après une étude du graphe de signal en sortie de votre application, La fréquence d'apparition des pics de tension ( 0% ou 100%) semble constante (en moyenne 18 pics par intervalles de 30 minutes). Une solution enisageable serait de mettre en place une solution de filtrage, de type passe-bas, afin d'éliminer ces pics.
    Concernant le paramètre dt du vi PID, je vous invite à consulter le vi d'exemple de l'aide LabVIEW, intitulé "General PID Simulator" que vous pouvez atteindre depuis l'aide détaillée de la fonction PID ou depuis la recherche d'exemple. Je vous joins une capture du diagramme de cet exemple.
    Ce paramètre s'avère être celui définissant la fréquence d'appel des cycles d'execution, il est donc important de le définir, que ce soit en cablant une constante (ou une commande) sur cette entrée, ou en incluant une fonction d'attente dans votre boucle while (méthode montrée dans l'exemple).
    En éspérant vous avoir aidé avec ces élements de réponse,
    Cordialement,
    Vincent.O
    National Instruments France
    #adMrkt{text-align: center;font-size:11px; font-weight: bold;} #adMrkt a {text-decoration: none;} #adMrkt a:hover{font-size: 9px;} #adMrkt a span{display: none;} #adMrkt a:hover span{display: block;}
    Été de LabVIEW 2014
    12 présentations en ligne, du 30 juin au 18 juillet
    Attachments:
    exemplePID.png ‏21 KB

  • Issue in SAP Dialog process (Stop Workproc 3, PID 11754)

    Dear All,
    I have an issue in out system,
    We are using SAP ECC 6 (7.00), running in OS Sun SPARC 9.
    Oracle Database 10.2.0.4
    last monday our Dialog server hung.
    If I check in SM21, it said that the process is stop. the log in the os level didn't very help.
    Please your help to find the root cause of this issue.
    Below are the Trace from /usr/sap/<SID>/D40/work/
    M Mon Aug  9 19:27:43 2010
    M  *** WARNING => ThSndDelUser: delete client/user 100/DELIVERAWP11 (T102) on server veccprod_AOP_30
    M
    M Mon Aug  9 21:41:29 2010
    M  ThAlarmHandler (1)
    M  ThAlarmHandler (1)
    M  ThAlarmHandler: set CONTROL_TIMEOUT/DP_CONTROL_JAVA_EXIT and break sql
    M  ThAlarmHandler: return from signal handler
    M
    M Mon Aug  9 21:42:29 2010
    M  ThAlarmHandler (2)
    M  ThAlarmHandler (2)
    M  ThAlarmHandler: 2. ALARM: terminate process (pid=11754, user is T146/M0)
    M  ThAlarmHandler: prv_action of W3: 0x2
    M  ThAlarmHandler: set clean state of T146/M0 to DP_TIMEOUT
    M  ThAlarmHandler: roll out T146/M0
    M  ThRollOut: roll out T146/U5516/M0/I1 (level=7, short_roll_out=0)
    M  ThCallHooks: call hook >SAP-Trace RFC save< for event BEFORE_ROLL_OUT
    M  TrThHookFunc: called for Rollout
    M  ThCallHooks: call hook >dyRollInOutHook< for event BEFORE_ROLL_OUT
    M  ThCallHooks: call hook >ITSP: RollOut< for event BEFORE_ROLL_OUT
    M  SosISearchAnchor: anchorArray allocated but no value stored yet
    M  ThCallHooks: call hook >rsts_before_rollout< for event BEFORE_ROLL_OUT
    M  SosISearchAnchor: anchorArray allocated but no value stored yet
    M  SosISearchAnchor: anchorArray allocated but no value stored yet
    M  ThCallHooks: call hook >abRtmRollOut< for event BEFORE_ROLL_OUT
    M  ThRollOut: call rrol_out (1)
    M  ThRollOut: act roll state = DP_ROLLED_OUT
    M  ThRollOut: roll level <> 0, don't call ab_rollout
    M  ThRollOut: full roll out of U5516 M0 I1 (Level 7) ok
    M  ThAlarmHandler: prv_action of W3: 0xa
    M  ThAlarmHandler: save snc contexts
    M  ThISncSaveAllContexts: save 0 snc contexts
    M  ThAlarmHandler: C-Stack during alarm handler
    M  -
    C-STACK -
    [0] DoStack2 ( 0x1063db3c0, 0xffffffff7fffa3a0, 0x1005739a4, 0x0, 0x14, 0x1036651f8 ), at 0x1005739a4
    [1] CTrcStack2 ( 0x103f41940, 0x0, 0x1a000, 0x1036eb758, 0x100570cc4, 0x1036651f8 ), at 0x100573540
    [2] ThAlarmHandler ( 0x1, 0x36eb400, 0x1, 0x1036cfd20, 0x1036cfac6, 0x1036ce730 ), at 0x10031bc84
    [3] DpSigAlrm ( 0x0, 0x36ce400, 0x100000000, 0x1, 0x0, 0x1003199c0 ), at 0x100272724
    [4] __sighndlr ( 0xe, 0x0, 0xffffffff7fffae70, 0x10027256c, 0x0, 0xd ), at 0xffffffff7c2d418c
    [5] call_user_handler ( 0xffffffff7d300200, 0xffffffff7d300200, 0xffffffff7fffae70, 0x0, 0x0, 0x0 ), at 0xffffffff7c2c7d28
    [6] sigacthandler ( 0x0, 0x0, 0xffffffff7fffae70, 0xffffffff7d300200, 0x0, 0xffffffff7c43a000 ), at 0xffffffff7c2c7f20
    [7] RqOsSem ( 0x2b, 0x16000158, 0x0, 0x1063e09d0, 0x100000000, 0xffffffff7fffb208 ), at 0x10029e930
    [8] SemRq ( 0x16000158, 0x1, 0xffffffffffffffff, 0x103f23830, 0x2b, 0x1063f78f8 ), at 0x1002a00d4
    [9] SpLockSema ( 0x104685ea8, 0xe, 0x2b, 0x36eb400, 0x0, 0x1036eb74c ), at 0x10184eca4
    [10] SpOptGet ( 0xffffffff7fffb6c8, 0xffffffff7fffb538, 0x10257f800, 0x257f800, 0x100000000, 0x1 ), at 0x101821c2c
    [11] OptAbapGetEntry ( 0xfffffffea512d6e0, 0x0, 0x0, 0x10, 0x3ca6000, 0xfffffffea512d390 ), at 0x101822440
    [12] OptAbapGet ( 0x0, 0x0, 0xfffffffea512d6e0, 0x103ca6108, 0x0, 0x0 ), at 0x1018225fc
    [13] SpOptAbapInterface ( 0x105dba764, 0x0, 0x0, 0x1039e7ab8, 0x0, 0x103ca62ec ), at 0x10182319c
    [14] rspoacc_abap_cache_control ( 0x103a6a490, 0x1, 0x31b0c00, 0x105dba82c, 0x0, 0x1018230cc ), at 0x101978a38
    [15] __1cIab_jcaly6F_v_ ( 0xfffffffe09f5ec7a, 0xfffffffe09f653cc, 0x106520538, 0xfffffffe09f61cd8, 0x103916558, 0x1 ), at 0x100c008a0
    [16] __1cIab_extri6F_i_ ( 0x100000000, 0x6520400, 0x1f0, 0x1, 0x0, 0x3e ), at 0x1007a0948
    [17] __1cJab_xevent6FpkH_i_ ( 0x0, 0x0, 0xfffffffe14b2db38, 0x0, 0x106520538, 0xd3a6 ), at 0x100a81978
    [18] ab_dstep ( 0x1063fbc00, 0x100000000, 0x10236cb7c, 0x1063fbeb4, 0x0, 0x37 ), at 0x100c874a0
    [19] dynpmcal ( 0xfffffffea5318dc0, 0x106bf3a30, 0xfffffffea53214f6, 0x103c1af00, 0x36ebc00, 0xfffffffea5319e78 ), at 0x1005998bc
    [20] dynppai0 ( 0xfffffffea5318dc0, 0xfffffffea53206ec, 0x0, 0xfffffffea53206ec, 0x0, 0x496 ), at 0x100595b4c
    [21] dynprctl ( 0xfffffffea5318dc0, 0x40, 0x1036cfb00, 0x1170, 0x1, 0x10fc ), at 0x1005945dc
    [22] dynpen00 ( 0x1e240, 0x1, 0x100000000, 0x1118, 0xfffffffea5318dc0, 0x0 ), at 0x100590590
    [23] TskhLoop ( 0x8, 0x1063e6f38, 0x2, 0x63e6c00, 0x1, 0x0 ), at 0x1002c63a8
    [24] ThStart ( 0x1, 0x2b1400, 0x1002b1400, 0x100000000, 0x1, 0x0 ), at 0x1002b1fb4
    [25] DpMain ( 0x3e8c000, 0x36ce400, 0x100000000, 0x1, 0x0, 0x0 ), at 0x1001db078
    M  -
    M Mon Aug  9 21:42:30 2010
    M  ThCheckEmMagic: check em magic at 0xfffffffea5001460 for T146/M0/I1
    M  ThCheckEmMagic: em magic at 0xfffffffea5001460 for T146/M0/I1 o.k.
    M  ThEmContextDetach2: detach T146/M0 from em memory (em_hdl=31, force=0)
    M  ThEmContextDetach2: reset local em info
    M  ***LOG Q02=> wp_halt, WPStop (Workproc 3 11754) [dpuxtool.c   269]
    trc file: "dev_w3", trc level: 1, release: "700"
    ACTIVE TRACE LEVEL           1
    ACTIVE TRACE COMPONENTS      all, MJ
    M sysno      40
    M sid        AOP
    M systemid   370 (Solaris on SPARCV9 CPU)
    M relno      7000
    M patchlevel 0
    M patchno    185
    M intno      20050900
    M make:      single threaded, Unicode, 64 bit, optimized
    M pid        25502
    M
    M
    M Mon Aug  9 21:42:59 2010
    M  kernel runs with dp version 241000(ext=110000) (@(#) DPLIB-INT-VERSION-241000-UC)
    M  length of sys_adm_ext is 576 bytes
    M  ThInit: running on host prodaop
    M  calling db_connect ...
    C  Oracle Client Version: '10.2.0.2.0'
    C  Client NLS settings: AMERICAN_AMERICA.UTF8
    C  Logon as OPS$-user to get SAPSR3's password
    C  Connecting as /@AOP on connection 0 (nls_hdl 0) ... (dbsl 700 030508)
    C  Nls CharacterSet                 NationalCharSet              C      EnvHp      ErrHp ErrHpBatch
    C    0 UTF8                                                      1 0x10761ab80 0x107622640 0x107632dd8
    C  Attaching to DB Server AOP (con_hdl=0,svchp=0x107632d08,srvhp=0x107635058)
    C  Starting user session (con_hdl=0,svchp=0x107632d08,srvhp=0x107635058,usrhp=0x107622e58)
    C  Now '/@AOP' is connected: con_hdl=0, nls_hdl=0, session_id=697.
    C  Got SAPSR3's password from OPS$-user
    C  Disconnecting from connection 0 ...
    C  Closing user session (con_hdl=0,svchp=0x107632d08,usrhp=0x107622e58)
    C  Now I'm disconnected from ORACLE
    C  Connecting as SAPSR3/<pwd>@AOP on connection 0 (nls_hdl 0) ... (dbsl 700 030508)
    C  Nls CharacterSet                 NationalCharSet              C      EnvHp      ErrHp ErrHpBatch
    C    0 UTF8                                                      1 0x10761ab80 0x107622640 0x107632dd8
    C  Starting user session (con_hdl=0,svchp=0x107632d08,srvhp=0x107635058,usrhp=0x107622e58)
    C  Now 'SAPSR3/<pwd>@AOP' is connected: con_hdl=0, nls_hdl=0, session_id=692.
    C  Database NLS settings: AMERICAN_AMERICA.UTF8
    C  DB instance AOP is running on eccprod with ORACLE version 10.2.0.4.0 since JUL 16, 2010, 21:55:15
    B  Connection 0 opened (DBSL handle 0)
    B  Wp  Hdl ConName          ConId     ConState     TX  PRM RCT TIM MAX OPT Date     Time   DBHost
    B  000 000 R/3              000000000 ACTIVE       NO  YES NO  000 255 255 20100809 214259 eccprod
    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
    I  MtxInit: 3 0 0
    M  SHM_PRES_BUF                 (addr: 0xffffffff7200a000, size: 20000000)
    M  SHM_ROLL_AREA                (addr: 0xfffffffe4a000000, size: 134217728)
    M  SHM_PAGING_AREA              (addr: 0xfffffffe40000000, size: 134217728)
    M  SHM_ROLL_ADM                 (addr: 0xffffffff73320000, size: 2672386)
    M  SHM_PAGING_ADM               (addr: 0xffffffff79d00000, size: 656416)
    M  ThCreateNoBuffer             allocated 572152 bytes for 1000 entries at 0xfffffffe38004000
    M  ThCreateNoBuffer             index size: 3000 elems
    M  ThCreateVBAdm                allocated 12176 bytes (50 server) at 0xffffffff79c00000
    X  EmInit: MmSetImplementation( 2 ).
    X  MM global diagnostic options set: 0
    X  <ES> client 3 initializing ....
    X  Using implementation std
    X  <ES> Info: use normal pages (no huge table support available)
    X  ES initialized.
    X  mm.dump: set maximum dump mem to 96 MB
    B  dbntab: NTAB buffers attached
    B  dbntab: Buffer FTAB(hash header)  (addr: 0xfffffffe38092088, size: 584)
    B  dbntab: Buffer FTAB(anchor array) (addr: 0xfffffffe380922d0, size: 480104)
    B  dbntab: Buffer FTAB(item array)   (addr: 0xfffffffe38107638, size: 1920000)
    B  dbntab: Buffer FTAB(data area)    (addr: 0xfffffffe382dc238, size: 61440000)
    B  dbntab: Buffer IREC(hash header)  (addr: 0xfffffffe3bd78088, size: 584)
    B  dbntab: Buffer IREC(anchor array) (addr: 0xfffffffe3bd782d0, size: 480104)
    B  dbntab: Buffer IREC(item array)   (addr: 0xfffffffe3bded638, size: 480000)
    B  dbntab: Buffer IREC(data area)    (addr: 0xfffffffe3be62938, size: 8192000)
    B  dbntab: Buffer STAB(hash header)  (addr: 0xfffffffe3c636088, size: 584)
    B  dbntab: Buffer STAB(anchor array) (addr: 0xfffffffe3c6362d0, size: 480104)
    B  dbntab: Buffer STAB(item array)   (addr: 0xfffffffe3c6ab638, size: 480000)
    B  dbntab: Buffer STAB(data area)    (addr: 0xfffffffe3c720938, size: 3072000)
    B  dbntab: Buffer TTAB(hash header)  (addr: 0xfffffffe3ca12088, size: 5576)
    B  dbntab: Buffer TTAB(anchor array) (addr: 0xfffffffe3ca13650, size: 480104)
    B  dbntab: Buffer TTAB(item array)   (addr: 0xfffffffe3ca889b8, size: 1200000)
    B  dbntab: Buffer TTAB(data area)    (addr: 0xfffffffe3cbad938, size: 8760000)
    B  db_con_shm_ini:  WP_ID = 3, WP_CNT = 48, CON_ID = 3000041
    B  dbstat: TABSTAT buffer attached (addr: 0xfffffffe34024008)
    B  dbtbxbuf: Buffer TABL  (addr: 0xfffffffe2e000100, size: 100000000, end: 0xfffffffe33f5e200)
    B  dbtbxbuf: Buffer TABLP (addr: 0xfffffffe2a000100, size: 61440000, end: 0xfffffffe2da98100)
    B  dbexpbuf: Buffer EIBUF (addr: 0xfffffffe26000108, size: 40960000, end: 0xfffffffe28710108)
    B  dbexpbuf: Buffer ESM   (addr: 0xffffffff6b000108, size: 4194304, end: 0xffffffff6b400108)
    B  dbexpbuf: Buffer CUA   (addr: 0xfffffffe3d412108, size: 10240000, end: 0xfffffffe3ddd6108)
    B  dbexpbuf: Buffer OTR   (addr: 0xffffffff6a800108, size: 4194304, end: 0xffffffff6ac00108)
    B  dbcalbuf: Buffer CALE  (addr: 0xffffffff76f20000, size: 500000, end: 0xffffffff76f9a120)
    M  CCMS: AlInitGlobals : alert/use_sema_lock = TRUE.
    S  *** init spool environment
    S  initialize debug system
    T  Stack direction is downwards.
    T  debug control: prepare exclude for printer trace
    T  new memory block 0x1078e2310
    S  spool kernel/ddic check: Ok
    S  using table TSP02FX for frontend printing
    S  2 spool work process(es) found
    S  frontend print via spool service enabled
    M
    M Tue Aug 10 09:58:40 2010
    M  DpSigInt: caught signal 2
    M  in_ThErrHandle: 1
    M  ThSigHandler: signal (step 1, th_errno 11, action 2)
    M  ThIErrHandle: new stat of W3 is WP_SHUTDOWN
    M  ThIErrHandle: I'm during shutdown
    M  PfStatDisconnect: disconnect statistics
    M  ThIErrHandle: action changed to 2
    M  Entering ThSetStatError
    M  ThShutDownServer: shutdown server
    M  PfStatIndInit: Initializing Index-Record
    M  PfWriteIntoFile: copied shared buf (0 bytes) to local buf
    M  ThIErrHandle: do not call ThrCoreInfo (no_core_info=0, in_dynp_env=1)
    M  Entering ThReadDetachMode
    M  call ThrShutDown (1)...
    M  ***LOG Q02=> wp_halt, WPStop (Workproc 3 25502) [dpuxtool.c   269]
    You have new mail in /var/mail//root
    Thanks and Best Regards,
    Widi

    Dear Mark,
    I posted the dev_w3 file.
    Below are the dev_w0 and Dev_disp:
    Mon Aug  9 21:41:08 2010
    DpEnvCheck: set dp_high_prio_state to DP_HPRIO_TIMEOUT (2 rqs)
    gui_auto_logout exceeded for T92 but mode 0 still active - logout delayed
    Mon Aug  9 21:41:48 2010
    DpEnvCheck: set dp_high_prio_state to DP_HPRIO_TIMEOUT (2 rqs)
    Mon Aug  9 21:42:28 2010
    DpEnvCheck: set dp_high_prio_state to DP_HPRIO_TIMEOUT (2 rqs)
    Mon Aug  9 21:42:58 2010
    DpHdlDeadWp: restart wp (pid=6700) automatically
    DpHdlDeadWp: restart wp (pid=11754) automatically
    DpHdlDeadWp: restart wp (pid=27188) automatically
    Mon Aug  9 21:42:59 2010
    DpHdlDeadWp: restart wp (pid=7523) automatically
    Mon Aug  9 21:43:32 2010
    DpHdlDeadWp: restart wp (pid=15171) automatically
    DpEnvCheck: set dp_high_prio_state to DP_HPRIO_TIMEOUT (2 rqs)
    Mon Aug  9 21:44:12 2010
    DpEnvCheck: set dp_high_prio_state to DP_HPRIO_TIMEOUT (2 rqs)
    Mon Aug  9 21:44:32 2010
    DpHdlDeadWp: restart wp (pid=23058) automatically
    Mon Aug  9 21:44:43 2010
    DpHdlDeadWp: restart wp (pid=27680) automatically
    DpHdlDeadWp: restart wp (pid=728) automatically
    Mon Aug  9 21:44:52 2010
    DpEnvCheck: set dp_high_prio_state to DP_HPRIO_TIMEOUT (3 rqs)
    WARNING => DpEnvCheck: timeout of HIGH PRIO msg, return DP_CANT_HANDLE_REQ
    Mon Aug  9 21:45:37 2010
    DpHdlDeadWp: restart wp (pid=9775) automatically
    DpEnvCheck: set dp_high_prio_state to DP_HPRIO_TIMEOUT (2 rqs)
    Mon Aug  9 21:46:00 2010
    DpHdlDeadWp: restart wp (pid=11467) automatically
    DpHdlDeadWp: restart wp (pid=16335) automatically
    gui_auto_logout exceeded for T110 but mode 2 still active - logout delayed
    Mon Aug  9 21:46:06 2010
    DpHdlDeadWp: restart wp (pid=14628) automatically
    Mon Aug  9 21:46:20 2010
    DpEnvCheck: set dp_high_prio_state to DP_HPRIO_TIMEOUT (2 rqs)
    Mon Aug  9 21:47:00 2010
    DpEnvCheck: set dp_high_prio_state to DP_HPRIO_TIMEOUT (2 rqs)
    gui_auto_logout exceeded for T146 but mode 0 still active - logout delayed
    Mon Aug  9 21:47:10 2010
    DpHdlDeadWp: restart wp (pid=12269) automatically
    Mon Aug  9 21:47:40 2010
    DpEnvCheck: set dp_high_prio_state to DP_HPRIO_TIMEOUT (2 rqs)
    Mon Aug  9 21:48:20 2010
    DpEnvCheck: set dp_high_prio_state to DP_HPRIO_TIMEOUT (2 rqs)
    Mon Aug  9 21:49:12 2010
    DpHdlDeadWp: restart wp (pid=15842) automatically
    Mon Aug  9 21:49:13 2010
    DpEnvCheck: set dp_high_prio_state to DP_HPRIO_TIMEOUT (2 rqs)
    and dev_w0
    M Mon Aug  9 21:42:43 2010
    M  ThAlarmHandler (2)
    M  ThAlarmHandler (2)
    M  ThAlarmHandler: 2. ALARM: terminate process (pid=6700, user is T0/M0)
    M  ThAlarmHandler: prv_action of W0: 0x2
    M  ThAlarmHandler: set clean state of T0/M0 to DP_TIMEOUT
    M  ThAlarmHandler: roll out T0/M0
    M  ThRollOut: roll out T0/U1/M0/I0 (level=7, short_roll_out=0)
    M  ThCallHooks: call hook >SAP-Trace RFC save< for event BEFORE_ROLL_OUT
    M  TrThHookFunc: called for Rollout
    M  ThCallHooks: call hook >dyRollInOutHook< for event BEFORE_ROLL_OUT
    M  ThCallHooks: call hook >ITSP: RollOut< for event BEFORE_ROLL_OUT
    M  ThCallHooks: call hook >rsts_before_rollout< for event BEFORE_ROLL_OUT
    M  ThCallHooks: call hook >abRtmRollOut< for event BEFORE_ROLL_OUT
    M  ThRollOut: call rrol_out (1)
    M  ThRollOut: act roll state = DP_ROLLED_OUT
    M  ThRollOut: roll level <> 0, don't call ab_rollout
    M  ThRollOut: full roll out of U1 M0 I0 (Level 7) ok
    M  ThAlarmHandler: prv_action of W0: 0xa
    M  ThAlarmHandler: save snc contexts
    M  ThISncSaveAllContexts: save 0 snc contexts
    M  ThAlarmHandler: C-Stack during alarm handler
    M  -
    C-STACK -
    [0] DoStack2 ( 0x1063db3c0, 0xffffffff7fffdc90, 0x1005739a4, 0x0, 0x14, 0x1036651f8 ), at 0x1005739a4
    [1] CTrcStack2 ( 0x103f41940, 0x0, 0x1a000, 0x1036eb758, 0x100570cc4, 0x1036651f8 ), at 0x100573540
    [2] ThAlarmHandler ( 0x1, 0x36eb400, 0x1, 0x1036cfd20, 0x1036cfac6, 0x1036ce730 ), at 0x10031bc84
    [3] DpSigAlrm ( 0x0, 0x36ce400, 0x100000000, 0x1, 0x0, 0x1003199c0 ), at 0x100272724
    [4] __sighndlr ( 0xe, 0x0, 0xffffffff7fffe760, 0x10027256c, 0x0, 0xd ), at 0xffffffff7c2d418c
    [5] call_user_handler ( 0xffffffff7d300200, 0xffffffff7d300200, 0xffffffff7fffe760, 0x0, 0x0, 0x0 ), at 0xffffffff7c2c7d28
    [6] sigacthandler ( 0x0, 0x0, 0xffffffff7fffe760, 0xffffffff7d300200, 0x0, 0xffffffff7c43a000 ), at 0xffffffff7c2c7f20
    [7] RqOsSem ( 0x2b, 0x16000158, 0x0, 0x1063e09d0, 0x100000000, 0xffffffff7fffeaf8 ), at 0x10029e930
    [8] SemRq ( 0x16000158, 0x1, 0xffffffffffffffff, 0x103f23830, 0x2b, 0x1063f78f8 ), at 0x1002a00d4
    [9] SpLockSema ( 0x104685ea8, 0xe, 0x2b, 0x36eb400, 0x0, 0x1036eb74c ), at 0x10184eca4
    [10] LockGlobalLock ( 0xfffffffe3dddb334, 0x1, 0x1036eb400, 0x36eb400, 0x100000000, 0x1 ), at 0x1017fd260
    [11] Global_writelockRWLock ( 0xfffffffe3dddb2e0, 0x1039edc00, 0x39edc00, 0x100000000, 0x1, 0x0 ), at 0x1017fde5c
    [12] writelockRWLock ( 0xfffffffe3dddb2e0, 0x0, 0x0, 0x1039e7ab8, 0x0, 0x103c9e6bc ), at 0x1017ff93c
    [13] SrvWriteLock ( 0x0, 0xfffffffe3dddb2c8, 0x1039f0400, 0x39f0400, 0x100000000, 0x1 ), at 0x101844604
    [14] SpSrvAdmin ( 0x1, 0xffffffff7ffff358, 0x0, 0x1039f0bc8, 0x103cb0c90, 0x0 ), at 0x10184b1ac
    [15] SpAdXAdmin ( 0xffffffff7ffff34c, 0x3166400, 0xffffffff7ffff47f, 0x3166400, 0x104687780, 0x100000000 ), at 0x1017e78d8
    [16] AdIExecBlkConv ( 0x1075374ec, 0x10041b368, 0x1061d18e8, 0x1, 0x107537460, 0x7770 ), at 0x101d0e288
    [17] TskhLoop ( 0x100000000, 0x0, 0x0, 0x0, 0x1036eb400, 0x1 ), at 0x1002c2738
    [18] ThStart ( 0x1, 0x2b1400, 0x1002b1400, 0x100000000, 0x1, 0x0 ), at 0x1002b1fb4
    [19] DpMain ( 0x3e8c000, 0x36ce400, 0x100000000, 0x1, 0x0, 0x0 ), at 0x1001db078
    M  -
    M  ThEmContextDetach2: detach T0/M0 from em memory (em_hdl=25, force=0)
    M  ThEmContextDetach2: reset local em info
    M  ***LOG Q02=> wp_halt, WPStop (Workproc 0 6700) [dpuxtool.c   269]
    trc file: "dev_w0", trc level: 1, release: "700"
    ACTIVE TRACE LEVEL           1
    ACTIVE TRACE COMPONENTS      all, MJ
    M sysno      40
    M sid        AOP
    M systemid   370 (Solaris on SPARCV9 CPU)
    M relno      7000
    M patchlevel 0
    M patchno    185
    M intno      20050900
    M make:      single threaded, Unicode, 64 bit, optimized
    M pid        25501
    M
    M
    M Mon Aug  9 21:42:59 2010
    M  kernel runs with dp version 241000(ext=110000) (@(#) DPLIB-INT-VERSION-241000-UC)
    M  length of sys_adm_ext is 576 bytes
    M  ThInit: running on host prodaop
    M  calling db_connect ...
    C  Oracle Client Version: '10.2.0.2.0'
    C  Client NLS settings: AMERICAN_AMERICA.UTF8
    C  Logon as OPS$-user to get SAPSR3's password
    C  Connecting as /@AOP on connection 0 (nls_hdl 0) ... (dbsl 700 030508)
    C  Nls CharacterSet                 NationalCharSet              C      EnvHp      ErrHp ErrHpBatch
    C    0 UTF8                                                      1 0x10761ab80 0x107622640 0x107632dd8
    C  Attaching to DB Server AOP (con_hdl=0,svchp=0x107632d08,srvhp=0x107635058)
    C  Starting user session (con_hdl=0,svchp=0x107632d08,srvhp=0x107635058,usrhp=0x107622e58)
    C  Now '/@AOP' is connected: con_hdl=0, nls_hdl=0, session_id=669.
    C  Got SAPSR3's password from OPS$-user
    C  Disconnecting from connection 0 ...
    C  Closing user session (con_hdl=0,svchp=0x107632d08,usrhp=0x107622e58)
    C  Now I'm disconnected from ORACLE
    C  Connecting as SAPSR3/<pwd>@AOP on connection 0 (nls_hdl 0) ... (dbsl 700 030508)
    C  Nls CharacterSet                 NationalCharSet              C      EnvHp      ErrHp ErrHpBatch
    C    0 UTF8                                                      1 0x10761ab80 0x107622640 0x107632dd8
    C  Starting user session (con_hdl=0,svchp=0x107632d08,srvhp=0x107635058,usrhp=0x107622e58)
    C  Now 'SAPSR3/<pwd>@AOP' is connected: con_hdl=0, nls_hdl=0, session_id=669.
    C  Database NLS settings: AMERICAN_AMERICA.UTF8
    C  DB instance AOP is running on eccprod with ORACLE version 10.2.0.4.0 since JUL 16, 2010, 21:55:15
    B  Connection 0 opened (DBSL handle 0)
    B  Wp  Hdl ConName          ConId     ConState     TX  PRM RCT TIM MAX OPT Date     Time   DBHost
    B  000 000 R/3              000000000 ACTIVE       NO  YES NO  000 255 255 20100809 214259 eccprod
    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
    I  MtxInit: 0 0 0
    M  SHM_PRES_BUF                 (addr: 0xffffffff7200a000, size: 20000000)
    M  SHM_ROLL_AREA                (addr: 0xfffffffe4a000000, size: 134217728)
    M  SHM_PAGING_AREA              (addr: 0xfffffffe40000000, size: 134217728)
    M  SHM_ROLL_ADM                 (addr: 0xffffffff73320000, size: 2672386)
    M  SHM_PAGING_ADM               (addr: 0xffffffff79d00000, size: 656416)
    M  ThCreateNoBuffer             allocated 572152 bytes for 1000 entries at 0xfffffffe38004000
    M  ThCreateNoBuffer             index size: 3000 elems
    M  ThCreateVBAdm                allocated 12176 bytes (50 server) at 0xffffffff79c00000
    X  EmInit: MmSetImplementation( 2 ).
    X  MM global diagnostic options set: 0
    X  <ES> client 0 initializing ....
    X  Using implementation std
    X  <ES> Info: use normal pages (no huge table support available)
    X  ES initialized.
    X  mm.dump: set maximum dump mem to 96 MB
    B  dbntab: NTAB buffers attached
    B  dbntab: Buffer FTAB(hash header)  (addr: 0xfffffffe38092088, size: 584)
    B  dbntab: Buffer FTAB(anchor array) (addr: 0xfffffffe380922d0, size: 480104)
    B  dbntab: Buffer FTAB(item array)   (addr: 0xfffffffe38107638, size: 1920000)
    B  dbntab: Buffer FTAB(data area)    (addr: 0xfffffffe382dc238, size: 61440000)
    B  dbntab: Buffer IREC(hash header)  (addr: 0xfffffffe3bd78088, size: 584)
    B  dbntab: Buffer IREC(anchor array) (addr: 0xfffffffe3bd782d0, size: 480104)
    B  dbntab: Buffer IREC(item array)   (addr: 0xfffffffe3bded638, size: 480000)
    B  dbntab: Buffer IREC(data area)    (addr: 0xfffffffe3be62938, size: 8192000)
    B  dbntab: Buffer STAB(hash header)  (addr: 0xfffffffe3c636088, size: 584)
    B  dbntab: Buffer STAB(anchor array) (addr: 0xfffffffe3c6362d0, size: 480104)
    B  dbntab: Buffer STAB(item array)   (addr: 0xfffffffe3c6ab638, size: 480000)
    B  dbntab: Buffer STAB(data area)    (addr: 0xfffffffe3c720938, size: 3072000)
    B  dbntab: Buffer TTAB(hash header)  (addr: 0xfffffffe3ca12088, size: 5576)
    B  dbntab: Buffer TTAB(anchor array) (addr: 0xfffffffe3ca13650, size: 480104)
    B  dbntab: Buffer TTAB(item array)   (addr: 0xfffffffe3ca889b8, size: 1200000)
    B  dbntab: Buffer TTAB(data area)    (addr: 0xfffffffe3cbad938, size: 8760000)
    B  db_con_shm_ini:  WP_ID = 0, WP_CNT = 48, CON_ID = 45
    B  dbstat: TABSTAT buffer attached (addr: 0xfffffffe34024008)
    B  dbtbxbuf: Buffer TABL  (addr: 0xfffffffe2e000100, size: 100000000, end: 0xfffffffe33f5e200)
    B  dbtbxbuf: Buffer TABLP (addr: 0xfffffffe2a000100, size: 61440000, end: 0xfffffffe2da98100)
    B  dbexpbuf: Buffer EIBUF (addr: 0xfffffffe26000108, size: 40960000, end: 0xfffffffe28710108)
    B  dbexpbuf: Buffer ESM   (addr: 0xffffffff6b000108, size: 4194304, end: 0xffffffff6b400108)
    B  dbexpbuf: Buffer CUA   (addr: 0xfffffffe3d412108, size: 10240000, end: 0xfffffffe3ddd6108)
    B  dbexpbuf: Buffer OTR   (addr: 0xffffffff6a800108, size: 4194304, end: 0xffffffff6ac00108)
    B  dbcalbuf: Buffer CALE  (addr: 0xffffffff76f20000, size: 500000, end: 0xffffffff76f9a120)
    M  CCMS: AlInitGlobals : alert/use_sema_lock = TRUE.
    S  *** init spool environment
    S  initialize debug system
    T  Stack direction is downwards.
    T  debug control: prepare exclude for printer trace
    T  new memory block 0x1078e2310
    S  spool kernel/ddic check: Ok
    S  using table TSP02FX for frontend printing
    S  2 spool work process(es) found
    S  frontend print via spool service enabled
    M
    M Tue Aug 10 09:58:40 2010
    M  DpSigInt: caught signal 2
    M  in_ThErrHandle: 1
    M  ThSigHandler: signal (step 1, th_errno 11, action 2)
    M  ThIErrHandle: new stat of W0 is WP_SHUTDOWN
    M  ThIErrHandle: I'm during shutdown
    M  PfStatDisconnect: disconnect statistics
    M  ThIErrHandle: action changed to 2
    M  Entering ThSetStatError
    M  ThShutDownServer: shutdown server
    M  PfStatIndInit: Initializing Index-Record
    M  PfWriteIntoFile: copied shared buf (0 bytes) to local buf
    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 (Workproc 0 25501) [dpuxtool.c   269]
    Best Regards,
    Widi

  • EXCEPTION_ACCESS_VIOLATION (0xc0000005) at pc=0x6d641e26, pid=3376, tid=354

    # An unexpected error has been detected by HotSpot Virtual Machine:
    # EXCEPTION_ACCESS_VIOLATION (0xc0000005) at pc=0x6d641e26, pid=3376, tid=3540
    # Java VM: Java HotSpot(TM) Client VM (1.5.0_02-b09 mixed mode, sharing)
    # Problematic frame:
    # C 0x6d641e26
    --------------- T H R E A D ---------------
    Current thread (0x030052a8): VMThread [id=3540]
    siginfo: ExceptionCode=0xc0000005, reading address 0x000000ac
    Registers:
    EAX=0x0000007c, EBX=0x0502fc74, ECX=0x22d97480, EDX=0x0000007c
    ESP=0x0502fc20, EBP=0x0502fc54, ESI=0x22d97480, EDI=0x02fa8f38
    EIP=0x6d641e26, EFLAGS=0x00010202
    Top of Stack: (sp=0x0502fc20)
    0x0502fc20: 22d97480 6d72c24b 0000007c 02fa8f38
    0x0502fc30: 02ff1698 00000000 00000001 24ba0738
    0x0502fc40: 22d97480 00000000 000abfcc 25d3f000
    0x0502fc50: 22d97480 0502fc80 6d6b0f83 22d97480
    0x0502fc60: 02fdaae8 6d6ad593 0502fc74 02ff1698
    0x0502fc70: 02fa0fd0 02fdaae8 02fa8f38 22d97600
    0x0502fc80: 0502fcd0 6d6aded3 00000001 02ff1698
    0x0502fc90: 00000000 00000001 00000001 00000000
    Instructions: (pc=0x6d641e26)
    0x6d641e16: e8 0c 1b 06 00 5f 5e c9 c3 8b 54 24 04 56 8b f1
    0x6d641e26: 8b 42 30 85 c0 7f 25 7d 1b 83 c9 ff 2b c8 8b 46
    Stack: [0x04f30000,0x05030000), sp=0x0502fc20, free space=1023k
    Native frames: (J=compiled Java code, j=interpreted, Vv=VM code, C=native code)
    C 0x6d641e26
    C 0x6d6b0f83
    C 0x6d6aded3
    C 0x6d6adb88
    C 0x6d6b115a
    C 0x6d73d70f
    C 0x6d6ac9c7
    C 0x6d6ad05a
    C 0x6d757d4e
    C 0x6d757825
    C 0x6d7579c5
    C 0x6d75775a
    C [msvcrt.dll+0x2a3b0]
    C [kernel32.dll+0xb50b]
    VM_Operation (0x0720f640): full generation collection, mode: safepoint, requested by thread 0x03004760
    --------------- P R O C E S S ---------------
    Java Threads: ( => current thread )
    0x06be0238 JavaThread "Thread-12" daemon [_thread_blocked, id=3636]
    0x02fb9968 JavaThread "Thread-11" daemon [_thread_blocked, id=640]
    0x0964e3d0 JavaThread "Thread-10" daemon [_thread_blocked, id=3968]
    0x03004760 JavaThread "Thread-8" daemon [_thread_blocked, id=2352]
    0x02f77978 JavaThread "Thread-6" daemon [_thread_blocked, id=3236]
    0x02f8d000 JavaThread "AWT-EventQueue-2" [_thread_blocked, id=3100]
    0x03024c00 JavaThread "thread applet-loader.class" [_thread_blocked, id=2696]
    0x02f73510 JavaThread "AWT-EventQueue-0" [_thread_blocked, id=2668]
    0x02f7f710 JavaThread "AWT-Shutdown" [_thread_blocked, id=2660]
    0x02fd3e30 JavaThread "traceMsgQueueThread" daemon [_thread_blocked, id=1792]
    0x0003fbb8 JavaThread "AWT-Windows" daemon [_thread_in_native, id=2584]
    0x02f844e8 JavaThread "Java2D Disposer" daemon [_thread_blocked, id=3292]
    0x02fc8c48 JavaThread "Low Memory Detector" daemon [_thread_blocked, id=1404]
    0x03002dc8 JavaThread "CompilerThread0" daemon [_thread_blocked, id=2052]
    0x02fcdb18 JavaThread "Signal Dispatcher" daemon [_thread_blocked, id=3640]
    0x02fc18d8 JavaThread "Finalizer" daemon [_thread_blocked, id=1988]
    0x02fb5728 JavaThread "Reference Handler" daemon [_thread_blocked, id=2968]
    0x02fbc1b0 JavaThread "main" [_thread_in_native, id=1356]
    Other Threads:
    =>0x030052a8 VMThread [id=3540]
    0x03005200 WatcherThread [id=3520]
    VM state:at safepoint (normal execution)
    VM Mutex/Monitor currently owned by a thread: ([mutex/lock_event])
    [0x0003db88/0x00000814] Threads_lock - owner thread: 0x030052a8
    [0x0003ff88/0x00000654] Heap_lock - owner thread: 0x03004760
    Heap
    def new generation total 4160K, used 1830K [0x22020000, 0x224a0000, 0x22780000)
    eden space 3712K, 46% used [0x22020000, 0x221cb6b0, 0x223c0000)
    from space 448K, 26% used [0x223c0000, 0x223de3c0, 0x22430000)
    to space 448K, 0% used [0x22430000, 0x22430000, 0x224a0000)
    tenured generation total 55036K, used 36993K [0x22780000, 0x25d3f000, 0x28020000)
    the space 55036K, 67% used [0x22780000, 0x24ba0738, 0x22d97600, 0x25d3f000)
    compacting perm gen total 8192K, used 1970K [0x28020000, 0x28820000, 0x2c020000)
    the space 8192K, 24% used [0x28020000, 0x2820c850, 0x2820ca00, 0x28820000)
    ro space 8192K, 62% used [0x2c020000, 0x2c528018, 0x2c528200, 0x2c820000)
    rw space 12288K, 46% used [0x2c820000, 0x2cdac620, 0x2cdac800, 0x2d420000)
    Dynamic libraries:
    0x00400000 - 0x00419000      C:\Program Files\Internet Explorer\iexplore.exe
    0x7c900000 - 0x7c9b0000      C:\WINDOWS\system32\ntdll.dll
    0x7c800000 - 0x7c8f4000      C:\WINDOWS\system32\kernel32.dll
    0x77c10000 - 0x77c68000      C:\WINDOWS\system32\msvcrt.dll
    0x77d40000 - 0x77dd0000      C:\WINDOWS\system32\USER32.dll
    0x77f10000 - 0x77f56000      C:\WINDOWS\system32\GDI32.dll
    0x77f60000 - 0x77fd6000      C:\WINDOWS\system32\SHLWAPI.dll
    0x77dd0000 - 0x77e6b000      C:\WINDOWS\system32\ADVAPI32.dll
    0x77e70000 - 0x77f01000      C:\WINDOWS\system32\RPCRT4.dll
    0x77760000 - 0x778cc000      C:\WINDOWS\system32\SHDOCVW.dll
    0x77a80000 - 0x77b14000      C:\WINDOWS\system32\CRYPT32.dll
    0x77b20000 - 0x77b32000      C:\WINDOWS\system32\MSASN1.dll
    0x754d0000 - 0x75550000      C:\WINDOWS\system32\CRYPTUI.dll
    0x76c30000 - 0x76c5e000      C:\WINDOWS\system32\WINTRUST.dll
    0x76c90000 - 0x76cb8000      C:\WINDOWS\system32\IMAGEHLP.dll
    0x77120000 - 0x771ac000      C:\WINDOWS\system32\OLEAUT32.dll
    0x774e0000 - 0x7761d000      C:\WINDOWS\system32\ole32.dll
    0x5b860000 - 0x5b8b4000      C:\WINDOWS\system32\NETAPI32.dll
    0x771b0000 - 0x77256000      C:\WINDOWS\system32\WININET.dll
    0x76f60000 - 0x76f8c000      C:\WINDOWS\system32\WLDAP32.dll
    0x77c00000 - 0x77c08000      C:\WINDOWS\system32\VERSION.dll
    0x10000000 - 0x10019000      C:\WINDOWS\system32\NVDESK32.DLL
    0x773d0000 - 0x774d2000      C:\WINDOWS\WinSxS\x86_Microsoft.Windows.Common-Controls_6595b64144ccf1df_6.0.2600.2180_x-ww_a84f1ff9\comctl32.dll
    0x7c9c0000 - 0x7d1d4000      C:\WINDOWS\system32\SHELL32.dll
    0x5d090000 - 0x5d127000      C:\WINDOWS\system32\comctl32.dll
    0x5ad70000 - 0x5ada8000      C:\WINDOWS\system32\uxtheme.dll
    0x74720000 - 0x7476b000      C:\WINDOWS\system32\MSCTF.dll
    0x75f80000 - 0x7607c000      C:\WINDOWS\system32\BROWSEUI.dll
    0x20000000 - 0x20012000      C:\WINDOWS\system32\browselc.dll
    0x77b40000 - 0x77b62000      C:\WINDOWS\system32\appHelp.dll
    0x76fd0000 - 0x7704f000      C:\WINDOWS\system32\CLBCATQ.DLL
    0x77050000 - 0x77115000      C:\WINDOWS\system32\COMRes.dll
    0x77260000 - 0x772fe000      C:\WINDOWS\system32\urlmon.dll
    0x77fe0000 - 0x77ff1000      C:\WINDOWS\system32\Secur32.dll
    0x77920000 - 0x77a13000      C:\WINDOWS\system32\SETUPAPI.dll
    0x769c0000 - 0x76a73000      C:\WINDOWS\system32\USERENV.dll
    0x00dd0000 - 0x00dec000      C:\Program Files\Norton AntiVirus\NavShExt.dll
    0x00df0000 - 0x00e0a000      C:\WINDOWS\system32\ccTrust.dll
    0x76080000 - 0x760e5000      C:\WINDOWS\system32\MSVCP60.dll
    0x76b20000 - 0x76b31000      C:\WINDOWS\system32\ATL.DLL
    0x00e10000 - 0x00e98000      C:\WINDOWS\system32\shdoclc.dll
    0x00ea0000 - 0x01165000      C:\WINDOWS\system32\xpsp2res.dll
    0x75cf0000 - 0x75d81000      C:\WINDOWS\system32\mlang.dll
    0x71ad0000 - 0x71ad9000      C:\WINDOWS\system32\wsock32.dll
    0x71ab0000 - 0x71ac7000      C:\WINDOWS\system32\WS2_32.dll
    0x71aa0000 - 0x71aa8000      C:\WINDOWS\system32\WS2HELP.dll
    0x71a50000 - 0x71a8f000      C:\WINDOWS\system32\mswsock.dll
    0x662b0000 - 0x66308000      C:\WINDOWS\system32\hnetcfg.dll
    0x71a90000 - 0x71a98000      C:\WINDOWS\System32\wshtcpip.dll
    0x76ee0000 - 0x76f1c000      C:\WINDOWS\system32\RASAPI32.DLL
    0x76e90000 - 0x76ea2000      C:\WINDOWS\system32\rasman.dll
    0x76eb0000 - 0x76edf000      C:\WINDOWS\system32\TAPI32.dll
    0x76e80000 - 0x76e8e000      C:\WINDOWS\system32\rtutils.dll
    0x76b40000 - 0x76b6d000      C:\WINDOWS\system32\WINMM.dll
    0x017b0000 - 0x01a76000      C:\WINDOWS\system32\msi.dll
    0x75e90000 - 0x75f40000      C:\WINDOWS\system32\SXS.DLL
    0x722b0000 - 0x722b5000      C:\WINDOWS\system32\sensapi.dll
    0x605d0000 - 0x605d9000      C:\WINDOWS\system32\mslbui.dll
    0x76f20000 - 0x76f47000      C:\WINDOWS\system32\DNSAPI.dll
    0x76fc0000 - 0x76fc6000      C:\WINDOWS\system32\rasadhlp.dll
    0x7d4a0000 - 0x7d785000      C:\WINDOWS\System32\mshtml.dll
    0x746c0000 - 0x746e7000      C:\WINDOWS\System32\msls31.dll
    0x746f0000 - 0x7471a000      C:\WINDOWS\System32\msimtf.dll
    0x5c2c0000 - 0x5c300000      C:\WINDOWS\ime\sptip.dll
    0x74c80000 - 0x74cac000      C:\WINDOWS\system32\OLEACC.dll
    0x02150000 - 0x02161000      C:\WINDOWS\IME\SPGRMR.DLL
    0x02170000 - 0x021cb000      C:\Program Files\Common Files\Microsoft Shared\INK\SKCHUI.DLL
    0x325c0000 - 0x325d2000      C:\Program Files\Microsoft Office\OFFICE11\msohev.dll
    0x02350000 - 0x0236b000      C:\Program Files\Common Files\Symantec Shared\Script Blocking\scrauth.dll
    0x02480000 - 0x0249e000      C:\Program Files\Common Files\Symantec Shared\Script Blocking\ScrBlock.dll
    0x0ffd0000 - 0x0fff8000      C:\WINDOWS\system32\rsaenh.dll
    0x75e60000 - 0x75e73000      C:\WINDOWS\system32\cryptnet.dll
    0x4d4f0000 - 0x4d548000      C:\WINDOWS\system32\WINHTTP.dll
    0x75c50000 - 0x75cbe000      c:\windows\system32\jscript.dll
    0x72d20000 - 0x72d29000      C:\WINDOWS\system32\wdmaud.drv
    0x72d10000 - 0x72d18000      C:\WINDOWS\system32\msacm32.drv
    0x77be0000 - 0x77bf5000      C:\WINDOWS\system32\MSACM32.dll
    0x77bd0000 - 0x77bd7000      C:\WINDOWS\system32\midimap.dll
    0x71d40000 - 0x71d5c000      C:\WINDOWS\System32\actxprxy.dll
    0x03d40000 - 0x03ecd000      C:\WINDOWS\system32\macromed\flash\flash.ocx
    0x763b0000 - 0x763f9000      C:\WINDOWS\system32\comdlg32.dll
    0x6d430000 - 0x6d43a000      C:\WINDOWS\System32\ddrawex.dll
    0x73760000 - 0x737a9000      C:\WINDOWS\System32\DDRAW.dll
    0x73bc0000 - 0x73bc6000      C:\WINDOWS\System32\DCIMAN32.dll
    0x76820000 - 0x76834000      C:\WINDOWS\system32\HLINK.DLL
    0x73300000 - 0x73367000      c:\windows\system32\vbscript.dll
    0x73dd0000 - 0x73ece000      C:\WINDOWS\system32\MFC42.DLL
    0x5ff20000 - 0x5ff46000      C:\WINDOWS\system32\MSRATING.dll
    0x5ff50000 - 0x5ff61000      C:\WINDOWS\system32\msratelc.dll
    0x79170000 - 0x79196000      C:\WINDOWS\system32\mscoree.dll
    0x79410000 - 0x79425000      C:\WINDOWS\Microsoft.NET\Framework\v1.1.4322\mscorie.dll
    0x7c340000 - 0x7c396000      C:\WINDOWS\Microsoft.NET\Framework\v1.1.4322\MSVCR71.dll
    0x79480000 - 0x79499000      C:\WINDOWS\Microsoft.NET\Framework\v1.1.4322\mscorld.dll
    0x72b20000 - 0x72b38000      C:\WINDOWS\system32\plugin.ocx
    0x76990000 - 0x769b5000      C:\WINDOWS\system32\ntshrui.dll
    0x76980000 - 0x76988000      C:\WINDOWS\system32\LINKINFO.dll
    0x6e4a0000 - 0x6e4ac000      C:\WINDOWS\system32\corpol.dll
    0x732d0000 - 0x732d5000      C:\WINDOWS\system32\SOFTPUB.DLL
    0x71b20000 - 0x71b32000      C:\WINDOWS\system32\MPR.dll
    0x75f60000 - 0x75f67000      C:\WINDOWS\System32\drprov.dll
    0x71c10000 - 0x71c1e000      C:\WINDOWS\System32\ntlanman.dll
    0x71cd0000 - 0x71ce7000      C:\WINDOWS\System32\NETUI0.dll
    0x71c90000 - 0x71cd0000      C:\WINDOWS\System32\NETUI1.dll
    0x71c80000 - 0x71c87000      C:\WINDOWS\System32\NETRAP.dll
    0x71bf0000 - 0x71c03000      C:\WINDOWS\System32\SAMLIB.dll
    0x75f70000 - 0x75f79000      C:\WINDOWS\System32\davclnt.dll
    0x75970000 - 0x75a67000      C:\WINDOWS\system32\MSGINA.dll
    0x76360000 - 0x76370000      C:\WINDOWS\system32\WINSTA.dll
    0x74320000 - 0x7435d000      C:\WINDOWS\system32\ODBC32.dll
    0x06090000 - 0x060a7000      C:\WINDOWS\system32\odbcint.dll
    0x6bdd0000 - 0x6be05000      C:\WINDOWS\System32\dxtrans.dll
    0x6be10000 - 0x6be6a000      C:\WINDOWS\System32\dxtmsft.dll
    0x5a620000 - 0x5a67d000      C:\WINDOWS\system32\inetcpl.cpl
    0x667d0000 - 0x667ed000      C:\WINDOWS\system32\inetcplc.dll
    0x66400000 - 0x66442000      C:\WINDOWS\System32\msieftp.dll
    0x66f00000 - 0x66f35000      C:\WINDOWS\system32\QuickTime\QuickTimeWebHelper.qtx
    0x66800000 - 0x66e31000      C:\WINDOWS\system32\QuickTime.qts
    0x5edd0000 - 0x5ede7000      C:\WINDOWS\system32\OLEPRO32.DLL
    0x73f10000 - 0x73f6c000      C:\WINDOWS\system32\dsound.dll
    0x73ee0000 - 0x73ee4000      C:\WINDOWS\system32\KsUser.dll
    0x67760000 - 0x677f3000      C:\WINDOWS\system32\QuickTime\QuickTime3GPP.qtx
    0x67100000 - 0x67291000      C:\WINDOWS\system32\QuickTime\QuickTimeAuthoring.qtx
    0x672a0000 - 0x672e9000      C:\WINDOWS\system32\QuickTime\QuickTimeCapture.qtx
    0x672f0000 - 0x6736e000      C:\WINDOWS\system32\QuickTime\QuickTimeEffects.qtx
    0x67550000 - 0x675cd000      C:\WINDOWS\system32\QuickTime\QuickTimeEssentials.qtx
    0x67380000 - 0x67404000      C:\WINDOWS\system32\QuickTime\QuickTimeImage.qtx
    0x67020000 - 0x670f7000      C:\WINDOWS\system32\QuickTime\QuickTimeInternetExtras.qtx
    0x674e0000 - 0x6754a000      C:\WINDOWS\system32\QuickTime\QuickTimeMPEG.qtx
    VM Arguments:
    jvm_args: -Xbootclasspath/a:C:\PROGRA~1\Java\JRE15~2.0_0\lib\deploy.jar;C:\PROGRA~1\Java\JRE15~2.0_0\lib\plugin.jar -Xmx96m -Djavaplugin.maxHeapSize=96m -Xverify:remote -Djavaplugin.version=1.5.0_02 -Djavaplugin.nodotversion=150_02 -Dbrowser=sun.plugin -DtrustProxy=true -Dapplication.home=C:\PROGRA~1\Java\JRE15~2.0_0 -Djava.protocol.handler.pkgs=sun.plugin.net.protocol -Djavaplugin.vm.options=-Djava.class.path=C:\PROGRA~1\Java\JRE15~2.0_0\classes -Xbootclasspath/a:C:\PROGRA~1\Java\JRE15~2.0_0\lib\deploy.jar;C:\PROGRA~1\Java\JRE15~2.0_0\lib\plugin.jar -Xmx96m -Djavaplugin.maxHeapSize=96m -Xverify:remote -Djavaplugin.version=1.5.0_02 -Djavaplugin.nodotversion=150_02 -Dbrowser=sun.plugin -DtrustProxy=true -Dapplication.home=C:\PROGRA~1\Java\JRE15~2.0_0 -Djava.protocol.handler.pkgs=sun.plugin.net.protocol vfprintf
    java_command: <unknown>
    Environment Variables:
    PATH=C:\PROGRA~1\Java\JRE15~2.0_0\bin;C:\Program Files\Internet Explorer;;C:\WINDOWS\system32;C:\WINDOWS;C:\WINDOWS\System32\Wbem;.
    USERNAME=a
    OS=Windows_NT
    PROCESSOR_IDENTIFIER=x86 Family 15 Model 1 Stepping 2, GenuineIntel
    --------------- S Y S T E M ---------------
    OS: Windows XP Build 2600 Service Pack 2
    CPU:total 1 family 15, cmov, cx8, fxsr, mmx, sse, sse2, ht
    Memory: 4k page, physical 523760k(223640k free), swap 1278952k(977872k free)
    vm_info: Java HotSpot(TM) Client VM (1.5.0_02-b09) for windows-x86, built on Mar 4 2005 01:53:53 by "java_re" with MS VC++ 6.0
    -- NEED HELP PELASE this is the error i get in an otepad file after my java freezes on my etc it has cost me $15,000 now :| I use to leave a java chat on while having other programes open and they do nto have a recovery option built into them as the java links me with other key partners. I get restarted, frozen anything Its been two weeks and I am falling behind each day. Please help me
    --Gabliaven                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             

    I was also facing this problem for the last 2 days. Today i removed all the version of JRE installed on my system from Control Panel & installed Java Platfor, Standard Edition 6 Version 1.6.0. Now my applications are working perfectly.
    thanks
    Sooraj

  • EXCEPTION_ACCESS_VIOLATION (0xc0000005) at pc=0x6d779c9d, pid=3964, tid=37

    hello,
    i had this problem....when running my java application....
    can somebody help me?....what it's mean??
    # An unexpected error has been detected by HotSpot Virtual Machine:
    # EXCEPTION_ACCESS_VIOLATION (0xc0000005) at pc=0x6d779c9d, pid=3964, tid=3760
    # Java VM: Java HotSpot(TM) Client VM (1.5.0_06-b05 mixed mode, sharing)
    # Problematic frame:
    # V [jvm.dll+0x99c9d]
    --------------- T H R E A D ---------------
    Current thread (0x00ab2ce8): JavaThread "Thread-2" [_thread_in_vm, id=3760]
    siginfo: ExceptionCode=0xc0000005, reading address 0x00000000
    Registers:
    EAX=0x00000000, EBX=0x00ab8360, ECX=0x033ef9e4, EDX=0x0003fa3c
    ESP=0x033ef9c4, EBP=0x033efa10, ESI=0x033ef9e4, EDI=0x6d82f270
    EIP=0x6d779c9d, EFLAGS=0x00010246
    Top of Stack: (sp=0x033ef9c4)
    0x033ef9c4: 6d7685ec 00000000 00ab2ce8 6d76b432
    0x033ef9d4: 00ab2ce8 00000000 033efa24 00ab2da8
    0x033ef9e4: 0003fa3c 6d721631 00ab2ce8 033efa0c
    0x033ef9f4: 6d768aab 00ab2ce8 00000006 0000000e
    0x033efa04: 6d82f270 00ab2da8 0000003c 0000003c
    0x033efa14: 1000207d 00ab2da8 0003fa3c 00000000
    0x033efa24: 00000014 032b0098 03231f18 031ea63a
    0x033efa34: 00ab8360 032b0098 032b00ac 00000000
    Instructions: (pc=0x6d779c9d)
    0x6d779c8d: 44 24 04 24 fc 8b 00 8b 00 c3 8b 44 24 04 24 fc
    0x6d779c9d: 8b 00 ff 74 24 04 8b c8 e8 93 fe ff ff c3 8b 44
    Stack: [0x033b0000,0x033f0000), sp=0x033ef9c4, free space=254k
    Native frames: (J=compiled Java code, j=interpreted, Vv=VM code, C=native code)
    V [jvm.dll+0x99c9d]
    Java frames: (J=compiled Java code, j=interpreted, Vv=VM code)
    j jpcap.Jpcap.processPacket(ILjpcap/JpcapHandler;)I+0
    j listener.Plistener$1.run()V+25
    j java.lang.Thread.run()V+11
    v ~StubRoutines::call_stub
    --------------- P R O C E S S ---------------
    Java Threads: ( => current thread )
    =>0x00ab2ce8 JavaThread "Thread-2" [_thread_in_vm, id=3760]
    0x02cccaf0 JavaThread "TimerQueue" daemon [_thread_blocked, id=3732]
    0x02cc52a0 JavaThread "Java2D Disposer" daemon [_thread_blocked, id=1636]
    0x00036920 JavaThread "DestroyJavaVM" [_thread_blocked, id=3084]
    0x02c8fcc0 JavaThread "AWT-EventQueue-0" [_thread_blocked, id=3992]
    0x02c8e8f8 JavaThread "AWT-Windows" daemon [_thread_in_native, id=2164]
    0x00acdd80 JavaThread "AWT-Shutdown" [_thread_blocked, id=3256]
    0x00a6f2a8 JavaThread "Low Memory Detector" daemon [_thread_blocked, id=3232]
    0x00a6dfa8 JavaThread "CompilerThread0" daemon [_thread_blocked, id=3288]
    0x00a6d210 JavaThread "Signal Dispatcher" daemon [_thread_blocked, id=1388]
    0x00a48018 JavaThread "Finalizer" daemon [_thread_blocked, id=260]
    0x0003faa0 JavaThread "Reference Handler" daemon [_thread_blocked, id=1928]
    Other Threads:
    0x00a68190 VMThread [id=4040]
    0x00a6cd78 WatcherThread [id=644]
    VM state:not at safepoint (normal execution)
    VM Mutex/Monitor currently owned by a thread: None
    Heap
    def new generation total 576K, used 522K [0x22a70000, 0x22b10000, 0x22f50000)
    eden space 512K, 95% used [0x22a70000, 0x22ae9ff8, 0x22af0000)
    from space 64K, 54% used [0x22af0000, 0x22af8af8, 0x22b00000)
    to space 64K, 0% used [0x22b00000, 0x22b00000, 0x22b10000)
    tenured generation total 1408K, used 1207K [0x22f50000, 0x230b0000, 0x26a70000)
    the space 1408K, 85% used [0x22f50000, 0x2307dce8, 0x2307de00, 0x230b0000)
    compacting perm gen total 8192K, used 1164K [0x26a70000, 0x27270000, 0x2aa70000)
    the space 8192K, 14% used [0x26a70000, 0x26b930a0, 0x26b93200, 0x27270000)
    ro space 8192K, 66% used [0x2aa70000, 0x2afcbcc0, 0x2afcbe00, 0x2b270000)
    rw space 12288K, 46% used [0x2b270000, 0x2b812060, 0x2b812200, 0x2be70000)
    Dynamic libraries:
    0x00400000 - 0x0040c000      C:\Program Files\Java\jdk1.5.0_06\bin\java.exe
    0x7c900000 - 0x7c9b0000      C:\WINDOWS\system32\ntdll.dll
    0x7c800000 - 0x7c8f4000      C:\WINDOWS\system32\kernel32.dll
    0x77dd0000 - 0x77e6b000      C:\WINDOWS\system32\ADVAPI32.dll
    0x77e70000 - 0x77f01000      C:\WINDOWS\system32\RPCRT4.dll
    0x77c10000 - 0x77c68000      C:\WINDOWS\system32\MSVCRT.dll
    0x6d6e0000 - 0x6d874000      C:\Program Files\Java\jdk1.5.0_06\jre\bin\client\jvm.dll
    0x77d40000 - 0x77dd0000      C:\WINDOWS\system32\USER32.dll
    0x77f10000 - 0x77f57000      C:\WINDOWS\system32\GDI32.dll
    0x76b40000 - 0x76b6d000      C:\WINDOWS\system32\WINMM.dll
    0x6d2f0000 - 0x6d2f8000      C:\Program Files\Java\jdk1.5.0_06\jre\bin\hpi.dll
    0x76bf0000 - 0x76bfb000      C:\WINDOWS\system32\PSAPI.DLL
    0x6d6b0000 - 0x6d6bc000      C:\Program Files\Java\jdk1.5.0_06\jre\bin\verify.dll
    0x6d370000 - 0x6d38d000      C:\Program Files\Java\jdk1.5.0_06\jre\bin\java.dll
    0x6d6d0000 - 0x6d6df000      C:\Program Files\Java\jdk1.5.0_06\jre\bin\zip.dll
    0x6d070000 - 0x6d1d7000      C:\Program Files\Java\jdk1.5.0_06\jre\bin\awt.dll
    0x73000000 - 0x73026000      C:\WINDOWS\system32\WINSPOOL.DRV
    0x76390000 - 0x763ad000      C:\WINDOWS\system32\IMM32.dll
    0x774e0000 - 0x7761d000      C:\WINDOWS\system32\ole32.dll
    0x5ad70000 - 0x5ada8000      C:\WINDOWS\system32\uxtheme.dll
    0x73760000 - 0x737a9000      C:\WINDOWS\system32\ddraw.dll
    0x73bc0000 - 0x73bc6000      C:\WINDOWS\system32\DCIMAN32.dll
    0x73940000 - 0x73a10000      C:\WINDOWS\system32\D3DIM700.DLL
    0x74720000 - 0x7476b000      C:\WINDOWS\system32\MSCTF.dll
    0x7c9c0000 - 0x7d1d5000      C:\WINDOWS\system32\shell32.dll
    0x77f60000 - 0x77fd6000      C:\WINDOWS\system32\SHLWAPI.dll
    0x773d0000 - 0x774d2000      C:\WINDOWS\WinSxS\x86_Microsoft.Windows.Common-Controls_6595b64144ccf1df_6.0.2600.2180_x-ww_a84f1ff9\comctl32.dll
    0x5d090000 - 0x5d127000      C:\WINDOWS\system32\comctl32.dll
    0x6d2b0000 - 0x6d2ed000      C:\Program Files\Java\jdk1.5.0_06\jre\bin\fontmanager.dll
    0x6d530000 - 0x6d543000      C:\Program Files\Java\jdk1.5.0_06\jre\bin\net.dll
    0x71ab0000 - 0x71ac7000      C:\WINDOWS\system32\WS2_32.dll
    0x71aa0000 - 0x71aa8000      C:\WINDOWS\system32\WS2HELP.dll
    0x6d550000 - 0x6d559000      C:\Program Files\Java\jdk1.5.0_06\jre\bin\nio.dll
    0x605d0000 - 0x605d9000      C:\WINDOWS\system32\mslbui.dll
    0x60300000 - 0x60307000      C:\PROGRA~1\Yahoo!\MESSEN~1\idle.dll
    0x7c340000 - 0x7c396000      C:\PROGRA~1\Yahoo!\MESSEN~1\MSVCR71.dll
    0x5b860000 - 0x5b8b4000      C:\WINDOWS\system32\netapi32.dll
    0x77120000 - 0x771ac000      C:\WINDOWS\system32\OLEAUT32.dll
    0x77b40000 - 0x77b62000      C:\WINDOWS\system32\appHelp.dll
    0x10000000 - 0x10012000      C:\Program Files\Java\jdk1.5.0_06\jre\lib\ext\jpcap.dll
    0x031e0000 - 0x03221000      C:\WINDOWS\system32\wpcap.dll
    0x03030000 - 0x03045000      C:\WINDOWS\system32\packet.dll
    0x03050000 - 0x03060000      C:\WINDOWS\system32\WanPacket.dll
    0x610f0000 - 0x61101000      C:\WINDOWS\system32\NPPTools.dll
    0x72830000 - 0x7292e000      C:\WINDOWS\system32\MFC42u.DLL
    0x76d60000 - 0x76d79000      C:\WINDOWS\system32\iphlpapi.dll
    0x77c00000 - 0x77c08000      C:\WINDOWS\system32\VERSION.dll
    0x5a700000 - 0x5a711000      C:\WINDOWS\system32\npp\ndisnpp.dll
    0x6d3e0000 - 0x6d3ed000      C:\Program Files\Java\jdk1.5.0_06\jre\bin\JdbcOdbc.dll
    0x74320000 - 0x7435d000      C:\WINDOWS\system32\ODBC32.dll
    0x763b0000 - 0x763f9000      C:\WINDOWS\system32\comdlg32.dll
    0x20000000 - 0x20017000      C:\WINDOWS\system32\odbcint.dll
    0x77fe0000 - 0x77ff1000      C:\WINDOWS\system32\Secur32.dll
    0x76fd0000 - 0x7704f000      C:\WINDOWS\system32\CLBCATQ.DLL
    0x77050000 - 0x77115000      C:\WINDOWS\system32\COMRes.dll
    0x1b810000 - 0x1b84a000      C:\WINDOWS\System32\msjtes40.dll
    0x0f9a0000 - 0x0f9ab000      C:\WINDOWS\system32\VBAJET32.DLL
    0x0f9c0000 - 0x0fa22000      C:\WINDOWS\system32\expsrv.dll
    VM Arguments:
    java_command: listener.MainListener
    Launcher Type: SUN_STANDARD
    Environment Variables:
    JAVA_HOME=C:\Program Files\Java\jdk1.5.0_06\
    PATH=C:\WINDOWS\system32;C:\WINDOWS;C:\WINDOWS\System32\Wbem;C:\Program Files\Microsoft SQL Server\80\Tools\BINN;C:\Program Files\Microsoft SQL Server\80\Tools\Binn\;C:\Nokia\Update_Manager\bin
    USERNAME=projek
    OS=Windows_NT
    PROCESSOR_IDENTIFIER=x86 Family 15 Model 2 Stepping 9, GenuineIntel
    --------------- S Y S T E M ---------------
    OS: Windows XP Build 2600 Service Pack 2
    CPU:total 2 family 15, cmov, cx8, fxsr, mmx, sse, sse2, ht
    Memory: 4k page, physical 522220k(90404k free), swap 3560908k(3129896k free)
    vm_info: Java HotSpot(TM) Client VM (1.5.0_06-b05) for windows-x86, built on Nov 10 2005 11:12:14 by "java_re" with MS VC++ 6.0

    I'm having a similar problem. Is your computer freezing when you get this?

  • EXCEPTION_ACCESS_VIOLATION (0xc0000005) at pc=0x0b2da214, pid=876, tid=2584

    Hi everyone,
    I am having the problem shown below:
    # An unexpected error has been detected by HotSpot Virtual Machine:
    # EXCEPTION_ACCESS_VIOLATION (0xc0000005) at pc=0x0b2da214, pid=876, tid=2584
    # Java VM: Java HotSpot(TM) Client VM (1.5.0_10-b03 mixed mode)
    # Problematic frame:
    # C [libdbxml24.dll+0x4a214]
    --------------- T H R E A D ---------------
    Current thread (0x008497e0): JavaThread "E4JMS Session Dispatcher (66)" [_thread_in_native, id=2584]
    siginfo: ExceptionCode=0xc0000005, reading address 0x00000000
    Registers:
    EAX=0x00000000, EBX=0x0b9df76c, ECX=0x00aa54f8, EDX=0x00030001
    ESP=0x0b9df620, EBP=0x0b9df704, ESI=0x00aa54f0, EDI=0x00000000
    EIP=0x0b2da214, EFLAGS=0x00010206
    Top of Stack: (sp=0x0b9df620)
    0x0b9df620: 0b2d0e21 00000000 00000000 00000000
    0x0b9df630: 0b9df76c 00aa54f0 0b9df654 0b35a322
    0x0b9df640: 00000000 0b2dad56 00000000 008498a0
    0x0b9df650: 00aa54f0 0b9df6f8 0b35b19b 00000000
    0x0b9df660: 0b244c22 0b9df690 008497e0 06df1ad0
    0x0b9df670: 06df1ad8 00bd29e3 00000000 00bd6509
    0x0b9df680: 00000002 00000000 030d43c0 030ce350
    0x0b9df690: 0b9df690 06c5ef9c 0b9df6c0 06c5ff08
    Instructions: (pc=0x0b2da214)
    0x0b2da204: c2 04 00 cc cc cc cc cc cc cc cc cc 8b 44 24 04
    0x0b2da214: 8b 00 56 8b f1 8d 48 04 89 06 8b 11 ff 52 04 8b
    Stack: [0x0b9a0000,0x0b9e0000), sp=0x0b9df620, free space=253k
    Native frames: (J=compiled Java code, j=interpreted, Vv=VM code, C=native code)
    C [libdbxml24.dll+0x4a214]
    j com.sleepycat.dbxml.dbxml_javaJNI.XmlContainer_putDocument__SWIG_0(JLcom/sleepycat/dbxml/XmlContainer;Ljava/lang/String;Ljava/lang/String;JI)Ljava/lang/String;+0
    j com.sleepycat.dbxml.XmlContainer.putDocument(Ljava/lang/String;Ljava/lang/String;Lcom/sleepycat/dbxml/XmlUpdateContext;I)Ljava/lang/String;+13
    j com.sleepycat.dbxml.XmlContainer.putDocument(Lcom/sleepycat/dbxml/XmlTransaction;Ljava/lang/String;Ljava/lang/String;Lcom/sleepycat/dbxml/XmlUpdateContext;Lcom/sleepycat/dbxml/XmlDocumentConfig;)Ljava/lang/String;+57
    j com.sleepycat.dbxml.XmlContainer.putDocument(Ljava/lang/String;Ljava/lang/String;Lcom/sleepycat/dbxml/XmlDocumentConfig;)Ljava/lang/String;+6
    j ag.SaveMessageinDB.addXMLDocument(Ljava/lang/String;Ljava/lang/String;)V+21
    j ag.SaveMessageinDB.saveMessage(Ljava/lang/String;Ljava/lang/String;)V+3
    j example.TextListener.onMessage(Ljavax/jms/Message;)V+53
    j com.tibco.tibjms.TibjmsSession._submit(Ljavax/jms/MessageListener;Lcom/tibco/tibjms/TibjmsMessage;)V+10
    j com.tibco.tibjms.TibjmsSession._dispatchAsyncMessage(Lcom/tibco/tibjms/TibjmsSession$Dispatcher;Z)Z+310
    j com.tibco.tibjms.TibjmsSession$Dispatcher.run()V+9
    v ~StubRoutines::call_stub
    V [jvm.dll+0x8757c]
    V [jvm.dll+0xde804]
    V [jvm.dll+0x8744d]
    V [jvm.dll+0x871aa]
    V [jvm.dll+0xa1de8]
    V [jvm.dll+0x10fad4]
    V [jvm.dll+0x10faa2]
    C [MSVCRT.dll+0x2a3b0]
    C [kernel32.dll+0xb683]
    Java frames: (J=compiled Java code, j=interpreted, Vv=VM code)
    j com.sleepycat.dbxml.dbxml_javaJNI.XmlContainer_putDocument__SWIG_0(JLcom/sleepycat/dbxml/XmlContainer;Ljava/lang/String;Ljava/lang/String;JI)Ljava/lang/String;+0
    j com.sleepycat.dbxml.XmlContainer.putDocument(Ljava/lang/String;Ljava/lang/String;Lcom/sleepycat/dbxml/XmlUpdateContext;I)Ljava/lang/String;+13
    j com.sleepycat.dbxml.XmlContainer.putDocument(Lcom/sleepycat/dbxml/XmlTransaction;Ljava/lang/String;Ljava/lang/String;Lcom/sleepycat/dbxml/XmlUpdateContext;Lcom/sleepycat/dbxml/XmlDocumentConfig;)Ljava/lang/String;+57
    j com.sleepycat.dbxml.XmlContainer.putDocument(Ljava/lang/String;Ljava/lang/String;Lcom/sleepycat/dbxml/XmlDocumentConfig;)Ljava/lang/String;+6
    j ag.SaveMessageinDB.addXMLDocument(Ljava/lang/String;Ljava/lang/String;)V+21
    j ag.SaveMessageinDB.saveMessage(Ljava/lang/String;Ljava/lang/String;)V+3
    j example.TextListener.onMessage(Ljavax/jms/Message;)V+53
    j com.tibco.tibjms.TibjmsSession._submit(Ljavax/jms/MessageListener;Lcom/tibco/tibjms/TibjmsMessage;)V+10
    j com.tibco.tibjms.TibjmsSession._dispatchAsyncMessage(Lcom/tibco/tibjms/TibjmsSession$Dispatcher;Z)Z+310
    j com.tibco.tibjms.TibjmsSession$Dispatcher.run()V+9
    v ~StubRoutines::call_stub
    --------------- P R O C E S S ---------------
    Java Threads: ( => current thread )
    =>0x008497e0 JavaThread "E4JMS Session Dispatcher (66)" [_thread_in_native, id=2584]
    0x008499f0 JavaThread "E4JMS TCPLink Reader (66)" daemon [_thread_in_native, id=3236]
    0x00847950 JavaThread "E4JMS Connections Pinger" daemon [_thread_blocked, id=5492]
    0x008318d0 JavaThread "Low Memory Detector" daemon [_thread_blocked, id=3712]
    0x00830d80 JavaThread "CompilerThread0" daemon [_thread_blocked, id=1620]
    0x0082f940 JavaThread "Signal Dispatcher" daemon [_thread_blocked, id=1296]
    0x0082ee70 JavaThread "Finalizer" daemon [_thread_blocked, id=416]
    0x0082dcf0 JavaThread "Reference Handler" daemon [_thread_blocked, id=6048]
    0x00824e50 JavaThread "main" [_thread_in_native, id=3872]
    Other Threads:
    0x0082b060 VMThread [id=2968]
    0x00834ac0 WatcherThread [id=3436]
    VM state:not at safepoint (normal execution)
    VM Mutex/Monitor currently owned by a thread: None
    Heap
    def new generation total 576K, used 461K [0x02bd0000, 0x02c70000, 0x030b0000)
    eden space 512K, 82% used [0x02bd0000, 0x02c39228, 0x02c50000)
    from space 64K, 63% used [0x02c60000, 0x02c6a2b0, 0x02c70000)
    to space 64K, 0% used [0x02c50000, 0x02c50000, 0x02c60000)
    tenured generation total 1408K, used 283K [0x030b0000, 0x03210000, 0x06bd0000)
    the space 1408K, 20% used [0x030b0000, 0x030f6e58, 0x030f7000, 0x03210000)
    compacting perm gen total 8192K, used 3290K [0x06bd0000, 0x073d0000, 0x0abd0000)
    the space 8192K, 40% used [0x06bd0000, 0x06f06a28, 0x06f06c00, 0x073d0000)
    No shared spaces configured.
    Dynamic libraries:
    0x00400000 - 0x0040d000      C:\Documents and Settings\ukhew1\Desktop\jdk1.5.0_10\jdk1.5.0_10\bin\javaw.exe
    0x7c900000 - 0x7c9b0000      C:\WINNT\system32\ntdll.dll
    0x7c800000 - 0x7c8f5000      C:\WINNT\system32\kernel32.dll
    0x77dd0000 - 0x77e6b000      C:\WINNT\system32\ADVAPI32.dll
    0x77e70000 - 0x77f01000      C:\WINNT\system32\RPCRT4.dll
    0x7e410000 - 0x7e4a1000      C:\WINNT\system32\USER32.dll
    0x77f10000 - 0x77f58000      C:\WINNT\system32\GDI32.dll
    0x77c10000 - 0x77c68000      C:\WINNT\system32\MSVCRT.dll
    0x76390000 - 0x763ad000      C:\WINNT\system32\IMM32.DLL
    0x629c0000 - 0x629c9000      C:\WINNT\system32\LPK.DLL
    0x74d90000 - 0x74dfb000      C:\WINNT\system32\USP10.dll
    0x10000000 - 0x10011000      C:\WINNT\system32\AMInit.dll
    0x6d730000 - 0x6d8cc000      C:\Documents and Settings\ukhew1\Desktop\jdk1.5.0_10\jdk1.5.0_10\jre\bin\client\jvm.dll
    0x76b40000 - 0x76b6d000      C:\WINNT\system32\WINMM.dll
    0x6d2f0000 - 0x6d2f8000      C:\Documents and Settings\ukhew1\Desktop\jdk1.5.0_10\jdk1.5.0_10\jre\bin\hpi.dll
    0x76bf0000 - 0x76bfb000      C:\WINNT\system32\PSAPI.DLL
    0x6d700000 - 0x6d70c000      C:\Documents and Settings\ukhew1\Desktop\jdk1.5.0_10\jdk1.5.0_10\jre\bin\verify.dll
    0x6d370000 - 0x6d38d000      C:\Documents and Settings\ukhew1\Desktop\jdk1.5.0_10\jdk1.5.0_10\jre\bin\java.dll
    0x6d720000 - 0x6d72f000      C:\Documents and Settings\ukhew1\Desktop\jdk1.5.0_10\jdk1.5.0_10\jre\bin\zip.dll
    0x003e0000 - 0x003fd000      H:\Program Files\Oracle\Berkeley DB XML 2.4.16\bin\libdb_java46.dll
    0x0af90000 - 0x0b071000      H:\Program Files\Oracle\Berkeley DB XML 2.4.16\bin\libdb46.dll
    0x71ab0000 - 0x71ac7000      C:\WINNT\system32\WS2_32.dll
    0x71aa0000 - 0x71aa8000      C:\WINNT\system32\WS2HELP.dll
    0x7c340000 - 0x7c396000      C:\WINNT\system32\MSVCR71.dll
    0x7c3a0000 - 0x7c41b000      C:\WINNT\system32\MSVCP71.dll
    0x0b230000 - 0x0b286000      H:\Program Files\Oracle\Berkeley DB XML 2.4.16\bin\libdbxml_java24.dll
    0x0b290000 - 0x0b3d4000      H:\Program Files\Oracle\Berkeley DB XML 2.4.16\bin\libdbxml24.dll
    0x0b3e0000 - 0x0b626000      H:\Program Files\Oracle\Berkeley DB XML 2.4.16\bin\xqilla21.dll
    0x12000000 - 0x121ac000      H:\Program Files\Oracle\Berkeley DB XML 2.4.16\bin\xerces-c_2_8.dll
    0x6d530000 - 0x6d543000      C:\Documents and Settings\ukhew1\Desktop\jdk1.5.0_10\jdk1.5.0_10\jre\bin\net.dll
    0x71a50000 - 0x71a8f000      C:\WINNT\System32\mswsock.dll
    0x76f20000 - 0x76f47000      C:\WINNT\system32\DNSAPI.dll
    0x76fb0000 - 0x76fb8000      C:\WINNT\System32\winrnr.dll
    0x76f60000 - 0x76f8c000      C:\WINNT\system32\WLDAP32.dll
    0x76fc0000 - 0x76fc6000      C:\WINNT\system32\rasadhlp.dll
    0x662b0000 - 0x66308000      C:\WINNT\system32\hnetcfg.dll
    0x71a90000 - 0x71a98000      C:\WINNT\System32\wshtcpip.dll
    VM Arguments:
    jvm_args: -Dfile.encoding=Cp1252
    java_command: ag.Aggregator
    Launcher Type: SUN_STANDARD
    Environment Variables:
    JAVA_HOME=C:\Documents and Settings\ukhew1\Desktop\jdk1.5.0_10\jdk1.5.0_10\
    CLASSPATH=H:\jdk1.5.0_10\jre\lib\rt.jar;H:\Program Files\Oracle\Berkeley DB XML 2.4.16\jar\dbxmlexamples.jar;H:\Program Files\Oracle\Berkeley DB XML 2.4.16\jar\dbxml.jar;H:\Program Files\Oracle\Berkeley DB XML 2.4.16\jar\db.jar
    PATH=C:\WINNT\system32;C:\WINNT;C:\WINNT\System32\Wbem;C:\CSsystem;C:\Utils;C:\Program Files\Sybase.12\OCS-12_0\bin;C:\Program Files\Sybase.12\OCS-12_0\dll;C:\Program Files\Rational\common;C:\Program Files\Rational\ClearCase\bin;C:\Program Files\Rational\ClearCase\Bin;C:\local\oracle\clients\9203.2\bin;H:\jdk1.5.0_10\bin;H:\Program Files\Oracle\Berkeley DB XML 2.4.16\bin
    USERNAME=ukhew1
    OS=Windows_NT
    PROCESSOR_IDENTIFIER=x86 Family 15 Model 2 Stepping 7, GenuineIntel
    --------------- S Y S T E M ---------------
    OS: Windows XP Build 2600 Service Pack 2
    CPU:total 1 (cores per cpu 1, threads per core 1) family 15 model 2 stepping 7, cmov, cx8, fxsr, mmx, sse, sse2
    Memory: 4k page, physical 2096624k(1129700k free), swap 2992216k(2041352k free)
    vm_info: Java HotSpot(TM) Client VM (1.5.0_10-b03) for windows-x86, built on Nov 9 2006 13:13:34 by "java_re" with MS VC++ 6.0
    I am totally lost and would require some assistance... Thank you so much!
    Best regards,
    Khew

    Hi, it looks like you're using DBXML. This should be posted in the DBXML forum:
    Berkeley DB XML
    Ben Schmeckpeper

  • PID anti windup

    I have built a PID controller in labview. Ive
    been using time domain math, integral and continous calculation. And it
    works well. But I need a anti wind up.
    Is there a easy way to
    build this? I want to build it my self, and not use the PID block. Or if anyone could help me using one of the PID blocks, and to get the value from 
    Ygain, Yintegration, Yderivation and Y total. This so I can see how the process react on different changes.
    If
    anyone could make an easy example for me it would be great.
    I have
    tried with case loops etc but I dont get it to work properly.

    Open the Front panel of teh VI from the PID Toolkit and do a "Save as" and in the dialogs, tell LV to not update the callers.
    When you are done saving you will have your own copy of the PID VI that you can play with.
    Dig into that VI and find the values you want and create indicators on the icon connector to return those values each time the hacked_PID is called.
    Byt the time you get that done and play with it a bit, you will have good idea of how it works while at the same time getting a healthy does "so where does this wire go?".
    Ben
    Ben Rayner
    I am currently active on.. MainStream Preppers
    Rayner's Ridge is under construction

Maybe you are looking for