Can't fix this code

im still new to the j2me thing , so guys i need ur help if you plz , i should add a try block but its not working, waiting for ur replies .
import java.util.*;
import java.io.*;
import javax.microedition.io.*;
import javax.microedition.io.file.*;
import javax.microedition.midlet.*;
import javax.microedition.lcdui.*;
public class FileTransfere extends MIDlet implements CommandListener {
private String currDirName = "fileTransfere/";
public DatagramConnection dd = (DatagramConnection)Connector.open("datagram://:1234");
public Vector ReqFiles = new Vector();
public Vector sendFiles = new Vector();
public Vector otherFiles = new Vector();
private Command exit = new Command("Exit", Command.EXIT, 3);
public void startApp()
try {
showCurrDir();
} catch (SecurityException e) {
Alert alert = new Alert("Error",
"You do not have permission to access the file system!",
null, AlertType.ERROR);
alert.setTimeout(Alert.FOREVER);
Form form = new Form("Cannot access FileConnection");
form.append(new StringItem(null,
"You cannot run this MIDlet with the current permissions. "
+ "Sign the MIDlet suite, or run it in a different security domain"));
form.addCommand(exit);
form.setCommandListener(this);
Display.getDisplay(this).setCurrent(alert, form);
} catch (Exception e) {
e.printStackTrace();
public void pauseApp()
public void destroyApp(boolean cond)
notifyDestroyed();
public void commandAction(Command c, Displayable d)
     if (c == exit) {
destroyApp(false);
void showCurrDir()
Enumeration e;
FileConnection currDir = null;
Form browser = new Form("files:");
try {
if ("/".equals(currDirName)) {
e = FileSystemRegistry.listRoots();
System.out.println(currDirName);
} else {
currDir = (FileConnection)Connector.open("file://localhost/" + currDirName);
e = currDir.list();
// not root - draw UP_DIRECTORY
String sendMe = "FILES\n";
String filenames = "";
iny count = 0;
while (e.hasMoreElements()) {
String fileName = (String)e.nextElement();
System.out.println(fileName);
browser.append(fileName);
FileConnection file = (FileConnection)Connector.open("file://localhost/" + currDirName + fileName);
if(!file.isDirectory())
     filenames += fileName +"\n";
     count ++;
sendMe += count + "\n"+ fileNames;
try
     byte[] data = sendMe.getBytes();
     DatagramConnection dc = (DatagramConnection) Connector.open("datagram://127.0.0.1:2020");
          Datagram d = dc.newDatagram(data,data.length);//packet
                    dc.send(d);//send
catch(Exception e)
/* FileConnection wf = (FileConnection)Connector.open("file://localhost/root1/testfile.txt");
OutputStreamWriter osw = new OutputStreamWriter(wf.openOutputStream());
FileConnection file = (FileConnection)Connector.open("file://localhost/" + currDirName + fileName);
InputStreamReader isr = new InputStreamReader(file.openInputStream());
System.out.println("read: " + file.canRead());
System.out.println("write: " + file.canWrite());
System.out.println("directory: " + file.isDirectory());
System.out.println("file: " + !file.isDirectory());
System.out.println("Time: " + file.lastModified());
int ch = isr.read();
int counter = 0;
String s = "";
     while( ch != -1)
          if (counter == 1024)
               try
                    byte[] data = s.getBytes();
                    DatagramConnection dc = (DatagramConnection) Connector.open("datagram://127.0.0.1:2020");//socket
                    Datagram d = dc.newDatagram(data,data.length);//packet
                    dc.send(d);//send
                    counter = 0;
                    s = "";
               }catch(Exception e)
                    e.printStackTrace();
                    //send the packet & reset the counter
          counter ++;
          //osw.write(ch);
          //System.out.print((char)ch);
          s += (char)ch;
          ch = isr.read();
          isr.close();
          osw.close();
new Thread(new Runnable()
     public void run()
          for(;;){
          byte[] data = new byte[1024];
          Datagram recDG = dd.newDatagram(data,data.length);//packet
               dd.receive(recDG);//receive
               validatePacket(recDG);
).start();
catch (Exception ee)
public void validatePacket(Datagram re)
     byte[] bytes = re.getData();
     String line = new String();
     int ch;
     ByteArrayInputStream bais = new ByteArrayInputStream(bytes);
     ch = bais.read();
     while( ch != 10)
          line += (char)ch;
          ch = bais.read();     
     System.out.println(line);
     if(line.equals("FILES"))
          line = new String();
          ch = bais.read();
          while( ch != 10)
               line += (char)ch;
               ch = bais.read();     
          int nofs = Integer.parseInt(line);
          for(int i = 0; i<nofs;i++)
               line = new String();
               ch = bais.read();
               while( ch != 10)
                    line += (char)ch;
                    ch = bais.read();     
               FileConnection fc = (FileConnection)Connector.open("file://localhost/" + currDirName + line);
               otherFiles.addElement(line) ;
               if (!fc.exists())
                    ReqFiles.addElement(line) ;
          for(i = 0; i< ReqFiles.size(); i++)
               String sendMe = "I WANT FILE\n" + ReqFiles.elementAt(i)+"\n";
               try
     byte[] data = sendMe.getBytes();
     DatagramConnection dc = (DatagramConnection) Connector.open("datagram://127.0.0.1:2020");
          Datagram d = dc.newDatagram(data,data.length);//packet
                    dc.send(d);//send
catch(Exception e)
     if (line.equals("YOUR FILE"))
          line = new String();
          ch = bais.read();
          while( ch != 10)
               line += (char)ch;
               ch = bais.read();     
          String filename = line;
          FileConnection fc = (FileConnection)Connector.open("file://localhost/" + currDirName + line);
          fc.create();
          OutputStreamWriter osw = new OutputStreamWriter(fc.openOutputStream());
          line = new String();
          ch = bais.read();
          while( ch != 10)
               line += (char)ch;
               ch = bais.read();     
               int nofs = Integer.parseInt(line);
          for(int i = 0; i<nofs;i++)
          {                                      // for start
               //line = new String();
               ch = bais.read();
               while( ch != 10)
               {                                        // while start
               //line += (char)ch;
               osw.write((char)ch);
                    ch = bais.read();     
               } // while end
                    osw.write((char)10);
     } // for end
     if (line.equals("I WANT FILE"))
          line = new String();
          ch = bais.read();
          while( ch != 10)
               line += (char)ch;
               ch = bais.read();     
          String filename = line;
          FileConnection fc = (FileConnection)Connector.open("file://localhost/" + currDirName + line);
          InputStreamReader isr = new InputStreamReader(fc.openInputStream());
          line = new String("");
          ch = isr.read();
          int nol = 0;
          while( ch != -1)
               while( ch != 10)
                    line += (char)ch;
                    ch = isr.read();     
               line += (ch)10;
               nol++;
          line = "YOUR FILE\n" + filename +"\n" + nol + "\n" + line;
          try
     byte[] data = line.getBytes();
     DatagramConnection dc = (DatagramConnection) Connector.open("datagram://127.0.0.1:2020");
          Datagram d = dc.newDatagram(data,data.length);//packet
                    dc.send(d);//send
catch(Exception e)
// FileConnection f = (FileConnection)Connector.open("file:///root1/testfile.txt");
//f.create(); //for files
//f.mkdir(); //for directories
//f.delete();// for deleting a filer or an empty directory
//f.exists() //check if file exsists ( returns boolean)
//Do not allow creating files/directories beside root
browser.addCommand(exit);
browser.setCommandListener(this);
if (currDir != null) {
currDir.close();
Display.getDisplay(this).setCurrent(browser);
} catch (IOException ioe) {
ioe.printStackTrace();

Come on... We can't answer question like this? At least try to put some effort in it, and tell us WHAT is not working, and what this midlet should do!
And, please, use the [  code ] tags! It makes things actually readable.
And finally, don't crosspost: http://forum.java.sun.com/thread.jspa?threadID=740079&tstart=0

Similar Messages

  • How can I fix this code ?

    hello,
    I have a small problem with this code:
    #include  <fstream>
    #include  <iostream>
    #include  <algorithm>
    #include  <iterator>
    #include  <string>
    #include  <vector>
    using namespace std;
    int main()
         string from, to;
         cin >> from >> to;
         ifstream is(from.c_str());
         istream_iterator<string> ii(is);
         istream_iterator<string> eos;
         //  line 24: Error:
         vector<string> b(ii, eos);  //  line 24: Error:
         sort(b.begin(), b.end());
         ofstream os(to.c_str());
         ostream_iterator<string> oo(os, "\n");     
             unique_copy(b.begin(), b.end(), oo);     
             return !is.eof() && !os;          
             return 0;
    }When I compile this happens
    bash-2.05$ CC -V
    CC: Sun C++ 5.6 2004/06/02
    bash-2.05$ CC -o std_vector.out std_vector.cpp
    "std_vector.cpp", line 24: Error:
    Could not find a match for
    std::vector<std::string>::vector(std::istream_iterator<std::string, char, std::char_traits<char>, int>, std::istream_iterator<std::string, char, std::char_traits<char>, int>)needed in main().
    1 Error(s) detected.
    What can I do ?
    best regards
    Morten Gulbrandsen

    You have run into a documented limitation of the default libCstd implementation of the C++ standard library. The default library is not a complete implementation, and in particular lacks required template member functions that allow implicit type conversions. We still use this library for binary compatibility with earlier releases.
    The optional STLport version of the library is a full implementation of hte C++ Standard Library. If you don't need binary compatibility, meaning you don't need to link to code that uses libCstd, you can add the option -library=stlport4 to every CC command line, compiling and linking. Your sample code compiles with STLport.
    If you need to use libCstd, you might get this code to work by inserting explicit type conversions. I have not tried to see whether that actually can be done.

  • How to fix this code?

    Hello,
    I am trying to display country, state within each country,
    then person in each state...using cfoutput and group.
    i am getting this error...How can i fix this code?
    The &lt;cfif&gt; tag requires an end tag to nest
    within &lt;cfoutput&gt;, which began on line 21, column
    26.<p>The CFML compiler was
    processing:<ul><li>The body of a cfoutput tag beginning
    on line 26, column 34.<li>The body of a cfoutput tag
    beginning on line 26, column 34.</ul>

    Rather then including <cfif county_q.state neq ''> in
    your CF code eliminate any records with an empty state in your
    query. The sample appears to have a country, state, and name value
    for every record.
    If this is not possible please post a more code including:
    1. Your query
    2. A sample of your data with and without an empty state
    value

  • New computer win 8.1 pro, installed my creative Suite 4 Design premium but it shuts down when I try to use any of the programs and gives me an error code 147:20. How can I fix this?

    New computer win 8.1 pro, installed my creative Suite 4 Design premium but it shuts down when I try to use any of the programs and gives me an error code 147:20. How can I fix this? Is this a conflict with win 8.1 pro?

    You need to adjust your security stuff/ permissions and possibly use compatibility modes. It means that your licensing service is being blocked/ shut down.
    Mylenium

  • I am trying to download trial CC, but i am receiving error cod 205. how can i fix this problem? few months ago, i used trial CC and deleted it.

    i am trying to download trial CC, but i am receiving error cod 205. how can i fix this problem? few months ago, i used trial CC and deleted it.

    Creative Cloud Help / Error downloading Creative Cloud applications
    http://helpx.adobe.com/creative-cloud/kb/error-downloading-cc-apps.html

  • I get an error code 50 when downloading digital movie. How can I fix this issue?

    I get an error code 50 when downloading digital copy of a movie to my iTunes. I try to restart and still get the smae error code. I have my PC plugged directly into my modem and still get error, when trying to download failed movies. I have 5 failed downloads. How can I fix this issue?

    Try the "Error -50," "-5000," "8003," "8008," or "-42023" section in the Specific Conditions and Alert Messages: (Mac OS X / Windows) section of the following document:
    iTunes: Advanced iTunes Store troubleshooting

  • How can I fix error code 131:4? Licensing for this product stopped working. I have windows vista home edition and CS4 Design Premium. I downloaded licensing zip file for windows but I can't seem to get it to launch. Look forward to help from anyone

    How can I fix error code 131:4? Licensing for this product stopped working. I have windows vista home edition and CS4 Design Premium. I downloaded licensing zip file for windows but I can't seem to get it to launch. Look forward to help from anyone

    Steve,
    I appreciate your answer.  While it might work, I'm a bit hesitant to remove the other programs as a possible solution since they are all currently working.
    With Acrobat 9 Pro failing with the OS 10.7 upgrade, I'm hoping that there is a less severe solution.
    Since the trigger appears to be 10.7 and may have something to do with the discontinued support of Rosetta, I could be spending a few hours working on a reinstall without a change.  Yes, it might work.  The "might" is the part that makes me hesitate.
    Is anyone else out there on OS 10.7 and running Acrobat 9 Pro?  Any issues with anyone else?
    Thanks Steve.  I do appreciate your offering a solution.  I may end up trying it if nothing else comes together.
    Mark

  • When trying to import videos off of a CD I continually get error code -36 on one of the videos. How can I fix this?

    When trying to import videos off of a CD I continually get error code -36 on one of the videos. How can I fix this?

    Contact Apple and request a 10.4 or possibly a 10.5 distribution disk for this system, if you've not obtained that DVD disk from the seller. 
    Boot and use that distribution disk to wipe the hard disk via Disk Utility, and to then reinstall OS X. 
    Best to start with a fresh installation of OS X, as that'll provide the default environment and not something that's been customized and extended by the previous owner.
    The last OS X version that was supported for most PowerMac G5 systems was 10.5.8, and that would be preferable — if your Mac supports that.
    If you're not sure which Mac you have, then use the  > About This Mac from the menu and request more information on the system.  You're looking for a model number listed there, and that'd be something like PowerMac7,3 or PowerMac11,2 for a ~2005-vintage PowerMac system.  Whatever model number you have can then be used to determine the general specs for the configuration, and what the last version of OS X that was supported for the system.

  • My Macbook pro won't open downloaded programs. it just opens the code it was written in using the text and edit app. How can I fix this?

    My Macbook pro won't open downloaded programs, it just opens the code it was written in using the text and edit app. How can I fix this? I just bought the computer last month so this is some what frustrating.

    If you are downloading .exe files, those are Windows programs, and will not run on your Mac unless you install Windows on it.  (That is possible, if you need one of those apps.)

  • HT201210 my Iphone is completely down; error code 2001. How can I fix this?

    My Iphone 5 is completely down; error code 2001. How can I fix this. I updated the last version of ITunes. Before then phone went black the battery run empty very fast. I had a long flight and switched the phone completely off with 30% battery remaining to make sure that I had battery after I landed. However I couldn't get it working anymore. When I push the home and the "off" button at the same time I see a Itunes logo and a USD connection with an arrow.
    Thanks,
    Bas Rekvelt

    What is the EXACT error message you're getting?

  • My iTunes won't launch. It will give and error code 13014. How can I fix this?

    My iTunes won't launch. It will give and error code 13014. How can I fix this?

    Hi tuzas2,
    The article below may be able to help you with this issue.
    Click on the link below to see more details and screenshots. 
    I've quoted some applicable information below for you:
    iPhone and iPod touch: An unknown error (13014), (13136), or (13213) may occur after updating to iTunes 8.0.1 or later
    Solution 1
    Make sure you have the latest version of iTunes installed.
    Solution 2
    Quit and reopen iTunes. If the issue continues, then restart your computer.
    Solution 3
    Quit iTunes, temporarily disable the anti-virus security software on your computer, then reopen iTunes and try to sync your device. If iTunes successfully syncs your iPhone or iPod touch, consult the anti-virus software vendor.
    Solution 4
    Turn off Genius in iTunes in the Genius sidebar (choose View > Hide Genius Sidebar).
    I hope this information helps ....
    Have a great day!
    - Judy

  • TS1372 I have an error code of 1434 on my iPod classic, how can i fix this please ?

    I have an error code of 1434 on my ipod classic, how can i fix this please ?

    See if this helps you: <br />
    http://domino.symetrikdesign.com/2011/03/25/getting-the-delicious-bookmarks-add-on-to-work-with-firefox-4-0/comment-page-1/#comment-5807
    BTW, you would need to use '''5.0.*''' as the maxVersion for Firefox 5.0.

  • HT4113 I forgot my restrictions pass code how can I fix this without losing all my other stuff?

    I forgot my restrictions passcode how can I fix this without losing all my other stuff

    Forgotten RESTRICTIONS Passcode
    - Place the iOS device in Recovery Mode and restore via iTunes. For how to restore: iTunes: Restoring iOS software
    You have to either:
    - Restore from a backup that was make before you added the Restrictions passcode. If you restore from a backup made with the Restrictions passcode the Restrictions passcode is also restored.
    - Restore to factory settings/new iPod
    You can redownload most iTunes purchases by:
      Downloading past purchases from the App Store, iBookstore, and iTunes Store
    - You can get some photos back if you used PhotoStream then try getting them from your PhotoStream. See that topic of:
    iOS: Importing personal photos and videos from iOS devices to your computer
    - You can likely get some data from the restored iPod via How to perform iPad recovery for photos, videos
    Wondershare Dr.Fone for iOS: iPhone Data Recovery - Wondershare Official     
    http://www.amacsoft.com/ipod-data-recovery.html
    iPod recovery software to restore lost music files      
    -iPod touch Deleted Photo Recovery Tips You Should Know

  • Safari keeps shutting down and giving me an error every time i open it how can I fix this??

    Safari keeps shutting down and giving me an error every time i open it how can I fix this?? This is the error message i get.
    Process:         Safari [121]
    Path:            /Applications/Safari.app/Contents/MacOS/Safari
    Identifier:      com.apple.Safari
    Version:         5.0.2 (6533.18.5)
    Build Info:      WebBrowser-75331805~5
    Code Type:       X86-64 (Native)
    Parent Process:  launchd [87]
    Date/Time:       2011-05-09 13:20:22.560 -0400
    OS Version:      Mac OS X 10.6.6 (10J567)
    Report Version:  6
    Interval Since Last Report:          4207 sec
    Crashes Since Last Report:           5
    Per-App Interval Since Last Report:  1387 sec
    Per-App Crashes Since Last Report:   5
    Anonymous UUID:                      52B175C7-7A05-4083-8A25-8273F28F58EE
    Exception Type:  EXC_BAD_ACCESS (SIGSEGV)
    Exception Codes: KERN_INVALID_ADDRESS at 0x0000000000000068
    Crashed Thread:  0  Dispatch queue: com.apple.main-thread
    Thread 0 Crashed:  Dispatch queue: com.apple.main-thread
    0   com.apple.Safari                  0x0000000100172323 0x100000000 + 1516323
    1   com.apple.Safari                  0x000000010019fc20 0x100000000 + 1702944
    2   com.apple.JavaScriptCore          0x00007fff89035246 JSC::JSCallbackFunction::call(JSC::ExecState*, JSC::JSObject*, JSC::JSValue, JSC::ArgList const&) + 358
    3   com.apple.JavaScriptCore          0x00007fff88fe72ff cti_op_call_NotJSFunction + 415
    4   ???                               0x000053c05f7e7879 0 + 92085700950137
    5   com.apple.JavaScriptCore          0x00007fff890633ac JSC::Interpreter::execute(JSC::FunctionExecutable*, JSC::ExecState*, JSC::JSFunction*, JSC::JSObject*, JSC::ArgList const&, JSC::ScopeChainNode*, JSC::JSValue*) + 508
    6   ???                               0x0000000114fdcec0 0 + 4647145152
    7   ???                               0x0000000118de3c30 0 + 4712184880
    8   com.apple.JavaScriptCore          0x00007fff8906f690 JSC::JSCallbackObject<JSC::JSObject>::~JSCallbackObject() + 0
    9   ???                               0x894918ec83485355 0 + 9892465460589908821
    Thread 1:  Dispatch queue: com.apple.libdispatch-manager
    0   libSystem.B.dylib                 0x00007fff8509816a kevent + 10
    1   libSystem.B.dylib                 0x00007fff8509a03d _dispatch_mgr_invoke + 154
    2   libSystem.B.dylib                 0x00007fff85099d14 _dispatch_queue_invoke + 185
    3   libSystem.B.dylib                 0x00007fff8509983e _dispatch_worker_thread2 + 252
    4   libSystem.B.dylib                 0x00007fff85099168 _pthread_wqthread + 353
    5   libSystem.B.dylib                 0x00007fff85099005 start_wqthread + 13
    Thread 2:  WebCore: IconDatabase
    0   libSystem.B.dylib                 0x00007fff850b9fca __semwait_signal + 10
    1   libSystem.B.dylib                 0x00007fff850bdde1 _pthread_cond_wait + 1286
    2   com.apple.WebCore                 0x00007fff83bb4d49 WebCore::IconDatabase::syncThreadMainLoop() + 249
    3   com.apple.WebCore                 0x00007fff83bb0e4c WebCore::IconDatabase::iconDatabaseSyncThread() + 172
    4   libSystem.B.dylib                 0x00007fff850b8536 _pthread_start + 331
    5   libSystem.B.dylib                 0x00007fff850b83e9 thread_start + 13
    Thread 3:  Safari: CertRevocationChecker
    0   libSystem.B.dylib                 0x00007fff8507f2da mach_msg_trap + 10
    1   libSystem.B.dylib                 0x00007fff8507f94d mach_msg + 59
    2   com.apple.CoreFoundation          0x00007fff83a72932 __CFRunLoopRun + 1698
    3   com.apple.CoreFoundation          0x00007fff83a71dbf CFRunLoopRunSpecific + 575
    4   com.apple.Safari                  0x000000010002fa3d 0x100000000 + 195133
    5   com.apple.Safari                  0x000000010002f9cd 0x100000000 + 195021
    6   libSystem.B.dylib                 0x00007fff850b8536 _pthread_start + 331
    7   libSystem.B.dylib                 0x00007fff850b83e9 thread_start + 13
    Thread 4:
    0   libSystem.B.dylib                 0x00007fff8507f2da mach_msg_trap + 10
    1   libSystem.B.dylib                 0x00007fff8507f94d mach_msg + 59
    2   com.apple.CoreFoundation          0x00007fff83a72932 __CFRunLoopRun + 1698
    3   com.apple.CoreFoundation          0x00007fff83a71dbf CFRunLoopRunSpecific + 575
    4   com.apple.Foundation              0x00007fff8578207f +[NSURLConnection(NSURLConnectionReallyInternal) _resourceLoadLoop:] + 297
    5   com.apple.Foundation              0x00007fff857030a5 __NSThread__main__ + 1429
    6   libSystem.B.dylib                 0x00007fff850b8536 _pthread_start + 331
    7   libSystem.B.dylib                 0x00007fff850b83e9 thread_start + 13
    Thread 5:  Safari: SafeBrowsingManager
    0   libSystem.B.dylib                 0x00007fff8507f2da mach_msg_trap + 10
    1   libSystem.B.dylib                 0x00007fff8507f94d mach_msg + 59
    2   com.apple.CoreFoundation          0x00007fff83a72932 __CFRunLoopRun + 1698
    3   com.apple.CoreFoundation          0x00007fff83a71dbf CFRunLoopRunSpecific + 575
    4   com.apple.Safari                  0x000000010002fa3d 0x100000000 + 195133
    5   com.apple.Safari                  0x000000010002f9cd 0x100000000 + 195021
    6   libSystem.B.dylib                 0x00007fff850b8536 _pthread_start + 331
    7   libSystem.B.dylib                 0x00007fff850b83e9 thread_start + 13
    Thread 6:
    0   libSystem.B.dylib                 0x00007fff85098f8a __workq_kernreturn + 10
    1   libSystem.B.dylib                 0x00007fff8509939c _pthread_wqthread + 917
    2   libSystem.B.dylib                 0x00007fff85099005 start_wqthread + 13
    Thread 7:  com.apple.CFSocket.private
    0   libSystem.B.dylib                 0x00007fff850c2e92 select$DARWIN_EXTSN + 10
    1   com.apple.CoreFoundation          0x00007fff83a94498 __CFSocketManager + 824
    2   libSystem.B.dylib                 0x00007fff850b8536 _pthread_start + 331
    3   libSystem.B.dylib                 0x00007fff850b83e9 thread_start + 13
    Thread 8:  WebCore: LocalStorage
    0   libSystem.B.dylib                 0x00007fff850b9fca __semwait_signal + 10
    1   libSystem.B.dylib                 0x00007fff850bdde1 _pthread_cond_wait + 1286
    2   com.apple.JavaScriptCore          0x00007fff88f0c400 ***::ThreadCondition::timedWait(***::Mutex&, double) + 64
    3   com.apple.WebCore                 0x00007fff83f067a1 WebCore::LocalStorageThread::threadEntryPoint() + 193
    4   libSystem.B.dylib                 0x00007fff850b8536 _pthread_start + 331
    5   libSystem.B.dylib                 0x00007fff850b83e9 thread_start + 13
    Thread 9:  Safari: SnapshotStore
    0   libSystem.B.dylib                 0x00007fff850b9fca __semwait_signal + 10
    1   libSystem.B.dylib                 0x00007fff850bdde1 _pthread_cond_wait + 1286
    2   com.apple.JavaScriptCore          0x00007fff88f0c400 ***::ThreadCondition::timedWait(***::Mutex&, double) + 64
    3   com.apple.Safari                  0x00000001001be849 0x100000000 + 1828937
    4   com.apple.Safari                  0x000000010004750b 0x100000000 + 292107
    5   com.apple.Safari                  0x0000000100047389 0x100000000 + 291721
    6   libSystem.B.dylib                 0x00007fff850b8536 _pthread_start + 331
    7   libSystem.B.dylib                 0x00007fff850b83e9 thread_start + 13
    Thread 0 crashed with X86 Thread State (64-bit):
      rax: 0x0000000118add588  rbx: 0x0000000118add588  rcx: 0x0000000114fed840  rdx: 0x0000000118add588
      rdi: 0x0000000117615e10  rsi: 0x00007fff5fbfe220  rbp: 0x00007fff5fbfe1f0  rsp: 0x00007fff5fbfe100
       r8: 0x0000000000000000   r9: 0x0000000000000000  r10: 0x0000000118a71800  r11: 0x000000000000003f
      r12: 0x00000001130623a0  r13: 0x0000000117615e10  r14: 0x0000000000000003  r15: 0x0000000114fed840
      rip: 0x0000000100172323  rfl: 0x0000000000010206  cr2: 0x0000000000000068
    Binary Images:
           0x100000000 -        0x1006b0fe7  com.apple.Safari 5.0.2 (6533.18.5) <8387031E-6288-7B8A-DF4B-59412EDE5098> /Applications/Safari.app/Contents/MacOS/Safari
        0x7fff5fc00000 -     0x7fff5fc3bdef  dyld 132.1 (???) <486E6C61-1197-CC7C-2197-82CE505102D7> /usr/lib/dyld
        0x7fff800b9000 -     0x7fff800fefff  com.apple.CoreMediaIOServices 134.0 (1160) <033C41A6-EB9B-6B3B-781A-AF001A945C7A> /System/Library/PrivateFrameworks/CoreMediaIOServices.framework/Versions/A/Core MediaIOServices
        0x7fff800ff000 -     0x7fff80146fff  com.apple.QuickLookFramework 2.3 (327.6) <11DFB135-24A6-C0BC-5B97-ECE352A4B488> /System/Library/Frameworks/QuickLook.framework/Versions/A/QuickLook
        0x7fff80147000 -     0x7fff8014cfff  libGIF.dylib ??? (???) <A7BF2D68-F489-720C-E5A9-DC2B24DC5A21> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ImageIO.framework/Versions/A/Resources/libGIF.dylib
        0x7fff8014d000 -     0x7fff804eafe7  com.apple.QuartzCore 1.6.3 (227.34) <C4AABD56-8C93-BAD0-4B27-7E9A2F0EAEE4> /System/Library/Frameworks/QuartzCore.framework/Versions/A/QuartzCore
        0x7fff804f7000 -     0x7fff80591fff  com.apple.ApplicationServices.ATS 4.4 (???) <395849EE-244A-7323-6CBA-E71E3B722984> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ATS.framework/Versions/A/ATS
        0x7fff8061f000 -     0x7fff8064aff7  libxslt.1.dylib 3.24.0 (compatibility 3.0.0) <87A0B228-B24A-C426-C3FB-B40D7258DD49> /usr/lib/libxslt.1.dylib
        0x7fff8064b000 -     0x7fff8066efff  com.apple.opencl 12.3 (12.3) <D30A45FC-4520-45AF-3CA5-092313DB5D54> /System/Library/Frameworks/OpenCL.framework/Versions/A/OpenCL
        0x7fff8066f000 -     0x7fff8066fff7  com.apple.quartzframework 1.5 (1.5) <B182B579-BCCE-81BF-8DA2-9E0B7BDF8516> /System/Library/Frameworks/Quartz.framework/Versions/A/Quartz
        0x7fff8070a000 -     0x7fff80974fef  com.apple.QuartzComposer 4.2 ({156.28}) <60956AE3-2B2D-A0B7-9D92-3EE33D3A7051> /System/Library/Frameworks/Quartz.framework/Versions/A/Frameworks/QuartzCompose r.framework/Versions/A/QuartzComposer
        0x7fff80975000 -     0x7fff80976ff7  com.apple.TrustEvaluationAgent 1.1 (1) <5952A9FA-BC2B-16EF-91A7-43902A5C07B6> /System/Library/PrivateFrameworks/TrustEvaluationAgent.framework/Versions/A/Tru stEvaluationAgent
        0x7fff80977000 -     0x7fff80978fff  liblangid.dylib ??? (???) <EA4D1607-2BD5-2EE2-2A3B-632EEE5A444D> /usr/lib/liblangid.dylib
        0x7fff809a9000 -     0x7fff809abfff  libRadiance.dylib ??? (???) <6C974488-62D2-71BA-A45E-C764A0AF7354> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ImageIO.framework/Versions/A/Resources/libRadiance.dylib
        0x7fff809ac000 -     0x7fff80aeafff  com.apple.CoreData 102.1 (251) <9DFE798D-AA52-6A9A-924A-DA73CB94D81A> /System/Library/Frameworks/CoreData.framework/Versions/A/CoreData
        0x7fff80aeb000 -     0x7fff80b34fef  libGLU.dylib ??? (???) <CCE779A9-2467-A5AA-A558-691E43A1105F> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGLU.dylib
        0x7fff80b35000 -     0x7fff80ba6ff7  com.apple.AppleVAFramework 4.10.12 (4.10.12) <7C05D658-4251-0B0F-6C76-9192240D0C4B> /System/Library/PrivateFrameworks/AppleVA.framework/Versions/A/AppleVA
        0x7fff80ba7000 -     0x7fff80d65fff  libicucore.A.dylib 40.0.0 (compatibility 1.0.0) <781E7B63-2AD0-E9BA-927C-4521DB616D02> /usr/lib/libicucore.A.dylib
        0x7fff80d68000 -     0x7fff80e6cfff  com.apple.PubSub 1.0.5 (65.20) <DA852327-4B80-B49A-666C-835410273DE3> /System/Library/Frameworks/PubSub.framework/Versions/A/PubSub
        0x7fff80e9e000 -     0x7fff80ec6fff  com.apple.DictionaryServices 1.1.2 (1.1.2) <E9269069-93FA-2B71-F9BA-FDDD23C4A65E> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/Diction aryServices.framework/Versions/A/DictionaryServices
        0x7fff80ec7000 -     0x7fff80ee7ff7  com.apple.DirectoryService.Framework 3.6 (621.9) <E7AFAAFA-8221-585B-85D0-171ADC490825> /System/Library/Frameworks/DirectoryService.framework/Versions/A/DirectoryServi ce
        0x7fff80ee8000 -     0x7fff8112afef  com.apple.AddressBook.framework 5.0.3 (875) <78FDBCC6-8F4C-C4DF-4A60-BB038572B870> /System/Library/Frameworks/AddressBook.framework/Versions/A/AddressBook
        0x7fff8112b000 -     0x7fff811b0ff7  com.apple.print.framework.PrintCore 6.3 (312.7) <CDFE82DD-D811-A091-179F-6E76069B432D> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ PrintCore.framework/Versions/A/PrintCore
        0x7fff811b1000 -     0x7fff811e2fff  libGLImage.dylib ??? (???) <1A8E58CF-FA2F-14F7-A097-D34EEA8A7D03> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGLImage.dyl ib
        0x7fff811e3000 -     0x7fff81627fef  libLAPACK.dylib 219.0.0 (compatibility 1.0.0) <E14EC4C6-B055-A4AC-B971-42AB644E4A7C> /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.fr amework/Versions/A/libLAPACK.dylib
        0x7fff81628000 -     0x7fff816e9fe7  libFontParser.dylib ??? (???) <8B12D37E-3A95-5A73-509C-3AA991E0C546> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ATS.framework/Versions/A/Resources/libFontParser.dylib
        0x7fff816ea000 -     0x7fff81732ff7  libvDSP.dylib 268.0.1 (compatibility 1.0.0) <98FC4457-F405-0262-00F7-56119CA107B6> /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.fr amework/Versions/A/libvDSP.dylib
        0x7fff81733000 -     0x7fff81759fe7  libJPEG.dylib ??? (???) <DFA5DAC2-D1C6-D5ED-F95D-AC185E98B6E7> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ImageIO.framework/Versions/A/Resources/libJPEG.dylib
        0x7fff8175a000 -     0x7fff817d7fef  libstdc++.6.dylib 7.9.0 (compatibility 7.0.0) <35ECA411-2C08-FD7D-11B1-1B7A04921A5C> /usr/lib/libstdc++.6.dylib
        0x7fff817d8000 -     0x7fff81811ff7  com.apple.MeshKit 1.1 (49.2) <832A074D-7601-F7C9-6D3A-E1C58965C3A1> /System/Library/PrivateFrameworks/MeshKit.framework/Versions/A/MeshKit
        0x7fff81812000 -     0x7fff81814fff  com.apple.print.framework.Print 6.1 (237.1) <CA8564FB-B366-7413-B12E-9892DA3C6157> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/Print.framewo rk/Versions/A/Print
        0x7fff81815000 -     0x7fff8181eff7  com.apple.DisplayServicesFW 2.3.0 (283) <5C8FEF26-FBA5-2AC6-C484-336594C637DC> /System/Library/PrivateFrameworks/DisplayServices.framework/Versions/A/DisplayS ervices
        0x7fff8181f000 -     0x7fff81863fe7  com.apple.ImageCaptureCore 1.0.3 (1.0.3) <913FFA89-0AC8-0A8D-CC2A-364CB0F303BA> /System/Library/Frameworks/ImageCaptureCore.framework/Versions/A/ImageCaptureCo re
        0x7fff8187d000 -     0x7fff8188efff  SyndicationUI ??? (???) <38522C02-AE1B-EEA7-D74C-544D54CB6641> /System/Library/PrivateFrameworks/SyndicationUI.framework/Versions/A/Syndicatio nUI
        0x7fff81898000 -     0x7fff81898ff7  com.apple.Carbon 150 (152) <191B4F4B-8D06-796B-CA0C-782F06DD7BC7> /System/Library/Frameworks/Carbon.framework/Versions/A/Carbon
        0x7fff81899000 -     0x7fff818eeff7  com.apple.framework.familycontrols 2.0.2 (2020) <A3CFF697-B9DB-A7E5-3B39-9DA9B34F0595> /System/Library/PrivateFrameworks/FamilyControls.framework/Versions/A/FamilyCon trols
        0x7fff818ef000 -     0x7fff81928fef  libcups.2.dylib 2.8.0 (compatibility 2.0.0) <561D0DCB-47AD-A12C-9066-70E4CBAD331C> /usr/lib/libcups.2.dylib
        0x7fff81a22000 -     0x7fff81b07fef  com.apple.DesktopServices 1.5.9 (1.5.9) <27890B2C-0CD2-7C27-9D0C-D5952C5E8438> /System/Library/PrivateFrameworks/DesktopServicesPriv.framework/Versions/A/Desk topServicesPriv
        0x7fff81b08000 -     0x7fff81b08ff7  com.apple.Cocoa 6.6 (???) <68B0BE46-6E24-C96F-B341-054CF9E8F3B6> /System/Library/Frameworks/Cocoa.framework/Versions/A/Cocoa
        0x7fff81b09000 -     0x7fff81b98fff  com.apple.PDFKit 2.5.1 (2.5.1) <38BEE9BB-3716-49BA-7E14-687FE9E066EB> /System/Library/Frameworks/Quartz.framework/Versions/A/Frameworks/PDFKit.framew ork/Versions/A/PDFKit
        0x7fff81b99000 -     0x7fff81c6bfe7  com.apple.CFNetwork 454.11.5 (454.11.5) <5D68598D-C138-C8B6-B6AC-B1F48B01E021> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/CFNetwo rk.framework/Versions/A/CFNetwork
        0x7fff81c6c000 -     0x7fff81c80fff  libGL.dylib ??? (???) <1EB1BD0F-C17F-55DF-B8B4-8E9CF99359D4> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGL.dylib
        0x7fff81ca9000 -     0x7fff81cbeff7  com.apple.LangAnalysis 1.6.6 (1.6.6) <1AE1FE8F-2204-4410-C94E-0E93B003BEDA> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ LangAnalysis.framework/Versions/A/LangAnalysis
        0x7fff81db0000 -     0x7fff81dc9fff  com.apple.CFOpenDirectory 10.6 (10.6) <CCF79716-7CC6-2520-C6EB-A4F56AD0A207> /System/Library/Frameworks/OpenDirectory.framework/Versions/A/Frameworks/CFOpen Directory.framework/Versions/A/CFOpenDirectory
        0x7fff81dca000 -     0x7fff82050fff  com.apple.security 6.1.1 (37594) <1B4E1ABD-1BB3-DA49-F574-0EEB23E73C6A> /System/Library/Frameworks/Security.framework/Versions/A/Security
        0x7fff82051000 -     0x7fff820d3fff  com.apple.QuickLookUIFramework 2.3 (327.6) <9093682A-0E2D-7D27-5F22-C96FD00AE970> /System/Library/Frameworks/Quartz.framework/Versions/A/Frameworks/QuickLookUI.f ramework/Versions/A/QuickLookUI
        0x7fff820d4000 -     0x7fff820d5fff  com.apple.MonitorPanelFramework 1.3.0 (1.3.0) <5062DACE-FCE7-8E41-F5F6-58821778629C> /System/Library/PrivateFrameworks/MonitorPanel.framework/Versions/A/MonitorPane l
        0x7fff825ff000 -     0x7fff825ffff7  com.apple.vecLib 3.6 (vecLib 3.6) <96FB6BAD-5568-C4E0-6FA7-02791A58B584> /System/Library/Frameworks/vecLib.framework/Versions/A/vecLib
        0x7fff82600000 -     0x7fff82603fff  com.apple.help 1.3.1 (41) <E311A81E-9870-A430-1E16-AFF6C92CE6E5> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/Help.framewor k/Versions/A/Help
        0x7fff82607000 -     0x7fff8272fff7  com.apple.MediaToolbox 0.484.20 (484.20) <628A7245-7ADE-AD47-3368-CF8EDCA6CC1C> /System/Library/PrivateFrameworks/MediaToolbox.framework/Versions/A/MediaToolbo x
        0x7fff82730000 -     0x7fff82735fff  libGFXShared.dylib ??? (???) <991F8197-FD06-2AF1-F99B-E448ED4FB2AC> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGFXShared.d ylib
        0x7fff82736000 -     0x7fff82768fff  libTrueTypeScaler.dylib ??? (???) <B9ECE1BD-A716-9F65-6466-4444D641F584> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ATS.framework/Versions/A/Resources/libTrueTypeScaler.dylib
        0x7fff82769000 -     0x7fff82843ff7  com.apple.vImage 4.0 (4.0) <354F34BF-B221-A3C9-2CA7-9BE5E14AD5AD> /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vImage.fr amework/Versions/A/vImage
        0x7fff82a82000 -     0x7fff82aeafff  com.apple.MeshKitRuntime 1.1 (49.2) <4D3045D0-0D50-7053-3A05-0AECE86E39F8> /System/Library/PrivateFrameworks/MeshKit.framework/Versions/A/Frameworks/MeshK itRuntime.framework/Versions/A/MeshKitRuntime
        0x7fff82b30000 -     0x7fff82b3ffff  com.apple.opengl 1.6.12 (1.6.12) <DE3F0528-7759-CDFD-A2CF-C51D3C9C8B39> /System/Library/Frameworks/OpenGL.framework/Versions/A/OpenGL
        0x7fff82b40000 -     0x7fff82b75fef  com.apple.framework.Apple80211 6.2.3 (623.2) <8C50F34F-2981-0DF8-4423-09556C1628C0> /System/Library/PrivateFrameworks/Apple80211.framework/Versions/A/Apple80211
        0x7fff82b76000 -     0x7fff82b8aff7  com.apple.speech.synthesis.framework 3.10.35 (3.10.35) <63C87CF7-56B3-4038-8136-8C26E96AD42F> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ SpeechSynthesis.framework/Versions/A/SpeechSynthesis
        0x7fff82b8b000 -     0x7fff82c17fef  SecurityFoundation ??? (???) <F43FDB02-CAA5-F8FF-C8D7-6665E7403ECE> /System/Library/Frameworks/SecurityFoundation.framework/Versions/A/SecurityFoun dation
        0x7fff82c20000 -     0x7fff82d41fe7  libcrypto.0.9.8.dylib 0.9.8 (compatibility 0.9.8) <48AEAFE1-21F4-B3C8-4199-35AD5E8D0613> /usr/lib/libcrypto.0.9.8.dylib
        0x7fff82d42000 -     0x7fff83076fff  com.apple.CoreServices.CarbonCore 861.23 (861.23) <96465459-6536-3FD7-7504-B59D0390EEC5> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/CarbonC ore.framework/Versions/A/CarbonCore
        0x7fff83077000 -     0x7fff8312cfe7  com.apple.ink.framework 1.3.3 (107) <8C36373C-5473-3A6A-4972-BC29D504250F> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/Ink.framework /Versions/A/Ink
        0x7fff83335000 -     0x7fff833a1ff7  com.apple.CorePDF 1.3 (1.3) <FF2F3F1B-D1D6-684C-B174-6A455E04FF91> /System/Library/PrivateFrameworks/CorePDF.framework/Versions/A/CorePDF
        0x7fff833a2000 -     0x7fff8341ffef  com.apple.backup.framework 1.2.2 (1.2.2) <CD3554D8-DA47-DDBC-910C-B2F1DE3B8CA6> /System/Library/PrivateFrameworks/Backup.framework/Versions/A/Backup
        0x7fff83601000 -     0x7fff836bafff  libsqlite3.dylib 9.6.0 (compatibility 9.0.0) <2C5ED312-E646-9ADE-73A9-6199A2A43150> /usr/lib/libsqlite3.dylib
        0x7fff836bb000 -     0x7fff836d1fff  com.apple.ImageCapture 6.0.1 (6.0.1) <09ABF2E9-D110-71A9-4A6F-8A61B683E936> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/ImageCapture. framework/Versions/A/ImageCapture
        0x7fff836d2000 -     0x7fff83719ff7  com.apple.coreui 2 (114) <923E33CC-83FC-7D35-5603-FB8F348EE34B> /System/Library/PrivateFrameworks/CoreUI.framework/Versions/A/CoreUI
        0x7fff8371a000 -     0x7fff83955fef  com.apple.imageKit 2.0.3 (1.0) <5D18C246-303A-6580-9DC9-79BE79467C95> /System/Library/Frameworks/Quartz.framework/Versions/A/Frameworks/ImageKit.fram ework/Versions/A/ImageKit
        0x7fff83956000 -     0x7fff83971ff7  com.apple.openscripting 1.3.1 (???) <9D50701D-54AC-405B-CC65-026FCB28258B> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/OpenScripting .framework/Versions/A/OpenScripting
        0x7fff83988000 -     0x7fff839f2fe7  libvMisc.dylib 268.0.1 (compatibility 1.0.0) <AF0EA96D-000F-8C12-B952-CB7E00566E08> /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.fr amework/Versions/A/libvMisc.dylib
        0x7fff839f3000 -     0x7fff83a09fef  libbsm.0.dylib ??? (???) <83676D2E-23CD-45CD-BE5C-35FCFFBBBDBB> /usr/lib/libbsm.0.dylib
        0x7fff83a26000 -     0x7fff83b9dfe7  com.apple.CoreFoundation 6.6.4 (550.42) <770C572A-CF70-168F-F43C-242B9114FCB5> /System/Library/Frameworks/CoreFoundation.framework/Versions/A/CoreFoundation
        0x7fff83b9e000 -     0x7fff83ba9fff  com.apple.corelocation 12.1 (12.1) <0B15767B-D752-7DA6-A8BB-5A1C9C39C5C8> /System/Library/Frameworks/CoreLocation.framework/Versions/A/CoreLocation
        0x7fff83baa000 -     0x7fff83badff7  com.apple.securityhi 4.0 (36638) <87868A3E-9341-1078-F00C-5E5972F01A4A> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/SecurityHI.fr amework/Versions/A/SecurityHI
        0x7fff83bae000 -     0x7fff84821ff7  com.apple.WebCore 6533.18 (6533.18.1) <E98598FB-8C73-1334-7C30-216CC49B889E> /System/Library/Frameworks/WebKit.framework/Versions/A/Frameworks/WebCore.frame work/Versions/A/WebCore
        0x7fff84822000 -     0x7fff84825ff7  libCoreVMClient.dylib ??? (???) <609598E6-195D-E5D4-3B92-AE8D9768829C> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libCoreVMClien t.dylib
        0x7fff84826000 -     0x7fff84835fff  libxar.1.dylib ??? (???) <CBAF862A-3C77-6446-56C2-9C4461631AAF> /usr/lib/libxar.1.dylib
        0x7fff84836000 -     0x7fff84888ff7  com.apple.HIServices 1.8.2 (???) <7C91D07D-FA20-0882-632F-0CAE4FAC2B79> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ HIServices.framework/Versions/A/HIServices
        0x7fff84895000 -     0x7fff84899ff7  libmathCommon.A.dylib 315.0.0 (compatibility 1.0.0) <95718673-FEEE-B6ED-B127-BCDBDB60D4E5> /usr/lib/system/libmathCommon.A.dylib
        0x7fff8489a000 -     0x7fff849a4ff7  com.apple.MeshKitIO 1.1 (49.2) <C19D0CCD-1DCB-7EDE-76FA-BF74079AFC6A> /System/Library/PrivateFrameworks/MeshKit.framework/Versions/A/Frameworks/MeshK itIO.framework/Versions/A/MeshKitIO
        0x7fff849a5000 -     0x7fff84d7ffff  com.apple.RawCamera.bundle 3.4.1 (546) <5662D375-35EA-30E5-BD9D-D684ABE04A1E> /System/Library/CoreServices/RawCamera.bundle/Contents/MacOS/RawCamera
        0x7fff84d9c000 -     0x7fff84dd9ff7  libFontRegistry.dylib ??? (???) <8C69F685-3507-1B8F-51AD-6183D5E88979> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ATS.framework/Versions/A/Resources/libFontRegistry.dylib
        0x7fff84ece000 -     0x7fff84f11ff7  libRIP.A.dylib 545.0.0 (compatibility 64.0.0) <7E30B5F6-99FD-C716-8670-5DD4B4BAED72> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ CoreGraphics.framework/Versions/A/Resources/libRIP.A.dylib
        0x7fff84fc9000 -     0x7fff85048fe7  com.apple.audio.CoreAudio 3.2.6 (3.2.6) <6D8AD3F7-409D-512C-C5BE-66C64D1B8F3E> /System/Library/Frameworks/CoreAudio.framework/Versions/A/CoreAudio
        0x7fff8507e000 -     0x7fff8523ffff  libSystem.B.dylib 125.2.1 (compatibility 1.0.0) <F00A8B2F-84A0-0868-1047-3A13F9114864> /usr/lib/libSystem.B.dylib
        0x7fff85246000 -     0x7fff852f5fff  edu.mit.Kerberos 6.5.10 (6.5.10) <6A159CD8-5C02-4528-C36F-6AFBFD61576B> /System/Library/Frameworks/Kerberos.framework/Versions/A/Kerberos
        0x7fff8530c000 -     0x7fff85322fe7  com.apple.MultitouchSupport.framework 207.10 (207.10) <458F0259-6EDC-16BA-E6AA-1CEED002D188> /System/Library/PrivateFrameworks/MultitouchSupport.framework/Versions/A/Multit ouchSupport
        0x7fff85323000 -     0x7fff85331ff7  libkxld.dylib ??? (???) <27713C39-0E51-8F5A-877B-C5539C96A520> /usr/lib/system/libkxld.dylib
        0x7fff85332000 -     0x7fff85458fff  com.apple.audio.toolbox.AudioToolbox 1.6.5 (1.6.5) <B51023BB-A5C9-3C65-268B-6B86B901BB2C> /System/Library/Frameworks/AudioToolbox.framework/Versions/A/AudioToolbox
        0x7fff85459000 -     0x7fff8545fff7  com.apple.DiskArbitration 2.3 (2.3) <857F6E43-1EF4-7D53-351B-10DE0A8F992A> /System/Library/Frameworks/DiskArbitration.framework/Versions/A/DiskArbitration
        0x7fff85460000 -     0x7fff8546ffff  com.apple.NetFS 3.2.1 (3.2.1) <E5D33870-27D2-E50B-9B35-16AA50369733> /System/Library/Frameworks/NetFS.framework/Versions/A/NetFS
        0x7fff855da000 -     0x7fff856f1fef  libxml2.2.dylib 10.3.0 (compatibility 10.0.0) <B2FB9DA8-6EC9-FFBC-C919-C022B9CBEB73> /usr/lib/libxml2.2.dylib
        0x7fff856f2000 -     0x7fff85975ff7  com.apple.Foundation 6.6.4 (751.42) <AF1E3050-3503-8714-8274-EA6BD6BE8A22> /System/Library/Frameworks/Foundation.framework/Versions/C/Foundation
        0x7fff85976000 -     0x7fff8597aff7  libCGXType.A.dylib 545.0.0 (compatibility 64.0.0) <63F77AC8-84CB-0C2F-8D2B-190EE5CCDB45> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ CoreGraphics.framework/Versions/A/Resources/libCGXType.A.dylib
        0x7fff859f0000 -     0x7fff85a02fe7  libsasl2.2.dylib 3.15.0 (compatibility 3.0.0) <76B83C8D-8EFE-4467-0F75-275648AFED97> /usr/lib/libsasl2.2.dylib
        0x7fff85a03000 -     0x7fff85a3efff  com.apple.AE 496.4 (496.4) <55AAD5CA-7160-7899-1C68-562ED8160DF7> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/AE.fram ework/Versions/A/AE
        0x7fff85a3f000 -     0x7fff85a79fff  libssl.0.9.8.dylib 0.9.8 (compatibility 0.9.8) <C7153747-50E3-32DA-426F-CC4C505D1D6C> /usr/lib/libssl.0.9.8.dylib
        0x7fff85afe000 -     0x7fff85b2dff7  com.apple.quartzfilters 1.6.0 (1.6.0) <9CECB4FC-1CCF-B8A2-B935-5888B21CBEEF> /System/Library/Frameworks/Quartz.framework/Versions/A/Frameworks/QuartzFilters .framework/Versions/A/QuartzFilters
        0x7fff85bad000 -     0x7fff85beefef  com.apple.QD 3.36 (???) <5DC41E81-32C9-65B2-5528-B33E934D5BB4> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ QD.framework/Versions/A/QD
        0x7fff85bef000 -     0x7fff85bfaff7  com.apple.speech.recognition.framework 3.11.1 (3.11.1) <3D65E89B-FFC6-4AAF-D5CC-104F967C8131> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/SpeechRecogni tion.framework/Versions/A/SpeechRecognition
        0x7fff85cc6000 -     0x7fff85d7bfe7  com.apple.ColorSync 4.6.3 (4.6.3) <5A7360A8-D495-1E8D-C4B4-A363AF989ADE> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ColorSync.framework/Versions/A/ColorSync
        0x7fff85dc6000 -     0x7fff85e26fe7  com.apple.framework.IOKit 2.0 (???) <D107CB8A-5182-3AC4-35D0-07068A695C05> /System/Library/Frameworks/IOKit.framework/Versions/A/IOKit
        0x7fff85e27000 -     0x7fff85e44ff7  libPng.dylib ??? (???) <667C3883-32A5-CCCC-8624-972B5DFD8EA4> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ImageIO.framework/Versions/A/Resources/libPng.dylib
        0x7fff85e45000 -     0x7fff85e6aff7  com.apple.CoreVideo 1.6.2 (45.6) <E138C8E7-3CB6-55A9-0A2C-B73FE63EA288> /System/Library/Frameworks/CoreVideo.framework/Versions/A/CoreVideo
        0x7fff85e6b000 -     0x7fff85eb7fff  libauto.dylib ??? (???) <F7221B46-DC4F-3153-CE61-7F52C8C293CF> /usr/lib/libauto.dylib
        0x7fff85ef8000 -     0x7fff85f47fef  libTIFF.dylib ??? (???) <176B52ED-4F6C-D0C2-EABC-C032BFC3DFAA> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ImageIO.framework/Versions/A/Resources/libTIFF.dylib
        0x7fff85f48000 -     0x7fff85fe8fff  com.apple.LaunchServices 362.2 (362.2) <A8EDC37C-1D40-5ED0-49BE-90EF110A6B3A> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/LaunchS ervices.framework/Versions/A/LaunchServices
        0x7fff8607e000 -     0x7fff860cdfef  com.apple.DirectoryService.PasswordServerFramework 6.0 (6.0) <BD71B20B-C530-6D10-47A4-9838CF292911> /System/Library/PrivateFrameworks/PasswordServer.framework/Versions/A/PasswordS erver
        0x7fff86127000 -     0x7fff8662bfe7  com.apple.VideoToolbox 0.484.20 (484.20) <8B6B82D2-350B-E9D3-5433-51453CDA65B4> /System/Library/PrivateFrameworks/VideoToolbox.framework/Versions/A/VideoToolbo x
        0x7fff8662c000 -     0x7fff86676ff7  com.apple.Metadata 10.6.3 (507.15) <5170FCE0-ED6C-2E3E-AB28-1DDE3F628FC5> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/Metadat a.framework/Versions/A/Metadata
        0x7fff86685000 -     0x7fff86802ff7  com.apple.WebKit 6533.18 (6533.18.1) <132BDBBE-D2D0-E06D-DFCD-DCD77EE7A7E0> /System/Library/Frameworks/WebKit.framework/Versions/A/WebKit
        0x7fff86803000 -     0x7fff86803ff7  com.apple.Accelerate 1.6 (Accelerate 1.6) <15DF8B4A-96B2-CB4E-368D-DEC7DF6B62BB> /System/Library/Frameworks/Accelerate.framework/Versions/A/Accelerate
        0x7fff8684f000 -     0x7fff86850ff7  com.apple.audio.units.AudioUnit 1.6.5 (1.6.5) <14F14B5E-9287-BC36-0C3F-6592E6696CD4> /System/Library/Frameworks/AudioUnit.framework/Versions/A/AudioUnit
        0x7fff86851000 -     0x7fff86862fff  com.apple.DSObjCWrappers.Framework 10.6 (134) <3C08225D-517E-2822-6152-F6EB13A4ADF9> /System/Library/PrivateFrameworks/DSObjCWrappers.framework/Versions/A/DSObjCWra ppers
        0x7fff86863000 -     0x7fff86919fff  libobjc.A.dylib 227.0.0 (compatibility 1.0.0) <99CB3A0F-64CF-1D16-70CD-8AED2EF06C30> /usr/lib/libobjc.A.dylib
        0x7fff8693b000 -     0x7fff86984ff7  com.apple.securityinterface 4.0.1 (40418) <E2DC796D-84EC-48F5-34A9-DF614573BE74> /System/Library/Frameworks/SecurityInterface.framework/Versions/A/SecurityInter face
        0x7fff86985000 -     0x7fff86990fff  com.apple.CrashReporterSupport 10.6.6 (256) <E99205C8-C119-764D-E06B-65659A35024A> /System/Library/PrivateFrameworks/CrashReporterSupport.framework/Versions/A/Cra shReporterSupport
        0x7fff86991000 -     0x7fff8699efe7  libCSync.A.dylib 545.0.0 (compatibility 64.0.0) <397B9057-5CDF-3B19-4E61-9DFD49369375> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ CoreGraphics.framework/Versions/A/Resources/libCSync.A.dylib
        0x7fff8699f000 -     0x7fff869a5fff  libCGXCoreImage.A.dylib 545.0.0 (compatibility 64.0.0) <4EE16374-A094-D542-5BC5-7E846D0CE56E> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ CoreGraphics.framework/Versions/A/Resources/libCGXCoreImage.A.dylib
        0x7fff869a6000 -     0x7fff86b5dfef  com.apple.ImageIO.framework 3.0.4 (3.0.4) <EE9DFBD6-6354-7C5A-F4C7-5FF782A7D992> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ImageIO.framework/Versions/A/ImageIO
        0x7fff86b5e000 -     0x7fff86bc0fe7  com.apple.datadetectorscore 2.0 (80.7) <5B6AABCA-C75A-D28F-6A2F-59648F0ABFC8> /System/Library/PrivateFrameworks/DataDetectorsCore.framework/Versions/A/DataDe tectorsCore
        0x7fff86bc1000 -     0x7fff86bfefff  com.apple.LDAPFramework 2.0 (120.1) <54A6769E-D7E2-DBE2-EA61-87B9EA355DA4> /System/Library/Frameworks/LDAP.framework/Versions/A/LDAP
        0x7fff86c0e000 -     0x7fff86c1afff  libbz2.1.0.dylib 1.0.5 (compatibility 1.0.0) <D659C43E-3E1A-F45C-9EFB-AF18990A402E> /usr/lib/libbz2.1.0.dylib
        0x7fff86c1b000 -     0x7fff86c20ff7  com.apple.CommonPanels 1.2.4 (91) <4D84803B-BD06-D80E-15AE-EFBE43F93605> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/CommonPanels. framework/Versions/A/CommonPanels
        0x7fff86c51000 -     0x7fff86dc0fe7  com.apple.QTKit 7.6.6 (1756) <7E020353-5F44-1E2E-7CB3-7CFDD95F913C> /System/Library/Frameworks/QTKit.framework/Versions/A/QTKit
        0x7fff86dc1000 -     0x7fff877b7fff  com.apple.AppKit 6.6.7 (1038.35) <9F4DF818-9DB9-98DA-490C-EF29EA757A97> /System/Library/Frameworks/AppKit.framework/Versions/C/AppKit
        0x7fff877b8000 -     0x7fff877f9fff  com.apple.SystemConfiguration 1.10.5 (1.10.2) <FB39F09C-57BB-D8CC-348D-93E00C602F7D> /System/Library/Frameworks/SystemConfiguration.framework/Versions/A/SystemConfi guration
        0x7fff877fa000 -     0x7fff877faff7  com.apple.Accelerate.vecLib 3.6 (vecLib 3.6) <4CCE5D69-F1B3-8FD3-1483-E0271DB2CCF3> /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.fr amework/Versions/A/vecLib
        0x7fff87804000 -     0x7fff8780bfff  com.apple.OpenDirectory 10.6 (10.6) <4200CFB0-DBA1-62B8-7C7C-91446D89551F> /System/Library/Frameworks/OpenDirectory.framework/Versions/A/OpenDirectory
        0x7fff8780c000 -     0x7fff88016fe7  libBLAS.dylib 219.0.0 (compatibility 1.0.0) <EEE5CE62-9155-6559-2AEA-05CED0F5B0F1> /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.fr amework/Versions/A/libBLAS.dylib
        0x7fff88017000 -     0x7fff88315fe7  com.apple.HIToolbox 1.6.4 (???) <263AD497-F4CC-9610-E7D3-B95CF6F02030> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/HIToolbox.fra mework/Versions/A/HIToolbox
        0x7fff88316000 -     0x7fff88359fef  libtidy.A.dylib ??? (???) <2F4273D3-418B-668C-F488-7E659D3A8C23> /usr/lib/libtidy.A.dylib
        0x7fff8835a000 -     0x7fff883d6ff7  com.apple.ISSupport 1.9.4 (52) <93A57F16-3BD5-25AD-5CFF-00007A141129> /System/Library/PrivateFrameworks/ISSupport.framework/Versions/A/ISSupport
        0x7fff883d7000 -     0x7fff883d7ff7  com.apple.ApplicationServices 38 (38) <10A0B9E9-4988-03D4-FC56-DDE231A02C63> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Application Services
        0x7fff883d8000 -     0x7fff88ad506f  com.apple.CoreGraphics 1.545.0 (???) <356D59D6-1DD1-8BFF-F9B3-1CE51D2F1EC7> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ CoreGraphics.framework/Versions/A/CoreGraphics
        0x7fff88ad6000 -     0x7fff88adcff7  com.apple.CommerceCore 1.0 (6) <E8A1144C-5666-9840-4729-256FE69CDBDB> /System/Library/PrivateFrameworks/CommerceKit.framework/Versions/A/Frameworks/C ommerceCore.framework/Versions/A/CommerceCore
        0x7fff88add000 -     0x7fff88b1eff7  com.apple.CoreMedia 0.484.20 (484.20) <42F3B74A-F886-33A0-40EE-8399B12BD32A> /System/Library/PrivateFrameworks/CoreMedia.framework/Versions/A/CoreMedia
        0x7fff88b5a000 -     0x7fff88b5aff7  com.apple.CoreServices 44 (44) <DC7400FB-851E-7B8A-5BF6-6F50094302FB> /System/Library/Frameworks/CoreServices.framework/Versions/A/CoreServices
        0x7fff88b5b000 -     0x7fff88b7cfff  libresolv.9.dylib 41.0.0 (compatibility 1.0.0) <9F322F47-0584-CB7D-5B73-9EBD670851CD> /usr/lib/libresolv.9.dylib
        0x7fff88b7d000 -     0x7fff88c96fef  libGLProgrammability.dylib ??? (???) <4F2DC233-7DD2-1204-CAA5-3E6524F0AB75> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGLProgramma bility.dylib
        0x7fff88c97000 -     0x7fff88d54ff7  com.apple.CoreServices.OSServices 357 (357) <7B22626F-D544-1955-CC53-240F4CACEB4A> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/OSServi ces.framework/Versions/A/OSServices
        0x7fff88d55000 -     0x7fff88d5bff7  IOSurface ??? (???) <EAD87C9F-BADC-7116-4ADD-0B0679459D24> /System/Library/Frameworks/IOSurface.framework/Versions/A/IOSurface
        0x7fff88d5c000 -     0x7fff88ddafff  com.apple.CoreText 3.5.0 (???) <4D5C7932-293B-17FF-7309-B580BB1953EA> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ CoreText.framework/Versions/A/CoreText
        0x7fff88ee8000 -     0x7fff88ef9ff7  libz.1.dylib 1.2.3 (compatibility 1.0.0) <97019C74-161A-3488-41EC-A6CA8738418C> /usr/lib/libz.1.dylib
        0x7fff88efa000 -     0x7fff890e2ff7  com.apple.JavaScriptCore 6533.18 (6533.18.1) <C6F7B4E1-1DF6-414A-5A17-B334A814B2A0> /System/Library/Frameworks/JavaScriptCore.framework/Versions/A/JavaScriptCore
        0x7fff890e3000 -     0x7fff89173fff  com.apple.SearchKit 1.3.0 (1.3.0) <3403E658-A54E-A79A-12EB-E090E8743984> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/SearchK it.framework/Versions/A/SearchKit
        0x7fffffe00000 -     0x7fffffe01fff  libSystem.B.dylib ??? (???) <F00A8B2F-84A0-0868-1047-3A13F9114864> /usr/lib/libSystem.B.dylib
    Model: MacBook4,1, BootROM MB41.00C1.B00, 2 processors, Intel Core 2 Duo, 2.1 GHz, 1 GB, SMC 1.31f1
    Graphics: Intel GMA X3100, GMA X3100, Built-In, 144 MB
    Memory Module: global_name
    AirPort: spairport_wireless_card_type_airport_extreme (0x14E4, 0x88), Broadcom BCM43xx 1.0 (5.10.131.36.1)
    Bluetooth: Version 2.3.8f7, 2 service, 19 devices, 1 incoming serial ports
    Network Service: AirPort, AirPort, en1
    Serial ATA Device: FUJITSU MJA2160BH FFS G1, 149.05 GB
    Parallel ATA Device: MATSHITACD-RW  CW-8221
    USB Device: Built-in iSight, 0x05ac  (Apple Inc.), 0x8501, 0xfd400000
    USB Device: Bluetooth USB Host Controller, 0x05ac  (Apple Inc.), 0x8205, 0x1a100000
    USB Device: Apple Internal Keyboard / Trackpad, 0x05ac  (Apple Inc.), 0x0229, 0x5d200000
    USB Device: IR Receiver, 0x05ac  (Apple Inc.), 0x8242, 0x5d100000

    You can update to Safari 6 ...
    Click here >  Safari Quits Every Time Opened: Apple Support Communities
    Then click the link posted by:  gregoryfromcork
    That will automatically download this file >  Safari6Lion.pkg.download
    Now quit Safari.
    Go to your Downloads folder and double click that file and follow the instructions for installing.
    Then restart your Mac, try Safari.

  • ITunes / AppStore problem: I live in Colombia, my apple ID and iTunes account are set in Colombia, but each time I try to register my Colombian credit card it tells me my credit card is not valid for the store. How can I fix this?

    I live in Colombia, my apple ID and iTunes account are set in Colombia, but each time I try to register my Colombian credit card it tells me my credit card is not valid for the store. How can I fix this?

    credit card it tells me my credit card is not valid for the store.
    Hi Don ...
    "Although you can browse the iTunes Store in any country without being signed in, you can only purchase content from the iTunes Store for your own country. This is enforced via the billing address associated with your credit card or other payment method that you use with the iTunes Store, rather than your actual geographic location."
    From here >  The Complete Guide to Using the iTunes Store | iLounge Article
    The iTunes and Mac App Store are one in the same.
    And check out this support article here   >  iTunes Store: My credit card's security code or zip code does not match my bank's records

Maybe you are looking for