HT2188 What's a meaning of this code. EXC_BREAKPOINT (SIGTRAP)

What's a meaning of this code. EXC_BREAKPOINT (SIGTRAP), and how would I no if my phone been tract from thanks

This is a pretty strange stack trace. It's crashing in dyld (the dynamic library loader). That suggests that it's having trouble loading a dynamic library or Framework, which means it's in the loading of system code (since you can't have a 3rdparty dynamic library on a standard iphone). Notice how in the Binary Images section, your code doesn't even seem to be loaded yet (or was the rest of the dump truncated)? Do you do any manual loading of dynamic libraries (dlopen() or the like)? Even if you were, you'd expect main() to be on the stack if your program had actually loaded....
When you say they've tried reinstalling, I assume you mean your app? Does that mean they deleted your app and then reinstalled it, or something else? The most likely cause that comes to mind is corruption of the bundle. But you'd think that deleting and reinstalling would fix that up. More aggressive would be delete, reboot, then reinstall.
My next question would be whether this is a jailbroken iPhone. I'd ask the user to reboot the iPhone if they haven't already. I'd even be tempted to ask them to do a restore of the OS, but that's always an awkward thing to ask a customer to do.

Similar Messages

  • MM - PO - what is the meaning of this button?

    Dear friends,
    Could anybody help me with one question.
    There is a strange button in a Purchasing Order on the Account Assignment tab page on this screenshot (it is marked with red color).
    Screenshot below
    http://content.foto.mail.ru/mail/raiden87/81/i-84.jpg
    What is the meaning of this button? When it is used for?
    I hope that anybody knows the meaning =)

    hi raiden,
    as for as i have gone through the issue I have come to know that:
    If you want to use multiple account assignment for a line item in PO then at that moment you will have to first press the "repeat on " button. only after that multiple account button will be active that is just before your "repeat on " button.
    Steps:
    1:Save your PO.
    2:Go to transaction code ME22N to change the PO.
    (Here you will firstly see that the multiple a/c assignment button is firsty gray.It will become active only after when you press the "repeat on" button).
    I hope It will be helpfull for you.
    regards,
    Aslam Ansari.

  • So I have an iPad with the smart cover, and it's usually supposed to turn on the iPad when u open it, but it's no doing that for me. Nor is it turning off without pressing the button. What is the meaning of this?

    So I have an iPad with the smart cover, and it's usually supposed to turn on and off the iPad when u open it and close it, but it's not turning on for me. Nor is it turning off without pressing the button. What is the meaning of this?what caused it to be this way? Is there someway that I could fix it?

    Wait a sec did this just start?
    You set up the smart cover function in settings (you did that, right?) so, if you did that and it's failed you make an appointment at your nearest Genius Bar now.

  • What is the meaning of this column in the pricing  procedure?

    Dear Gurus,
    What is the meaning of this column in the pricing procedure?
    thanks..

    subtotal field : Subtotal field is used to pass the value to some other field in PO .
    for ex: using value 9 you pass the value to field komp-brtwr. so that this can be used in  any other routine in the pricing procedure.
    requirement field: if there is a scenario that condition type should come in pricing on some condition like vendor country is india. in that case use create the requirment and attached this requirement.in this requirment you put logic and set the sy-subrc value 4 or 0.

  • What's the problem in this code

    import java.lang.reflect.*;
    import java.awt.*;
    class ABC
         public Integer i;
         ABC()
         public void setInt(Integer t)
              i = t;
    public class SampleName {
    public static void main(String[] args)
    ABC g1 = new ABC();
    g1.setInt(new Integer(10));
    printFieldNames(g1);
    static void printFieldNames(Object o) {
    Class c = o.getClass();
    Field[] publicFields = c.getDeclaredFields();
    for (int i = 0; i < publicFields.length; i++)
    try {
    Object ref = publicFields.get(c);
    System.out.println(" ref.toString() : " + ref.toString());
         }catch(Exception e)
                   e.printStackTrace();
    What is the problem with this code,at run time Iam getting this exception
    java.lang.IllegalArgumentException: object is not an instance of declaring class
    How can we get the value of field of an object

    Now it got this exception
    java.lang.IllegalAccessException
    at java.lang.reflect.Field.get(Native Method)That's strange - I didn't! ;-)
    Are you running exactly the same code as the code you posted (except for the one line I said to change)?

  • Please tell me what is the problem with this code

    Hai,
    Iam new to Swings. can any one tell what is the problem with this code. I cant see those controls on the frame. please give me the suggestions.
    I got the frame ,but the controls are not.
    this is the code:
    import javax.swing.*;
    import java.awt.*;
    import java.awt.event.*;
    public class ex2 extends JFrame
    JButton b1;
    JLabel l1,l2;
    JPanel p1,p2;
    JTextField tf1;
    JPasswordField tf2;
    public ex2()
    setDefaultCloseOperation(EXIT_ON_CLOSE);
    setTitle("Another example");
    setSize(500,500);
    setVisible(true);
    b1=new JButton(" ok ");
    p1=new JPanel();
    p1.setLayout(new GridLayout(2,2));
    p2=new JPanel();
    p2.setLayout(new BorderLayout());
    l1=new JLabel("Name :");
    l2=new JLabel("Password:");
    tf1=new JTextField(15);
    tf2=new JPasswordField(15);
    Container con=getContentPane();
    con.add(p1);
    con.add(p2);
    public static void createAndShowGUI()
    ex2.setDefaultLookAndFeelDecorated(true);
    public static void main(String ar[])
    createAndShowGUI();
    new ex2();
    }

    import javax.swing.*;
    import java.awt.*;
    import java.awt.event.*;
    public class ex2 extends JFrame
        JButton b1;
        JLabel l1,l2;
        JPanel p1,p2;
        JTextField tf1;
        JPasswordField tf2;
        public ex2()
            setDefaultCloseOperation(EXIT_ON_CLOSE);
            setTitle("Another example");
            b1=new JButton(" ok ");
            p1=new JPanel();
            p1.add(b1);
            p2=new JPanel();
            p2.setLayout(new GridLayout(2,2));
            l1=new JLabel("Name :");
            l2=new JLabel("Password:");
            tf1=new JTextField(15);
            tf2=new JPasswordField(15);
            p2.add(l1);
            p2.add(tf1);
            p2.add(l2);
            p2.add(tf2);
            Container con=getContentPane();
            con.add(p1, BorderLayout.NORTH);
            con.add(p2, BorderLayout.CENTER);
            pack();
            setVisible(true);
        public static void createAndShowGUI()
            ex2.setDefaultLookAndFeelDecorated(true);
        public static void main(String ar[])
            createAndShowGUI();
            new ex2();
    }

  • Vector, what is the problem with this code?

    Vector, what is the problem with this code?
    63  private java.util.Vector data=new Vector();
    64  Vector aaaaa=new Vector();
    65   data.addElement(aaaaa);
    74  aaaaa.addElement(new String("Mary"));on compiling this code, the error is
    TableDemo.java:65: <identifier> expected
                    data.addElement(aaaaa);
                                   ^
    TableDemo.java:74: <identifier> expected
                    aaaaa.addElement(new String("Mary"));
                                    ^
    TableDemo.java:65: package data does not exist
                    data.addElement(aaaaa);
                        ^
    TableDemo.java:74: package aaaaa does not exist
                    aaaaa.addElement(new String("Mary"));Friends i really got fed up with this code for more than half an hour.could anybody spot the problem?

    I can see many:
    1. i assume your code snip is inside a method. a local variable can not be declare private.
    2. if you didn't import java.util.* on top then you need to prefix package on All occurance of Vector.
    3. String in java are constant and has literal syntax. "Mary" is sufficient in most of the time, unless you purposly want to call new String("Mary") on purpose. Read java.lang.String javadoc.
    Here is a sample that would compile...:
    public class QuickMain {
         public static void main(String[] args) {
              java.util.Vector data=new java.util.Vector();
              java.util.Vector aaaaa=new java.util.Vector();
              data.addElement(aaaaa);
              aaaaa.addElement(new String("Mary"));
    }

  • I have a exclamation red mark next to my inbox for my email. What does that mean. This is on my iPad.

    I Have a exclamation red mark next to my inbox. what does that mean? This is on my ipad

    It means that one of your messages has been unable to send. Tap on it and try resending when it goes the mark should go away

  • What is not right about this code??

    Can anyone tell me what is not right about this code??? Ive have been trying to work it out for myself for the past 2hrs but cant seem to get it right. I think i must have a bracket or something in the wrong place or missing but whatever i do it either flags up as an alert or wont calculate once uploaded. Sooooo frustrating!!
    total_funeral = 1640.00 + Number(GetSelectedItem(document.catwebformform22057.CAT_Custom_76922)) + Number(GetSelectedItem(document.catwebformform22057.CAT_Custom_00015.value) + Number(GetSelectedItem(document.catwebformform22057.CAT_Custom_76926)) + Number(GetSelectedItem(document.catwebformform22057.CAT_Custom_00010)) + Number(document.catwebformform22057.CAT_Custom_76927.value) + (document.getElementById('CAT_Custom_76926_0').checked ? Number(document.catwebformform22057.CAT_Custom_00010.value) : 0);

    This is all of javascript for caculation (http://www.milesmemorials.com/estimator.html) -
    function GetSelectedItem(frname) {
    chosen = ""
    len = frname.length
    for (i = 0; i <len; i++) {
    if (frname[i].checked) {
    chosen = frname[i].value
    return chosen
    function Recalculate() {
    total_funeral = ""
    crem_disbursements = ""
    burial_disbursements = ""
    total_disbursements = ""
    doctors_fees = ""
    crem_fee = ""
    cemetery_fee = ""
    minister_fee_crem = ""
    minister_fee_burial = ""
    civil_fee_crem = ""
    civil_fee_burial = ""
    carry_fee_burial = ""
    total_funeral = 1640.00 + Number(GetSelectedItem(document.catwebformform22057.CAT_Custom_76922) ) + Number(GetSelectedItem(document.catwebformform22057.CAT_Custom_00005)) + Number(GetSelectedItem(document.catwebformform22057.CAT_Custom_00015.value)) + Number(GetSelectedItem(document.catwebformform22057.CAT_Custom_76926) ) + Number(GetSelectedItem(document.catwebformform22057.CAT_Custom_00010.value)) +
    Number(GetSelectedItem(document.catwebformform22057.CAT_Custom_76927.value))  +
    (document.getElementById('CAT_Custom_76926_0').checked ? Number(document.catwebformform22057.CAT_Custom_00010.value) : 0);
    minister_fee_crem = Number(document.catwebformform22057.CAT_Custom_00003.value)
    minister_fee_burial = Number(document.catwebformform22057.CAT_Custom_00004.value)
    civil_fee_crem = Number(document.catwebformform22057.CAT_Custom_00006.value)
    civil_fee_burial = Number(document.catwebformform22057.CAT_Custom_00001.value)
    carry_fee_burial = Number(GetSelectedItem(document.catwebformform22057.CAT_Custom_00005))
    doctors_fees = Number(GetSelectedItem(document.catwebformform22057.CAT_Custom_76929))
    crem_fee = Number(document.catwebformform22057.CAT_Custom_76930.value)
    cemetery_fee = Number(document.catwebformform22057.CAT_Custom_76931.value)
    zz=document.getElementById('CAT_Custom_76926_0').checked==true;if(zz) { document.getElementById('basicServices').style.display='block'; } else { document.getElementById('basicServices').style.display='none'; };
    crem_disbursements = civil_fee_crem + doctors_fees + crem_fee + minister_fee_crem
    burial_disbursements = minister_fee_burial + cemetery_fee + civil_fee_burial
    if(Number(GetSelectedItem(document.catwebformform22057.CAT_Custom_76928)) == 0){
              total_disbursements = crem_disbursements;
    }else{
              total_disbursements = burial_disbursements;
    if(Number(GetSelectedItem(document.catwebformform22057.CAT_Custom_76926)) == 0){
              CAT_Custom_00010.value=0
    document.catwebformform22057.total.value = total_funeral.toFixed(2);
    document.catwebformform22057.doctors_fees.value = doctors_fees.toFixed(2);
    document.catwebformform22057.civil_fee_crem.value = civil_fee_crem.toFixed(2);
    document.catwebformform22057.civil_fee_burial.value = civil_fee_burial.toFixed(2);
    document.catwebformform22057.minister_fee_crem.value = minister_fee_crem.toFixed(2);
    document.catwebformform22057.minister_fee_burial.value = minister_fee_burial.toFixed(2);
    document.catwebformform22057.carry_fee_burial.value = carry_fee_burial.toFixed(2);
    document.catwebformform22057.crem_fee.value = crem_fee.toFixed(2);
    document.catwebformform22057.cemetery_fee.value = cemetery_fee.toFixed(2);
    document.catwebformform22057.total_crem_disbursements.value = crem_disbursements.toFixed(2);
    document.catwebformform22057.total_burial_disbursements.value = burial_disbursements.toFixed(2);
    document.catwebformform22057.grand_total.value = (total_funeral + total_disbursements).toFixed(2);

  • What's the point of this code?

    Hi, I'm getting an error in a program.
    So I went to look in the code where the error is displayed.
    And I found this:
    z_nbjr = sy-datum - z_fromdt.
    if z_nbjr > 1.
      message is displayed.
    Now, z_fromdt is the value TVARV-LOW for 'ZVDL_VBUK_LAST_RUN', and the message that is displayed is 'Please rebuild index file ZVDL_VBUK'.
    Can anyone explain to me what is the point of this? What is TVARV-LOW?
    And why do they make this check? And how do I rebuild the index file?

    >
    christophe latinne wrote:
    > Can anyone explain to me what is the point of this? What is TVARV-LOW?
    > And why do they make this check? And how do I rebuild the index file?
    As Pushpraj has already pointed out correctly, TVARV is where the variants are stored. It's rather strange that you've never seen fields like LOW and HIGH, because they're also used in the ABAP range tables (see Help for command RANGES).
    Since this is all your custom development, we, unfortunately, cannot know what is the point of all this. I'm guessing that the message to "rebuild the index" is also custom and, therefore, you would need to find a documentation for the program in question or ask your colleagues what this could mean. Also check if there is a long text available for the message (although I doubt that).
    Most likely it's some kind of an internal process of running some other program.

  • What does the meaning of this error in udump?

    I solved my RMAN backup slowness problem. But I noticed that during the backup process, it generated an error file in udump as
    $ more mybk_ora_651394.trc
    /oracleapp/admin/mybk/udump/mybk_ora_651394.trc
    Oracle Database 10g Release 10.2.0.1.0 - 64bit Production
    ORACLE_HOME = /oracleapp/oracle/product/10.2.0/db_1
    System name: AIX
    Node name: mybk
    Release: 3
    Version: 5
    Machine: ##########
    Instance name: mybk
    Redo thread mounted by this instance: 1
    Oracle process number: 34
    Unix process pid: 651394, image: oracle@mybk (TNS V1-V3)
    *** 2007-01-19 16:30:15.302
    *** ACTION NAME:(0000037 STARTED111) 2007-01-19 16:30:15.285
    *** MODULE NAME:(backup incr datafile) 2007-01-19 16:30:15.285
    *** SERVICE NAME:(SYS$USERS) 2007-01-19 16:30:15.285
    *** SESSION ID:(539.666) 2007-01-19 16:30:15.285
    *** 2007-01-19 16:30:25.862
    *** ACTION NAME:(0000063 STARTED111) 2007-01-19 16:30:25.862
    *** MODULE NAME:(backup archivelog) 2007-01-19 16:30:25.862
    What does it mean? Every "control autobackup" will produce such error file in udump.
    Message was edited by:
    user508054

    I think I need more investigation about this. I found two papers last night:
    http://www-128.ibm.com/developerworks/linux/linux390/perf/tuning_rec_database_OracleRec.html
    http://www.netapp.com/library/tr/3408.pdf
    with a previous online paper mentioning to alter the maxservers of aio0. Although this is an alternative, I tried to increase the value to 300 (500 at this moment) and it does not seem to work. On other hand, with change of the disk_asynch_io, it will hinder the exp/imp pump. So I really don´t know what to say.
    Apparently the disk_asynch_io needs to be FALSE in order to speed up the backup. just verified again, even with my maxserver=500 did not help.
    Message was edited by:
    user508054
    Use the expdp to dump my db with the asynch_io in FALSE. It looks OK, no delay.
    Message was edited by:
    user508054

  • HT5293 what does it mean if this pops up when getting on a network. it read, unable to join due to another device is using this ip address.

    what does it mean when the message , "can not join network due to another device using this ip address?"

    Most likely, you're getting a network address from your router. The address assignment ("lease") expires, and has to be renewed, after a certain amount of time, which might be one hour or one day. The lease expired without being renewed because the device was offline at the time. Meanwhile, the address was leased to another device on the network. When the first device comes back online, it still has the address that's now also leased to the second device. Depending on what kind of router you have, the conflict may resolve itself automatically. If not, then from the menu bar, select
     ▹ System Preferences ▹ Network
    If the preference pane is locked, click the lock icon in the lower left corner and enter your password to unlock it. Then click the Advanced button and select the TCP/IP tab. Now look at the menu labeled Configure IPv4. If the selection in that menu is Using DHCP, click the button labeled Renew DHCP Lease. Test.
    Less likely, you have a network address that you assigned yourself, and another device is assigning itself the same address. In that case, the selection in the Configure IPv4 menu will be either Manually or Using DHCP with manual address. This kind of conflict won't be resolved automatically. You have the following options to resolve it:
    Change the menu selection to Using DHCP.
    Change the manually-assigned address to one that isn't being used by another device.
    Change the address of the other device.  
    Which of these options you should choose depends on the details of why you're using a static IP address. Any change you make to the network settings must be applied before it takes effect. To do that, click OK and then Apply.

  • What is the error in this code

    hi everone
    I write this code in push button
         declare
              x varchar2(222);
         begin
              x:=get_application_property(:system.mode);
              message(x);
              end;
    to know the system mode
    but the resullt was exeception ora-06502

    simple write
    x := :system.mode;
    or
    message(:system.mode);
    message(:system.mode);Best way to resolve the issue is always check Forms online help first

  • What is the problem in this code

    hi
    im tring to ftech mutliple reords to tabuler form text item
    i write this code but its only fetch values for first record in the text item and do not fetch to other records in the same text item
    Declare
    cursor c is
    select distinct group_a from sc_mast; <here i select all values
    in my database that they are 63 values>
    begin
    for r in c loop
    next_record;
    :visib_groups.group_a:=r.group_a;<it assign vakues only for first record>
    end loop;
    end;

    This?
    Go_block('>your_block<')
    first_record;
    begin
    for r in c loop
    :visib_groups.group_a:=r.group_a;<it assign vakues only for first record>
    next_record;
    end loop;Ros

  • What's the meaning of this error message?

    I regularly receive from different AEBS the following error
    message:
    | Sep 16 11:33:06 15a6.net.pasteur.fr 15a6-net-pasteur-fr dot11: Deauthenticated with station 00:11:24:2d:39:a6 (received invalid class-3 frame).
    What is the cause of this error?
    What is an invalid class-3 frame?
    dan

    Hello,
    If you found that in your Airport Express log, then seems that can be caused (at least one option is:) streaming iTunes music through the AE.
    Solution: Deactivate DHCP on the Express via the Aiport Management Utility, and fix it's IP and DNS settings to something coherent with your network. Save the settings to the Express, it reboots and your are done.
    (If you continue monitoring the logs, the "Deauthenticated..." message above keeps on happening, but the Express now recovers fast enough so that iTunes never notices)
    So just avoid DHCP if that is your scenario and all will come back normality.
    Please let me know if all is OK after this.

Maybe you are looking for

  • Cisco ASA 5505 configuration

    Hi, I have configured cisco ASA 5505 but I can't get access to internet using my laptop connected to the ASA. I did not use the console but the graphical interface for the configuration. I changed the inside adress of the ASA and it is 192.168.2.1. F

  • I've been having a problem with auto-fill in the email on my ipod touch.

    I have updated to new email addresses, or accidnetly typed in the wrong on, and now the email addresses won't go away, even though they're not in my contacts. So when i said for instance i want to send a message to [email protected] and it just chang

  • View all rows in Entity object

    please I have a problem can I one help me I want to get all rows from specific Entity object example I am now in validate method in XXX Entity Object and i want to get all the rows in XXX table from validate method(all rows) can any one help me to do

  • Missing parameters in init file

    Dear All, What would happen is following parmeters are missing in the init file of Oracle11g Database? *.dispatchers='(PROTOCOL=TCP) (SERVICE=xyzXDB)' *.shared_servers=1 Thanks

  • Opening external files

    Hello, im starting in flash, and i want to open external files with buttons, for a cd menu that i'm creating. I have created an fscommand folder and a launcher.bat that execute the file that i want when i press the button. But what i really want is t