Help with a basic dbx question

Solaris 10. DBX'ing a core file that was not compiled with any debugging information. When you do a basic "where", you typically get:
[1] someFile::someFunction(arg1, arg2, arg3, arg4, arg5, arg6) at 0x5ab32x
Can someone tell me what each of the addresses for the args above are? And what the "at 0x...." is ?
I am trying to examine the arguments passed into the functions using "examine addr" but having difficulty.
Thanks

Without any debugging information, dbx cannot know how many arguments, or of what type, the function has.
It displays the contents of the stack where the first 6 arguments would be if the registers were spilled, assuming that each argument was one word. Since the actual arguments might not be one word each, and since the registers might not have been spilled, the values displayed don't always have any significance. (If the function has fewer than 6 arguments, the remaining values have no significance.)
The 0x5ab32x looks like a copying error. Dbx shows the (hex) address where the program crashed. The trailing x cannot be correct.
You can get a disassembly starting at the function's address, or at some point ahead of the address shown, and try to match it to the source code.

Similar Messages

  • Can anyone help with a basic billing question? Verizon has shown they cannot.

    Duplicate discussion - please visit:
    https://community.verizonwireless.com/thread/808960
    Message was edited by: Admin Moderator

    You call the bank or credit card company and have them do a charge back. You need only prove with your documents that it was an error and that they were returned.
    Much easier than fighting Verizon for the moola!
    Good Luck

  • I need help with these adobe illustrator questions?

    Please help with the following questions. Thanks!!
    The keyboard short for selecting the direct selection tool is?
    The rectangle that shows the outermost dimensions of any box is called the?
    A floating panel can be placed on the panel dock by?
    The selection tool is displayed as a black arrow and is used to select, resize, or move an entire item.(true or false)
    One way to deselect an object is to click somewhere else on the document (true or false)
    A stroke is on the inside of a shape or object (true or false)
    The more text framed you use, the better your document. (true or false)
    The rectangle frame has a non printing X on it (true or false)
    To print preview a document, click on the Save icon on the standard toolbar. (true or false)

    I'm not sure if it's a good idea to go the route you go now.
    You are asking for assistance and – as I understand it – you are just trying to pass a class right now, but you don't know the answers to a lot of pretty basic questions.
    What's your purpose?
    I – as well as many people here – could answer all your questions. Also, I could provide some misleading hints which could cause serious trouble for you in case you would use them in your exam.
    You should go a different route.

  • I need help with Changing my Security Questions, I have forgotten them.

    Its simple, I tried buying a Gym Buddy Application and I had to answer my security questions... Which I have forgotten I made this a while ago so I probably entered something stupid and fast to make I really regert it now. When i'm coming to this...

    Hello Adrian,
    The steps in the articles below will guide you in setting up your rescue email address and resetting your security questions:
    Rescue email address and how to reset Apple ID security questions
    http://support.apple.com/kb/HT5312
    Apple ID: All about Apple ID security questions
    http://support.apple.com/kb/HT5665
    If you continue to have issues, please contact our Account Security Team as outlined in this article for assistance with resetting the security questions:
    Apple ID: Contacting Apple for help with Apple ID account security
    http://support.apple.com/kb/HT5699
    Thank you for using Apple Support Communities.
    Best,
    Sheila M.

  • Need a help with something basic, renaming pages made in muse

    Hi All
    can someone help me with a basic task,
    I need to rename a page ivve made in muse containing slide shows or forms,
    when I upload via FTP it over writes the websites index.html page
    any suggestions on what i do to rename Ive tried everything
    Thank you, In anticipation
    Julie

    Hi Julie,
    To rename a page name in Muse, please right click on page and go to page properties. You can rename the page name of all the pages as well as the "file name" in Muse but you can't change the 'File name" of the index page in Muse. Please refer to the following screenshot :
    If you choose to export the site as HTML, you can then change this as well but then the menu items links will be broken and you will have to manually link all the menu items outside muse.
    Hope this helps.
    Cheers!
    Aish

  • Help with probably a stupid question...

    I'm using CS3 and I'm applying a feathered edge to a photo using the refine edges command. The only thing I can't for the life of me figure out, is how to get the now white border to be transparent, so that when it's placed into my InDesign document (overlayed onto another photo) the underlaying photo isn't blocked by the white box. Sorry for the probably very basic use question, but any help would be appreciated...
    ~ Vince

    Make the background layer a normal layer (rename it) and delete the white part that you want to be transparent.
    Edit: You need to save it as a .PSD

  • Need help with changing my security questions

    I need to know how I can buy songs but I forgot my security questions so how do I change them?

    Alternatives for Help Resetting Security Questions and Rescue Mail
         1. Apple ID- All about Apple ID security questions.
         2. Rescue email address and how to reset Apple ID security questions
         3. Apple ID- Contacting Apple for help with Apple ID account security.
         4. Fill out and submit this form. Select the topic, Account Security.
         5.  Call Apple Customer Service: Contacting Apple for support in your
              country and ask to speak to Account Security.
    How to Manage your Apple ID: Manage My Apple ID

  • Need help with Visual BASIC

    I am in an intro to programming course, and I am writing a console on Visual Basic 2013.  My problem with Visual Basic right now is that I cannot get the formula to work.  All of my inputted values end up being 0's.  Am I using incorrect parameters,
    am I misunderstanding how to use arguments; am I not coding correctly?  The scenario for my problem is:
          Areas of Rectangles: The area of a rectangle is the rectangle’s length times its width.  Design a program that asks for the length and width of two rectangles. The program should tell the user which rectangle has the
    greater area, or if the areas are the same.
    //My code is 
    Module Module1
        Sub Main()
            Dim LENGTH As Double = 0
            Dim WIDTH As double = 0
            Dim AREA_1 As Double
            Dim AREA_2 As Double
            Dim RECTANGLE As String = " "
            area1(LENGTH, WIDTH)
            areaCalc1(AREA_1, LENGTH, WIDTH)
            area2(LENGTH, WIDTH)
            areaCalc2(AREA_2, LENGTH, WIDTH)
            decision(AREA_1, AREA_2, RECTANGLE)
            displayDec(RECTANGLE)
            Console.WriteLine("Press any key to exit...")
            Console.Read()
        End Sub
        Sub area1(ByVal LENGTH, WIDTH)
            Console.WriteLine("Please input the following for your first rectangle:")
            Console.Write("Length: ")
            LENGTH = Console.ReadLine()
            Console.Write("Width: ")
            WIDTH = Console.ReadLine()
        End Sub
        Sub areaCalc1(ByVal AREA_1, ByRef LENGTH, WIDTH)
            AREA_1 = LENGTH * WIDTH
            Console.WriteLine("This is the area for rectangle 1: " & AREA_1)
        End Sub
        Sub area2(ByVal LENGTH, WIDTH)
            Console.WriteLine("Please input the following for your second rectangle: ")
            Console.Write("Length: ")
            LENGTH = Console.ReadLine()
            Console.Write("Width: ")
            WIDTH = Console.ReadLine()
        End Sub
        Sub areaCalc2(ByVal AREA_2, ByRef LENGTH, WIDTH)
            AREA_2 = LENGTH * WIDTH
            Console.WriteLine("This is the area for rectangle 2: " & AREA_2)
        End Sub
        Sub decision(ByRef AREA_1, AREA_2, ByVal RECTANGLE)
            If AREA_1 < AREA_2 Then
                RECTANGLE = "rectangle 2"
            Else
                RECTANGLE = "rectangle 1"
            End If
        End Sub
        Sub displayDec(ByRef RECTANGLE)
            Console.WriteLine("The rectangle with the greater Area is " & RECTANGLE)
        End Sub
    End Module

    Hi,
      If you are just beginning to program i highly recommend setting the following options in the Visual Studio menu (Tools/Options). Open the Options window and go to the (Projects and Solutions) and click on (VB Defaults). Now set the options as follows.
    Option Strict - On
    Option Explicit - On
    Option Infer - Off
     And probably one of the most important things to do is learning to Debug your code. That will save you hours of headaches when you get unexpected results in your applications. You will know how to track it down and find where in the code your results
    are being thrown off. There are quite a few Debugging tutorials on the internet. Here are a few decent ones.
    Debugging Express
    Breakpoints and Debugging Tools
    If you say it can`t be done then i`ll try it

  • Urgently need some help with a few Swing questions

    Hi
    I'm hoping someone can help me, I need to get these problems fixed very soon or I'm in trouble.
    Scenario: I have a JTreeTable inside a JScrollPane inside a JPanel that is inside a JFrame.
    Problems I'm having (solutions or help with any of all would be greatly appreciated):
    1. I'm trying to make it possible to do a selection in the JTreeTable by right-clicking the mouse (as well as the normal left click), but only if there is nothing currently selected, so I do something like this:
            int[] sel = treeTable.getSelectedRows();
            if ((sel == null) || (sel.length == 0)) {
                treeTable.setColumnSelectionAllowed(false);
                treeTable.setRowSelectionAllowed(true);
                treeTable.setRowSelectionInterval(0, 0);            // but I don't know what these values should be set to, where to get them from?
            }I want to select the row at the mouse cursor, I have the x/y values but I don't know how to relate them to the row index. The full feature that I require is I need
    2. I have a popup menu that appears after a right click on the JTreeTable, it's handled by a MouseListener attached to the JTreeTable, I want this to also appear anywhere else in the JScrollpane. I've tried moving the MouseListener to the JScrollPane, but then the popup stops working if user clicks inside JTreeTable, if I add it to both, it almost works, except that user cannot click below the JTreeTable's first column. Any ideas on this?
    3. How can I change the JTreeTable selection behaviour so that you can only multi-select using Ctrl/Shift and not the mouse? Mouse must only allow single connection, I'm currently using:
    treeTable.setSelectionMode(ListSelectionModel.MULTIPLE_INTERVAL_SELECTION);But this allows mouse drag selection as well, which shouldn't be there. How is this avoidable?
    4. I want to make the minimize button to make an icon in system tray and be able to restore it by clicking on it. Also I want to be able to minimze from a popup menu, I've currently got the following:
            thisApp.getMainFrame().setState(Frame.ICONIFIED);
            thisApp.getMainFrame().setVisible(false);
            thisApp.getMainFrame().pack();
            try {
               tray.add(trayIcon);
            } catch (AWTException ex) {
            }thisApp is a copy of the SingleFrameApplication variable that is passed to the main frame constructor (main frame extends FrameView). This code above doesn't do anything except create the tray icon. If I click on the tray icon (code below) then it opens up a blank window:
            trayIcon.addActionListener(new ActionListener() {
                public void actionPerformed(ActionEvent e) {
                    thisApp.getMainFrame().setVisible(true);
                    thisApp.getMainFrame().setState(Frame.NORMAL);
                    thisApp.getMainFrame().pack();
                    tray.remove(trayIcon);
            });I need to get this part fixed and I optionally also want to bind this behaviour to the normal minimize button.
    Please, please help!
    Lionel

    Issue 2 has been solved, was an error in the MouseListener code.

  • Please help me with this basic JSF question!

    Hi,
    I m creating a JSF website using Sun Studio Creator, i think the problem i have is quite basic, after a bit research, i still couldn't solve it, i hope someone can help me here, thanks.
    This is the scenario:
    There are 2 buttons on the page, B1 and B2, when the user clicks on the B1 button, a list box will show up, let's call it List1, say in a light box, but it really doesn't matter where the list box is. There are some options in the list box, when the user clicks on one of the options, another list box will be shown and filled up by an Ajax call to a Servlet, let's call this one List2. Now the user should select one of the options from List2, and click on the button B2, the server should then do something based on the options selected in List2
    My problem is how to get the selected value in List2. Normally, if the list box is created in Studio Creator, i can do this:
    // this is in the Java file
    private Listbox listBox = new Listbox();
    public void setListBox ...
    public Listbox getListBox ...
    public String B2_action() {
        Object selectedValue = listBox.getValue();
        getSessionBean1().setListBoxSelectedValue(selectedValue);
        // do something on the server
    ...this is what i normally do, but now the List Box is generated by Ajax, there is no such object in the Java file, how can i get the component and do the same thing as above sample does?
    Thanks for your help!
    best regards

    I guess you can first define a pointer to the listBox2, then create instance of it in the action method. After that it won't be problem to reach the selected item.
    // this is in the Java file
    private Listbox listBox1 = new Listbox();
    private Listbox listBox2; //Instance may be created here, I am not sure
    public void setListBox1 ...
    public Listbox getListBox1 ...
    public String B2_action() {
        private Listbox listBox2 = new Listbox(); //or instance may be created here
    }Edited by: mkahraman on Feb 19, 2008 4:09 AM

  • Can anybody help with these basic questions..?

    Hi friends,
    1)
    I am developing a inventory module. As soon as sales man confirms invoice , invoice should be printed on LOCAL printer AND a picking list be printed on NETWORK printer of warehouse. So how can I get/assign a list of printers.
    2) What is the maximum no.of records that can be displayed/entered in a datablock? Is it 250 ? If it is then, is there any way to enter/display more than 250 records in a datablock ? I am using forms5.0. what is the use of TABLE_FROM_BLOCK builtin ?
    thankyou verymuch,
    Mubeenmd

    2) I haven't discovered the limit so far.
    You may have thousands of records. Only, be careful how you handle the data, for fetching once thousands of records may choke the network.
    1) Use reports. You should call the desired report using run_product and passing to it a parameter indicating the desname (printer name).
    null

  • Can someone help with some basic answers on Premiere Elements 12

    I have used Premiere Elements in the past (up to Premiere Elements 9) but only once per annum to edit the past year's video of my Grandchildren. The change now is that I am using a Panasonic HC-V520 and have been shooting in 1080 50p. Premiere Elements 9 doesn't support this format I believe.
    My questions are:
    1     Can Premiere Elements 12 import and edit this format?
    2     If the answer is yes to question 1, can I mix older footage from my old Sony Camcorder with this newer footage for edit in Premiere Elements?
    3     Can I then output to either a Blu Ray disc to play on my DVD Player or an ordinary DVD disc to play on an older DVD Player which is not blu ray compatible?
    4     Am I wasting my time in recording in 1080 50p and should I instead be recording new footage in a different format?
    Thanks for any help you can give me.

    1. yes
    2. yes
    3. No. DVD players can't play BluRay discs -- even if they are burned to a DVD disc.
    4. 1080p50 is a perfectly legitimate mode for shooting, particularly if you're shooting video with a lot of action, since it has double the actual frames of 1080i50. However, your output video may or may not actually have 50p frames (or even be 1920x1080), depending on what form of media you're publishing as. The BluRay files that Premiere Elements outputs, for instance are 50i.

  • Need help with Click Frequently Asked Questions in iProcurement

    Hi Guys,
    In iProcurement purchasing homepage, we have 1. Click Frequently Asked Questions and 2. Review Purchasing policies on the right side as links.
    When we click Frequently Asked Questions, its taking me to a page where standard FAQ is there. Now my requirement is, If "Frequently Asked Questions" link is clicked, then a page should open and in that i should put two links , one link will open the standard FAQ and the other link will open the Companys FAQ.
    Can we achieve this thru AK Developer. When that link is clicked, what is happening in the background. Actually I checked in Applications-->Messages, by typing "ICX_POR_PRMPT_HOME_FAQ". In the message, I got this "Check <a href=javascript:FAQ()>Frequently Asked Questions</a>". This is what getting displayed on the homepage as a link. All this information, i got it from PORHOME.xml page in which a function calling that FAQ() is also written which is calling another function called "callHelp('faq')".
    But I couldnt see the callHelp() where it is called. Is there any other way to implement this. Help Appreciated.
    Thanks

    Hi,
    If I could understand your requirement correctly then here is what you can do.
    1. Create a complete new HTML page with the two new links and place in HTML directory.
    2. Enable personalizations
    3. Using personalization change the "Destination URI" to the newly created page.
    Hope this helps.
    KC

  • I need help with retrieving my security questions

    Hi i need help please!! Im desperate!!
    Everytime i log on apple and try to change my security questions. It takes me back to the log in page as soon as i press on password and security tab and i get this message ( an unknown error has occured ) i really dont know what to do i am not able to buy anything on app store because everytime i try to purchase it asks for my security questions which i have forgotten... I live in egypt btw. And i almost exceeded my security questions attempts :S.
    Help would be much appreciated thank you ;)

    Read this about how to change the security questions: http://support.apple.com/kb/HT5312
    If you can't use these procedures contact Apple. See http://support.apple.com/kb/HT5699
    You can also call your country number from http://support.apple.com/kb/HE57 and ask to speak with Account Security.
    You can also go to the ExpressLane at https://expresslane.apple.com and then iTunes > iTunes Store > Password and Security Questions and fill out the form.

  • Flash Help with Flash Basic

    Hello Robohelp Users,
    we want to create our own Robo Flash Help. Does it works with
    the Flash Basic Version or do we need the Flash Professionell
    version?
    Margit

    Margit -
    Flash Help is a product of Robohelp; your users only need
    Macromedia's Flash player installed in order to view it. Which,
    according to MM, is about 97.7% of the Internet-connected PCs.
    So, it looks like you're good to go, yes?

Maybe you are looking for

  • How do I send a saved picture through my iphone?

    I took a pic and want to send the pic to someones regular cell phone...anyone know how to do this?

  • I can't connect to itunes music store ..

    my music store won't work. for a few weeks now i've been getting an error message saying "Itunes could not connect to the Music Store. An unknown error has occured [-3221]." i've redownloaded itunes && the first few times the store worked but now not

  • How to fail messsages when timeout exception is thrown in BPM?

    Hi In my BPM, if the time out exception is thrown in BPM, in SXMB_MONI, all the inbound messages' staus is 'processed sucessfully' ? How can I make the message fail?  With a red flag  or anything indicating exception? In my design I used deadline bra

  • Queries to extract slow moving stock

    Hi All, I have the following queries to extract the item list.  May I know how to modify this queries to filter slow moving item where Purchase date are over 90 days older than today date.  Example, today is 01/05/15 the report will list only item wh

  • BPC NW Inter Company Elimination

    Dear Experts, 1) Can Experts tell me About All Steps Involved in Inter Co. Elimination in BPC NW . 2) Is it Possible to configure and get Results of Inter CO. Elimination with out Inter Booking Matching? Thanks in Advance Ritesh