Lack of randomness in my threads

Hi, I have the following code:
import java.util.Collections;
import java.util.List;
import java.util.LinkedList;
import java.util.Iterator;
public class ThreadSafeCollection {
     public static void main(String args[]) throws Exception {
          List queue = Collections.synchronizedList(new LinkedList());
          LinkedList threads = new LinkedList();
          int i = 0;
          while(i < 25) {
               threads.add(new InsertMessages("Thread" + i, queue));
               i++;
          Iterator iterator = threads.iterator();
          while(iterator.hasNext()) {
               ((InsertMessages)iterator.next()).start();
          Thread.sleep(2000);
          System.out.println("threads contains " + threads.size());
          System.out.println("queue contains " + queue.size() + " items.");
class InsertMessages extends Thread {
     List queue;
     final static int maxIterations = 10;
     public InsertMessages(String threadName, List queue) {
          super(threadName);
          this.queue = queue;
     public void run() {
          int iterations = 0;
          try {
               Thread.sleep((int)Math.random() * 1000);
          catch(InterruptedException e) {
               System.err.println("something");               
          while(iterations < maxIterations) {
               queue.add(getName() + " at iteration " + iterations);
               iterations++;                    
This above code produce the following results for the queue:
Thread0 at iteration 0, Thread0 at iteration 1, Thread0 at iteration 2, Thread0 at iteration 3, Thread0 at iteration 4, Thread0 at iteration 5, Thread0 at iteration 6, Thread0 at iteration 7, Thread0 at iteration 8, Thread0 at iteration 9, Thread1 at iteration 0, Thread1 at iteration 1, Thread1 at iteration 2, Thread1 at iteration 3, Thread1 at iteration 4, Thread1 at iteration 5.....
My problem is that the Thread execute in order from 1 to 10. This seems very deterministic. I expected more randomness. i.e. I expected the order of thread execution to be something like this: Thread3, Threads8, Thread1, Thread7... Any ideas why this is happening?
Thanks,
Paul0al

This is happening because you are inserting the threads into this list, then you are starting them in the same order. So one starts, runs, sleeps, the second starts, runs, sleeps, etc... So of course they go in order. However, if you left it running a long time, it's not impossible that due to factors beyond your control, one thread might sleep a little longer or shorter and therefore cause the threads to start running in different orders, but even that will likely remain in the same different order for some period of time.
If you really are wanting to start them in any order, then put the threads in a collection that doesn't guaranty an order (like Hashtable) and then get an iterator and start them. The other thing to do would be to start threads and have the sleep time be some random value each time to.

Similar Messages

  • Lack of reply and Lost threads!

    I have posted two threads here:
    http://forums.computers.toshiba-europe.com/forums/message.jspa?messageID=251472#251472
    and here:
    http://forums.computers.toshiba-europe.com/forums/message.jspa?messageID=251505#251505
    Neither have been replied to and to complicate matters I cannot find them in the front page of the forum. This effectively means that they will never be seen by any helper. Can they be "bumped" or do I re-submit and wait again or what?

    Hi
    You should click on your User nick name.
    http://forums.computers.toshiba-europe.com/forums/profile.jspa?userID=59022
    Then you will find your postings. It could be possible that the postings have been moved to other categories if you have posted this in the wrong forum.
    Greeting

  • There goes another thread on Random Shutdowns blocked by apple...

    it may have something to do with someone saying 'don't buy a macbook under any circumstances', which I'd have to disagree with, they are good computers I can't wait till mine is repaired!

    I can understand why the threads might be locked...but I don't agree with it. Even though the random shut down threads end up consisting of people badmouthing the product, it is still an open forum that should give people the right to free speech.
    In general I would still really like to own a Macbook, and from what I've seen, I dont see how a new OS could address the issue, as more often then not a logic board replacement does fix the issue. The reason why a lot of new logic boards don't seem to help could be because they're boards from the same "batch" being used.
    I dunno, technically if you spend a lot of time around these forums it's easy to get a really bad taste for almost anything, but people should still realise that there's still not a ridiculously high chance that they'll run into any serious issues.
    Take posts/threads in this forum realistically, but people need to realise that you're often not going to find anything BUT negative comments posted in places like this, so it's not always fair to turn down a new computer because of prevalent issues.
    I would not be able to wait and wait just because some people are still having certain issues. Bite the bullet...buy your new computer, and things should be fine. If they're not, applecare is more then willing to back you up and get you up and running asap.

  • Inability to draw simple graphics in Java properly (threads and JFrame)

    I am trying to use a thread to continually draw randomly positioned and randomly sized squares in the middle of a JFrame window. I have got 'something' working with the following code, however when run, the actual window doesn't come up properly. If I resize the window it does, and I get the result I wanted, but when the window is first opened it does not fully draw itself on screen. Can anybody help here? I am a bit of a novice when it comes to Java
    import java.awt.*;
    import java.awt.event.*;
    import javax.swing.*;
    import java.util.*;
    public class TestDraw extends JFrame implements Runnable {
    //DECLARE VARIABLES
         private JLabel lblText;
         private JButton btnBegin;
         private JPanel contentPane;
         private int CoordX, CoordY,SizeX, SizeY, Colour;     // Co'ords for drawing the squares
         Random random = new Random();                              // Random numbers (for square dimensions and colours)
         int n_1 = 450, n_2 = 130, n_3 = 100, n_4 = 4;          // The different ranges of randoms I require
         Thread squares = new Thread(this);                         // Implements a new thread
    //END OF DECLARE VARIABLES
    // CALLS INITIAL PROCEDURE, SETS VISIBLE ETC
         public TestDraw() {
              super();
              initializeComponent();
              this.setVisible(true);
    // INITIALISATION PROCEDURE CALL
         private void initializeComponent() {
              lblText = new JLabel();
              btnBegin = new JButton();
              contentPane = (JPanel)this.getContentPane();
              // lblText
              lblText.setText("This should draw squares on screen...");
              // btnBegin
              btnBegin.setText("Start");
              btnBegin.addActionListener(new ActionListener() {
                   public void actionPerformed(ActionEvent e) {
                        btnBegin_actionPerformed(e);
              // contentPane
              contentPane.setLayout(null);
              addComponent(contentPane, lblText, 10,300,364,18);
              addComponent(contentPane, btnBegin, 144,10,101,28);
              // TestDraw
              this.setTitle("TestDraw Program for CM0246");
              this.setLocation(new Point(0, 0));
              this.setSize(new Dimension(390, 350));
    // POSITION COMPONENTS ON SCREEN
         private void addComponent(Container container,Component c,int x,int y,int width,int height)     {
              c.setBounds(x,y,width,height);
              container.add(c);
    // EVENT HANDLING PROCEDURES
         private void btnBegin_actionPerformed(ActionEvent e) {
              System.out.println("\nAction Event from btnBegin called...");
              squares.start(); //STARTS THE SQUARES DRAWING THREAD (Draws random squares on screen)
    // THE MAIN METHOD (STARTS THE PROGRAM)
         public static void main(String[] args) {
              TestDraw bobdole = new TestDraw();
    // THE SQUARE DRAWINGS THREAD (SHOULD DRAW RANDOM SIZED AND COLOURED SQUARES IN RANDOM PLACES)
         public void run() {
              System.out.println("Thread running if this prints");
                   while(true) {
                        int int_1 = random.nextInt(n_1);     // chooses random int for X co'ord
                        int int_2 = random.nextInt(n_2)+70;     // chooses random int for Y co'ord
                        int int_3 = random.nextInt(n_3)+10;     // chooses random int for X dimension
                        int int_4 = random.nextInt(n_3)+10;     // chooses random int for Y dimension
                        CoordX = int_1;
                        CoordY = int_2;
                        SizeX  = int_3;
                        SizeY  = int_4;
                        repaint();
                        try {
                             squares.sleep(500);
                        catch (InterruptedException e) {
                             System.out.println(e);
    // THE PAINT METHOD ATTATCHED TO THE SQUARES THREAD
         public void paint( Graphics g ) {
              System.out.print("Colour" + Colour);
              g.setColor(Color.blue);
              g.fillRect(CoordX, CoordY, SizeX, SizeY);
    // END OF PROGRAM

    I don't see any problem when I run the program but.. In general you shouldn't paint directly on a frame by overloading the paint method. You should rather create a custom component on which you draw.
    But if you do overload paint, make sure you call super.paint before doing anything else.
    More information in this tutorial: http://java.sun.com/docs/books/tutorial/uiswing/painting/index.html

  • Random timeouts on queries in weblogic

    We are using WL 5.1 with SP 9 and jdk1.2.2 oracle thin client classes12_01.zip
    We have been having a weird situation where randomly the requesting
    thread will be timed out within a request. This same request
    works thousands of other times. There is no load on the db and
    the network is fine (we ran packet tracing over the interval in question).
    The server threw a 300s timeout and the thread was stopped in the
    middle of the request, ie no exception was thrown in the requested thread.
    Note action that died was outside of the stateless sessino bean in a jdbc query
    Any thoughts?

    Jen:
    All beans will timeout as defined by the timeout for the session.
    Weblogic monitors the request duration on the thread and will time
    it out if it does not finish within a certain time. Not anything to do
    with a db transaction as such.
    We are experiences an issue we think when the transaction dies
    but does not unlock the lock for the ejb.
    Philip.
    "Jen " <[email protected]> wrote in message
    news:[email protected]...
    >
    I am curious that if your stateless session bean got time out exception. Ihad a problem
    that stateless session bean call helper class, and helper class connect todb (no
    TX), and got couple time that ejb time out, after time out the processcontinued
    which is around where the db operation happens. I still don't know dbcaused ejb
    timed out or ejb hung and blocked the process
    [email protected] (Philip) wrote:
    Thanks Alex,
    I have pulled down the latest 1.7 classes.zip and we
    are running this through testing now. The biggest problem
    we have had is being able to reproduce this. It is very random.
    There were no database issues during the period in question
    we monitor it for locks as well as waits.
    Philip.
    "AV" <[email protected]> wrote in message
    news:<[email protected]>...
    Previously, in this newsgroup, people reported
    strange 60 sec delays from Oracle. General advice
    is to update the driver (Oracle keeps the same name
    classes12.zip, but actually updates it regularly).
    Also, ask your DBA check what database is doing
    in such moments: deadlock? system processes running?
    nothing? waiting for something from somewhere?
    AlexV.
    "Philip" <[email protected]> wrote in message
    news:[email protected]...
    We are using WL 5.1 with SP 9 and jdk1.2.2 oracle thin clientclasses12_01.zip
    We have been having a weird situation where randomly the requesting
    thread will be timed out within a request. This same request
    works thousands of other times. There is no load on the db and
    the network is fine (we ran packet tracing over the interval in
    question).
    The server threw a 300s timeout and the thread was stopped in the
    middle of the request, ie no exception was thrown in the requestedthread.
    Note action that died was outside of the stateless sessino bean in ajdbc
    query
    Any thoughts?

  • What happened to the thread?

    Why did the topic "Copy/Paste and Everything Wrong + 3 great moves" get deleted?
    I believe the topic raised some very reasonable concerns and suggestions about how to make the iPhone more viable in the corporate environment.
    One poster suggested Apple really listens to user suggestions. However the disappearance of that thread might suggest Apple might be stifling, rather than listening to any constructive criticism of the product.
    Why has that thread been removed?

    f this forum is intended as a forum for Apple users, why would Apple censor it, when there was no offensive or derogatory comments posted in the thread in question?
    Because it violated the TOU.
    From the TOU:
    Stay on topic. Apple Discussions is here to help people use Apple products and technologies more effectively. Unless otherwise noted, do not add Submissions about nontechnical topics, including:
    1. Speculations or rumors about unannounced products.
    2. Discussions of Apple policies or procedures or speculation on Apple decisions.
    From what I have observed, feature requests are considered speculation by the Hosts. You are describing something you would like to see in a future release of a hardware or software product, and not asking for or offering help about how to use an existing product. More importantly, the users on this forum can't help you with your request, because they are not Apple employees and have no ability to change the product in question. Those few Apple employees who might read your post are not permitted to discuss any future release, and are equally unable to help you.
    Quite simply, Apple Discussions are not the place for feature requests or speculation about future releases of software or hardware. A thread that is started with the intention of discussing such speculation will usually be deleted. If discussion of features - or their lack - arises in a proper thread (Ex: "How do I do this?" ans: "You can't, because..." or ans: "You can't, but here's a work around.") then the post is usually permitted to stand. Polling is also against the TOU, so starting a topic like "I wish (xx) had (this feature), what do you think?" is a double violation. (I didn't see your thread, I'm just describing a type of thread I often see getting deleted.) Apple feedback is the appropriate place to make feature requests. You can also find non-Apple managed rumor sites where this kind of speculation is encouraged.
    The purpose of Apple Discussions is to find (and offer) support using the product that you have, not for describing the product that you wish you had. Before posting, consider how likely the users here will be to answer and solve your question (or to benefit from your non-question topic). That's a good rule of thumb that can help you avoid having your topics removed.
    Regards.

  • Ideas on generating seeds for random number generators?

    Does anyone here have any ideas or know of any good links to articles that discuss how to generate good seeds for random number generators?
    I am aware that I could always probably call SecureRandom.generateSeed as one technique.
    The major problem that I have with the above is that I have no idea how any given implementation of SecureRandom works, and whether or not it is any good. (For instance, Sun seems to hide their implementation outside of the normal JDK source tree; must be in one of their semi-proprietary sun packages...)
    I thought about the problem a little, and I -think- that the implementation below ought to be OK. The javadocs describe the requirements that I am looking for as well as the implementation. The only issue that still bugs me is that maybe the hash function that I use is not 1-1, and so may not guarantee uniqueness, so I would especially like feedback on that.
    Here's the code fragments:
         * A seed value generating function for Random should satisfy these goals:
         * <ol>
         *  <li>be unique per each call of this method</li>
         *  <li>be different each time the JVM is run</li>
         *  <li>be uniformly spread around the range of all possible long values</li>
         * </ol>
         * This method <i>attempts</i> to satisfy all of these goals:
         * <ol>
         *  <li>
         *          an internal serial id field is incremented upon each call, so each call is guaranteed a different value;
         *          this field determines the high order bits of the result
         *  </li>
         *  <li>
         *          each call uses the result of {@link System#nanoTime System.nanoTime}
         *          to determine the low order bits of the result,
         *          which should be different each time the JVM is run (assuming that the system time is different)
         *  </li>
         *  <li>a hash algorithm is applied to the above numbers before putting them into the high and low order parts of the result</li>
         * </ol>
         * <b>Warning:</b> the uniqueness goals cannot be guaranteed because the hash algorithm, while it is of high quality,
         * is not guaranteed to be a 1-1 function (i.e. 2 different input ints might get mapped to the same output int).
         public static long makeSeed() {
              long bitsHigh = ((long) HashUtil.enhance( ++serialNumber )) << 32;
              long bitsLow = HashUtil.hash( System.nanoTime() );
              return bitsHigh | bitsLow;
         }and, in a class called HashUtil:     
         * Does various bit level manipulations of h which should thoroughly scramble its bits,
         * which enhances its hash effectiveness, before returning it.
         * This method is needed if h is initially a poor quality hash.
         * A prime example: {@link Integer#hashCode Integer.hashCode} simply returns the int value,
         * which is an extremely bad hash.     
         public static final int enhance(int h) {
    // +++ the code below was taken from java.util.HashMap.hash
    // is this a published known algorithm?  is there a better one?  research...
              h += ~(h << 9);
              h ^=  (h >>> 14);
              h +=  (h << 4);
              h ^=  (h >>> 10);
              return h;
         /** Returns a high quality hash for the long arg l. */
         public static final int hash(long l) {
              return enhance(
                   (int) (l ^ (l >>> 32))     // the algorithm on this line is the same as that used in Long.hashCode
         }

    Correct me if I'm incorrect, but doesn't SecureRandom just access hardware sources entropy? Sources like /dev/random?What do you mean by hardware sources of entropy?
    What you really want is some physical source of noise, like voltage fluctuations across a diode, or Johnson noise, or certain radioactive decay processes; see, for example
         http://www.robertnz.net/true_rng.html
         http://ietfreport.isoc.org/idref/draft-eastlake-randomness2/
         this 2nd paper is terrific; see for example this section: http://ietfreport.isoc.org/idref/draft-eastlake-randomness2/#page-9
    But is /dev/random equivalent to the above? Of course, this totally depends on how it is implemented; the 2nd paper cited above gives some more discussion:
         http://ietfreport.isoc.org/idref/draft-eastlake-randomness2/#page-34
    I am not sure if using inputs like keyboard, mouse, and disk events is quite as secure as, say, using Johnson noise; if my skimming of that paper is correct, he concludes that you need as many different partially random sources as possible, and even then "A hardware based random source is still preferable" (p. 13). But he appears to say that you can still do pretty good with these these sources if you take care and do things like deskew them. For instance, the common linix implementation of /dev/random at least takes those events and does some sophisticated math and hashing to try to further scramble the bits, which is what I am trying to simulate with my hashing in my makeSeed method.
    I don't think Java can actually do any better than the time without using JNI. But I always like to be enlightened; is there a way for the JVM to generate some quality entropy?Well, the JVM probably cannot beat some "true" hardware device like diode noise, but maybe it can be as good as /dev/random: if /dev/random is relying on partially random events like keyboard, mouse, and disk events, maybe there are similar events inside the JVM that it could tap into.
    Obviously, if you have a gui, you can with java tap into the same mouse and keyboard events as /dev/random does.
    Garbage collection events would probably NOT be the best candidate, since they should be somewhat deterministic. (However, note that that paper cited above gives you techniques for taking even very low entropy sources and getting good randomness out of them; you just have to be very careful and know what you are doing.)
    Maybe one source of partial randomness is the thread scheduler. Imagine that have one or more threads sleep, and when they wake up put that precise time of wakeup as an input into an entropy pool similar to the /dev/random pool. Each thread would then be put back to sleep after waking up, where its sleep time would also be a random number drawn from the pool. Here, you are hoping that the precise time of thread wakeup is equivalent in its randomness to keyboard, mouse, and disk events.
    I wish that I had time to pursue this...

  • G5 Power failure during start up and wake

    I have an early G5 20" non-iSight iMac that has a power problem that is steadily getting worse.
    As Apple support has expired and can't be extended, I'm at a loss how to resolve this.
    Description.
    The problem first started as intermittent during wake up from sleep (power light pulsing). I'd move the mouse or tap the keyboard to wake the iMac and I'd hear the disk just start to spin up followed by a sharp 'pop/click' like the power cord had been pulled, and it would be powered off needing the power button to be pressed to restart from scratch.
    Now the problem has worsened in that occasionally I will find the iMac has completely powered down during sleep. When I restart it can take up to 6 or more attempts to get to the point where I can use it. There's a sequence of restarts needed, each starting from pushing the power button, and then ending during the starting sequence with a 'pop/click' as the power suddenly shuts off. Each time the start up will progress a little further than the previous attempt until eventually it finishes building the desk top after login and I can operate normally until the next time I find it powered off after a few hours of non-use. The power failure starts initially from just after the welcome chime, and progresses to maybe 5 or 6 times later to during the desk top build after log-in. However, once logged in and operating the iMac behaves as normal, switching users, log-out and login, screen save and wake from screen save etc are all as I'd expect. I've not (yet at least) had any sudden power failures during normal operation.
    The serial number of the iMac falls within the Sept 05 Repair Extension Program serial number range (not EMC 2056 though), but when I spoke to Apple Support they said that the lack of random behaviour meant that the problem I'm having is not related and so would not be covered by this program.
    So I'm kinda stuck with a problem that is annoying when it occurs, which is daily at the moment, although it's been this bad a few weeks back and then was fine (iMac left switched on for 2 to 3 weeks without a problem) until we had a power cut earlier this week, and it's started again.
    I've searched through the forums and while I could find plenty of references to 'Sudden Power Loss' none seemed to be as predictable and similar to this one.
    Suggestions and ideas welcome. Thanks.

    i am having a similiar issue. I have the same exact computer (iMac G5, non-isight) and it stays on for 30 mins, hour, 3 hours and shuts off. Upon starting up, sometimes it doesn't make it to the login screen before shutting down again. I have downloaded heat temp monitor programs and it seems to get to about 70 degrees celcius sometimes. Upon restarting, I get the "report problem to apple" screen with this information. I have tried to restart the power supply too.
    Thu Apr 17 09:02:18 2008
    panic(cpu 0 caller 0x008E0BE4): "Missing CPU diode calibration information.\n"@/SourceCache/IOPlatformPluginFamily/IOPlatformPluginFamily-312. 0.1/SMUNeo2_PlatformPlugin/SMU_Neo2CPUTempSensor.cpp:124
    Latest stack backtrace for cpu 0:
    Backtrace:
    0x0009B478 0x0009BE1C 0x00029DD4 0x008E0BE4 0x008D0308 0x008CFD78 0x008E309C 0x008D48E8
    0x008E2C6C 0x00342B8C 0x00343CE0 0x00345B90 0x00344CB0 0x000B05D4
    Kernel loadable modules in backtrace (with dependencies):
    com.apple.driver.SMUNeo2PlatformPlugin(3.1.2d1)@0x8dc000->0x8eafff
    dependency: com.apple.driver.IOPlatformPluginFamily(3.1.2d1)@0x8c9000
    com.apple.driver.IOPlatformPluginFamily(3.1.2d1)@0x8c9000->0x8dbfff
    Proceeding back via exception chain:
    Exception state (sv=0x39e04c80)
    PC=0x00000000; MSR=0x0000D030; DAR=0x00000000; DSISR=0x00000000; LR=0x00000000; R1=0x00000000; XCP=0x00000000 (Unknown)
    BSD process name corresponding to current thread: kernel_task
    Mac OS version:
    9C7010
    Kernel version:
    Darwin Kernel Version 9.2.2: Tue Mar 4 21:23:43 PST 2008; root:xnu-1228.4.31~1/RELEASE_PPC
    System model name: PowerMac8,1
    *>}

  • IPhone 3gs will no longer sync to iTunes on Windows 7 x64

    My iPhone 3gs worked fine up until the last 2 updates. Ever since then, the iphone is not even recognized by iTunes. When I go under "devices" in the advanced settings I can see the backup for my phone. Why can't it recognize a phone that it's already recognized? I installed the latest 10.4 and still it's not recognized. I know the computer sees it as it's listed as "started" and "automatic" under services in the admin tools. I've pretty much tried every work around I can think of or seen online and nothing has worked at all. Really have no idea what to do next.
    If anyone has any idea how to resolve this issue, I would greatly appreciate it! My setup is below:
    Windows 7 pro x64
    iTunes 10.4
    iphone 3gs
    Thanks in advance for any assistance!

    Ok! So I just came across this randomly in another thread from user Kempas (thanks a lot!). It totally fixed the problem so I thought I'd repost it!
    https://discussions.apple.com/message/10644045#10644045
    Ok, I'm assuming everyone who is having trouble with Windows 7 (64-bit? mine is) has tried the following solution I found over at en.kioskea.net posted by a guy called Steve78545 (hey, you got to give a dude his due).
    It's maybe because Windows 7 uses a MTP driver instead of the USBAAPL by default, and what you need is an 'Apple Mobile Device USB Driver' which you might not have in 'Universal Serial Bus Controllers' (check it and see). If you haven't got it, as good ol' Steve78545 suggested:
    Update the driver by expanding 'Portable Devices' from the list, right click Apple iPhone/iPhone and select 'Update Driver Software'. Then select 'Browse My computer...'
    Copy the following path and paste it in - C:\Program Files\Common Files\Apple\Mobile Device Support\Drivers - then hit 'Next'.
    Let the thing do it's...thing an it should work. At least it did for me, so I hope it helps a few people out!
    K

  • My Iphone 5s is not getting sync to itunes on windows 7?,

    It gets stuck on Safari apps...!!! not a single song has been sync'd in my new Iphone 5s...very frustasting guys!!!
    Please give the solution aorund this as I have already tried many things

    Ok! So I just came across this randomly in another thread from user Kempas (thanks a lot!). It totally fixed the problem so I thought I'd repost it!
    https://discussions.apple.com/message/10644045#10644045
    Ok, I'm assuming everyone who is having trouble with Windows 7 (64-bit? mine is) has tried the following solution I found over at en.kioskea.net posted by a guy called Steve78545 (hey, you got to give a dude his due).
    It's maybe because Windows 7 uses a MTP driver instead of the USBAAPL by default, and what you need is an 'Apple Mobile Device USB Driver' which you might not have in 'Universal Serial Bus Controllers' (check it and see). If you haven't got it, as good ol' Steve78545 suggested:
    Update the driver by expanding 'Portable Devices' from the list, right click Apple iPhone/iPhone and select 'Update Driver Software'. Then select 'Browse My computer...'
    Copy the following path and paste it in - C:\Program Files\Common Files\Apple\Mobile Device Support\Drivers - then hit 'Next'.
    Let the thing do it's...thing an it should work. At least it did for me, so I hope it helps a few people out!
    K

  • HT1296 Events entered in my iPhone 3GS will no longer sync to my Outlook 2010 calendar - what's up?

    Some change in iOS I suppose makes it so events entered in my iPhone 3GS will no longer populate my Outlook 2010 calendar when I sync the devices through iTunes.  It used to be that events entered in each place would populate the other locationg when synced.  No longer!
    There are two calendars in iPhone now and I don't know why. 
    Can anyone help me find out what's going on?

    Ok! So I just came across this randomly in another thread from user Kempas (thanks a lot!). It totally fixed the problem so I thought I'd repost it!
    https://discussions.apple.com/message/10644045#10644045
    Ok, I'm assuming everyone who is having trouble with Windows 7 (64-bit? mine is) has tried the following solution I found over at en.kioskea.net posted by a guy called Steve78545 (hey, you got to give a dude his due).
    It's maybe because Windows 7 uses a MTP driver instead of the USBAAPL by default, and what you need is an 'Apple Mobile Device USB Driver' which you might not have in 'Universal Serial Bus Controllers' (check it and see). If you haven't got it, as good ol' Steve78545 suggested:
    Update the driver by expanding 'Portable Devices' from the list, right click Apple iPhone/iPhone and select 'Update Driver Software'. Then select 'Browse My computer...'
    Copy the following path and paste it in - C:\Program Files\Common Files\Apple\Mobile Device Support\Drivers - then hit 'Next'.
    Let the thing do it's...thing an it should work. At least it did for me, so I hope it helps a few people out!
    K

  • Rcp server not working: BUG IN CLIENT OF LIBDISPATCH:

    I have started rsh service in my mac server. i able to rsh my mac server from other systems. But unable to rcp.
    When i try to rcp from some other system, i get below crash report
    ####################################3
    Process:         rshd [46650]
    Path:            /usr/libexec/rshd
    Identifier:      rshd
    Version:         ??? (???)
    Code Type:       X86-64 (Native)
    Parent Process:  launchproxy [46649]
    Date/Time:       2011-08-26 20:57:33.892 +0530
    OS Version:      Mac OS X Server 10.6.8 (10K549)
    Report Version:  6
    Exception Type:  EXC_BAD_INSTRUCTION (SIGILL)
    Exception Codes: 0x0000000000000001, 0x0000000000000000
    Crashed Thread:  1  Dispatch queue: com.apple.libdispatch-manager
    Application Specific Information:
    BUG IN CLIENT OF LIBDISPATCH: Do not close random Unix descriptors
    Thread 0:  Dispatch queue: com.apple.main-thread
    0   libSystem.B.dylib                   0x00007fff825ebd7a mach_msg_trap + 10
    1   libSystem.B.dylib                   0x00007fff825ec3ed mach_msg + 59
    2   libSystem.B.dylib                   0x00007fff826015ba libinfoDSmig_Query + 255
    3   libSystem.B.dylib                   0x00007fff826012c6 LI_DSLookupQuery + 373
    4   libSystem.B.dylib                   0x00007fff82600c0e ds_item + 106
    5   libSystem.B.dylib                   0x00007fff8266f072 ds_user_byname + 84
    6   libSystem.B.dylib                   0x00007fff8266f22d ds_grouplist + 51
    7   libSystem.B.dylib                   0x00007fff8262e295 search_item_byname + 98
    8   libSystem.B.dylib                   0x00007fff8266f0f4 getgrouplist + 100
    9   libSystem.B.dylib                   0x00007fff82670301 initgroups + 98
    10  rshd                                0x000000010000211c 0x100000000 + 8476
    11  rshd                                0x000000010000257d 0x100000000 + 9597
    12  rshd                                0x00000001000011f8 0x100000000 + 4600
    Thread 1 Crashed:  Dispatch queue: com.apple.libdispatch-manager
    0   libSystem.B.dylib                   0x00007fff82606d30 _dispatch_mgr_invoke + 749
    1   libSystem.B.dylib                   0x00007fff826067b4 _dispatch_queue_invoke + 185
    2   libSystem.B.dylib                   0x00007fff826062de _dispatch_worker_thread2 + 252
    3   libSystem.B.dylib                   0x00007fff82605c08 _pthread_wqthread + 353
    4   libSystem.B.dylib    
    Binary Images:
           0x100000000 -        0x100002fff  rshd ??? (???) <7D31CFA1-2F76-EADB-375E-9C140856CFF8> /usr/libexec/rshd
           0x10007b000 -        0x10007bfff  pam_permit.so.2 ??? (???) <4F849A0B-87FF-B5BF-0B7C-893FE6766CF4> /usr/lib/pam/pam_permit.so.2
           0x10007e000 -        0x10007eff7  pam_nologin.so.2 ??? (???) <BF6D2BD6-0169-82FE-B0F5-9CDE89AB7E10> /usr/lib/pam/pam_nologin.so.2
           0x100082000 -        0x100083fff  pam_opendirectory.so.2 ??? (???) <EC4F785D-3B90-9237-41BF-09C9C342C62D> /usr/lib/pam/pam_opendirectory.so.2
           0x100087000 -        0x100087fff  pam_launchd.so.2 ??? (???) <DFD5667B-9357-7A92-2620-CD38F9E4BA2E> /usr/lib/pam/pam_launchd.so.2
           0x10008b000 -        0x10008bfff  pam_deny.so.2 ??? (???) <8EA7FE92-578C-21D4-2621-D58E468879EA> /usr/lib/pam/pam_deny.so.2
        0x7fff5fc00000 -     0x7fff5fc3be0f  dyld 132.1 (???) <29DECB19-0193-2575-D838-CF743F0400B2> /usr/lib/dyld
        0x7fff80003000 -     0x7fff800a3fff  com.apple.LaunchServices 362.3 (362.3) <B90B7C31-FEF8-3C26-BFB3-D8A48BD2C0DA> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/LaunchS ervices.framework/Versions/A/LaunchServices
        0x7fff80122000 -     0x7fff8014dff7  libxslt.1.dylib 3.24.0 (compatibility 3.0.0) <8AB4CA9E-435A-33DA-7041-904BA7FA11D5> /usr/lib/libxslt.1.dylib
        0x7fff80ac3000 -     0x7fff80bdafef  libxml2.2.dylib 10.3.0 (compatibility 10.0.0) <1B27AFDD-DF87-2009-170E-C129E1572E8B> /usr/lib/libxml2.2.dylib
        0x7fff80d30000 -     0x7fff80d42fe7  libsasl2.2.dylib 3.15.0 (compatibility 3.0.0) <76B83C8D-8EFE-4467-0F75-275648AFED97> /usr/lib/libsasl2.2.dylib
        0x7fff80de5000 -     0x7fff80e34ff7  com.apple.DirectoryService.PasswordServerFramework 6.1 (6.1) <0731C40D-71EF-B417-C83B-54C3527A36EA> /System/Library/PrivateFrameworks/PasswordServer.framework/Versions/A/PasswordS erver
        0x7fff810ea000 -     0x7fff81100fef  libbsm.0.dylib ??? (???) <42D3023A-A1F7-4121-6417-FCC6B51B3E90> /usr/lib/libbsm.0.dylib
        0x7fff8116f000 -     0x7fff8117dff7  libkxld.dylib ??? (???) <8145A534-95CC-9F3C-B78B-AC9898F38C6F> /usr/lib/system/libkxld.dylib
        0x7fff8155f000 -     0x7fff815effff  com.apple.SearchKit 1.3.0 (1.3.0) <4175DC31-1506-228A-08FD-C704AC9DF642> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/SearchK it.framework/Versions/A/SearchKit
        0x7fff81cf9000 -     0x7fff81da9fff  edu.mit.Kerberos 6.5.11 (6.5.11) <085D80F5-C9DC-E252-C21B-03295E660C91> /System/Library/Frameworks/Kerberos.framework/Versions/A/Kerberos
        0x7fff81daa000 -     0x7fff81dabff7  com.apple.TrustEvaluationAgent 1.1 (1) <5952A9FA-BC2B-16EF-91A7-43902A5C07B6> /System/Library/PrivateFrameworks/TrustEvaluationAgent.framework/Versions/A/Tru stEvaluationAgent
        0x7fff825d1000 -     0x7fff825eafff  com.apple.CFOpenDirectory 10.6 (10.6) <401557B1-C6D1-7E1A-0D7E-941715C37BFA> /System/Library/Frameworks/OpenDirectory.framework/Versions/A/Frameworks/CFOpen Directory.framework/Versions/A/CFOpenDirectory
        0x7fff825eb000 -     0x7fff827acfef  libSystem.B.dylib 125.2.11 (compatibility 1.0.0) <9AB4F1D1-89DC-0E8A-DC8E-A4FE4D69DB69> /usr/lib/libSystem.B.dylib
        0x7fff82a63000 -     0x7fff82bdafe7  com.apple.CoreFoundation 6.6.5 (550.43) <31A1C118-AD96-0A11-8BDF-BD55B9940EDC> /System/Library/Frameworks/CoreFoundation.framework/Versions/A/CoreFoundation
        0x7fff8373a000 -     0x7fff83740ff7  com.apple.DiskArbitration 2.3 (2.3) <857F6E43-1EF4-7D53-351B-10DE0A8F992A> /System/Library/Frameworks/DiskArbitration.framework/Versions/A/DiskArbitration
                 0x00007fff82605aa5 start_wqthread + 13
    0x7fff8455a000 -     0x7fff8455ffff  libpam.2.dylib 3.0.0 (compatibility 3.0.0) <97F037FC-0CD8-D4B3-8133-7D7013791F86> /usr/lib/libpam.2.dylib
        0x7fff84560000 -     0x7fff845aaff7  com.apple.Metadata 10.6.3 (507.15) <2EF19055-D7AE-4D77-E589-7B71B0BC1E59> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/Metadat a.framework/Versions/A/Metadata
        0x7fff846b7000 -     0x7fff847d6fe7  libcrypto.0.9.8.dylib 0.9.8 (compatibility 0.9.8) <14115D29-432B-CF02-6B24-A60CC533A09E> /usr/lib/libcrypto.0.9.8.dylib
        0x7fff847d7000 -     0x7fff847f7ff7  com.apple.DirectoryService.Framework 3.6 (621.12) <A4685F06-5881-35F5-764D-C380304C1CE8> /System/Library/Frameworks/DirectoryService.framework/Versions/A/DirectoryServi ce
        0x7fff847f8000 -     0x7fff84a7afe7  com.apple.Foundation 6.6.7 (751.62) <6F2A5BBF-6990-D561-2928-AD61E94036D9> /System/Library/Frameworks/Foundation.framework/Versions/C/Foundation
        0x7fff851f2000 -     0x7fff852c6fe7  com.apple.CFNetwork 454.12.4 (454.12.4) <C83E2BA1-1818-B3E8-5334-860AD21D1C80> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/CFNetwo rk.framework/Versions/A/CFNetwork
        0x7fff852c7000 -     0x7fff852c7ff7  com.apple.CoreServices 44 (44) <DC7400FB-851E-7B8A-5BF6-6F50094302FB> /System/Library/Frameworks/CoreServices.framework/Versions/A/CoreServices
        0x7fff858ae000 -     0x7fff858e9fff  com.apple.AE 496.5 (496.5) <208DF391-4DE6-81ED-C697-14A2930D1BC6> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/AE.fram ework/Versions/A/AE
        0x7fff858ea000 -     0x7fff859a0ff7  libobjc.A.dylib 227.0.0 (compatibility 1.0.0) <03140531-3B2D-1EBA-DA7F-E12CC8F63969> /usr/lib/libobjc.A.dylib
        0x7fff859a1000 -     0x7fff85c2aff7  com.apple.security 6.1.2 (55002) <4419AFFC-DAE7-873E-6A7D-5C9A5A4497A6> /System/Library/Frameworks/Security.framework/Versions/A/Security
        0x7fff85c2b000 -     0x7fff85de9fff  libicucore.A.dylib 40.0.0 (compatibility 1.0.0) <4274FC73-A257-3A56-4293-5968F3428854> /usr/lib/libicucore.A.dylib
        0x7fff85dea000 -     0x7fff85e2bfff  com.apple.SystemConfiguration 1.10.8 (1.10.2) <78D48D27-A9C4-62CA-2803-D0BBED82855A> /System/Library/Frameworks/SystemConfiguration.framework/Versions/A/SystemConfi guration
        0x7fff85e2c000 -     0x7fff85e8cfe7  com.apple.framework.IOKit 2.0 (???) <4F071EF0-8260-01E9-C641-830E582FA416> /System/Library/Frameworks/IOKit.framework/Versions/A/IOKit
        0x7fff85fb0000 -     0x7fff85fd8fff  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
        0x7fff86159000 -     0x7fff8615dff7  libmathCommon.A.dylib 315.0.0 (compatibility 1.0.0) <95718673-FEEE-B6ED-B127-BCDBDB60D4E5> /usr/lib/system/libmathCommon.A.dylib
        0x7fff86552000 -     0x7fff8659efff  libauto.dylib ??? (???) <F7221B46-DC4F-3153-CE61-7F52C8C293CF> /usr/lib/libauto.dylib
        0x7fff8700f000 -     0x7fff87030fff  libresolv.9.dylib 41.0.0 (compatibility 1.0.0) <9F322F47-0584-CB7D-5B73-9EBD670851CD> /usr/lib/libresolv.9.dylib

    Did you ever find a fix for this problem.  I am seeing the same thing on 10.6 and 10.7.
    Thanks.
    -Scott

  • Decode Problem in Oracle 8.1.6

    In our test database(Oracle 8.1.6), the SQL statement below does not give an "invalid number" error.
    select contact_id from news_contact
    Where 1 = decode(contact_id ,'pressoffice', 1,'k')
    and contact_id = 'pressoffice'
    However, when I ran this same SQL statement on our production database(Oracle 8.1.6), I get an "invalid number" error on the 'k' on the decode.

    BTW, I think that [ code ], [ code ] and similar tags, should be properly documented in this forums, and their usage should be mandatory. This seems to be a week point of the administrators of the Oracle forums. Also a forum-level promotion of decent code formating styles will make a difference.
    Taking an example at random from another thread, imagine that instead of having to read and understand queries like this:
    select COUNT(1) AS X1,x1.close_dt,x1.open_dt FROM W_SRVREQ_D X1,
    ( SELECT w_day_d.day_dt AS snapshot_date FROM (SELECT to_date(nvl(max(date_wid),'20030531'),'yyyymmdd')+1 AS snapshot_date FROM bt_fault_snapshot_f) f , w_day_d , (SELECT CASE WHEN to_number(to_char(sysdate,'hh24')) <18 THEN trunc(sysdate - 1) ELSE trunc(sysdate)
    END AS lastdate FROM dual) currdate WHERE w_day_d.day_dt >= f.snapshot_date AND w_day_d.day_dt <= currdate.lastdate) day WHERE X1.STATUS='CLOSED' group by x1.close_dt,x1.open_dt
    we will see only queries like that:
    SELECT COUNT(1) AS X1,
           x1.close_dt,
           x1.open_dt
      FROM W_SRVREQ_D X1,
          (SELECT w_day_d.day_dt AS snapshot_date
             FROM (SELECT to_date(nvl(max(date_wid),
                          '20030531'),
                          'yyyymmdd')+1 AS snapshot_date
                     FROM bt_fault_snapshot_f) f,
                          w_day_d,
                  (SELECT CASE
                          WHEN to_number(to_char(sysdate,'hh24')) < 18  
                          THEN trunc(sysdate - 1)
                          ELSE trunc(sysdate)
                          END AS lastdate
                     FROM dual) currdate
            WHERE w_day_d.day_dt >= f.snapshot_date
              AND w_day_d.day_dt <= currdate.lastdate) day
    WHERE X1.STATUS = 'CLOSED'
    GROUP BY x1.close_dt,
              x1.open_dt

  • ITunes for mac won't open -"itunes unexpectedly quit"

    I have uninstalled and reinstalled iTunes and I get this error - any ideas???
    Process: iTunes [18376]
    Path: /Applications/iTunes.app/Contents/MacOS/iTunes
    Identifier: com.apple.iTunes
    Version: 10.1 (10.1)
    Build Info: iTunes-10105401~1
    Code Type: X86 (Native)
    Parent Process: launchd [163]
    Date/Time: 2010-11-20 13:39:14.675 -0600
    OS Version: Mac OS X 10.6.5 (10H574)
    Report Version: 6
    Interval Since Last Report: 145222 sec
    Crashes Since Last Report: 10
    Per-App Interval Since Last Report: 65206 sec
    Per-App Crashes Since Last Report: 9
    Anonymous UUID: 44AB2208-3A94-4DEC-B185-50FFFC2F1C12
    Exception Type: EXCBADINSTRUCTION (SIGILL)
    Exception Codes: 0x0000000000000001, 0x0000000000000000
    Crashed Thread: 1 Dispatch queue: com.apple.libdispatch-manager
    Application Specific Information:
    BUG IN CLIENT OF LIBDISPATCH: Do not close random Unix descriptors
    Thread 0: Dispatch queue: com.apple.main-thread
    0 libSystem.B.dylib 0x907766ae _bsdthreadcreate + 10
    1 libSystem.B.dylib 0x907765ab pthread_create + 979
    2 ...ickTimeComponents.component 0x98775165 AMFDRMHelper_ComponentDispatch + 20258
    3 ...ickTimeComponents.component 0x98770d7f AMFDRMHelper_ComponentDispatch + 2876
    4 ...ple.CoreServices.CarbonCore 0x97f49557 callComponentStorage_444444 + 56
    5 ...ple.CoreServices.CarbonCore 0x97f3e054 CallComponentFunctionCommonWithStorage(char**, ComponentParameters*, long (*)(), unsigned long) + 54
    6 ...ickTimeComponents.component 0x987702f9 AMFDRMHelper_ComponentDispatch + 182
    7 ...ple.CoreServices.CarbonCore 0x97f367c9 CallComponentDispatch + 29
    8 com.apple.QuickTime 0x97268e92 QTDRMInitialize + 67
    9 com.apple.QuickTime 0x970129f3 QTSetProcessProperty_priv + 1226
    10 com.apple.QuickTime 0x970128b7 QTSetProcessProperty_priv + 910
    11 com.apple.QuickTime 0x97012526 QTSetProcessProperty + 43
    12 com.apple.iTunes 0x0000f99f 0x1000 + 59807
    13 com.apple.iTunes 0x00347e2a 0x1000 + 3436074
    14 com.apple.iTunes 0x0003f5f0 0x1000 + 255472
    15 com.apple.iTunes 0x000116b5 0x1000 + 67253
    16 com.apple.iTunes 0x0000db27 0x1000 + 52007
    17 com.apple.iTunes 0x0000d8ed 0x1000 + 51437
    18 com.apple.iTunes 0x00004b07 0x1000 + 15111
    19 com.apple.iTunes 0x00004859 0x1000 + 14425
    Thread 1 Crashed: Dispatch queue: com.apple.libdispatch-manager
    0 libSystem.B.dylib 0x907702e9 dispatch_mgrinvoke + 804
    1 libSystem.B.dylib 0x9076f559 dispatch_queueinvoke + 163
    2 libSystem.B.dylib 0x9076f2fe dispatch_workerthread2 + 240
    3 libSystem.B.dylib 0x9076ed81 pthreadwqthread + 390
    4 libSystem.B.dylib 0x9076ebc6 start_wqthread + 30
    Thread 2:
    0 libSystem.B.dylib 0x9076ea12 _workqkernreturn + 10
    1 libSystem.B.dylib 0x9076efa8 pthreadwqthread + 941
    2 libSystem.B.dylib 0x9076ebc6 start_wqthread + 30
    Thread 3:
    0 com.apple.iTunes 0x009cf56a 0x1000 + 10282346
    1 com.apple.iTunes 0x009b2383 0x1000 + 10163075
    2 com.apple.iTunes 0x00999e02 0x1000 + 10063362
    3 com.apple.iTunes 0x009a8711 0x1000 + 10123025
    4 com.apple.iTunes 0x009a8d06 0x1000 + 10124550
    5 com.apple.iTunes 0x0098cb61 0x1000 + 10009441
    6 com.apple.iTunes 0x0098be20 0x1000 + 10006048
    7 com.apple.iTunes 0x0085364c 0x1000 + 8726092
    8 com.apple.iTunes 0x00885ac2 0x1000 + 8932034
    9 com.apple.iTunes 0x0094eb0d 0x1000 + 9755405
    10 com.apple.iTunes 0x00009a08 0x1000 + 35336
    11 com.apple.iTunes 0x0000935a 0x1000 + 33626
    12 libSystem.B.dylib 0x9077685d pthreadstart + 345
    13 libSystem.B.dylib 0x907766e2 thread_start + 34
    Thread 4:
    0 libSystem.B.dylib 0x907490fa machmsgtrap + 10
    1 libSystem.B.dylib 0x90749867 mach_msg + 68
    2 com.apple.CoreFoundation 0x9180f37f __CFRunLoopRun + 2079
    3 com.apple.CoreFoundation 0x9180e464 CFRunLoopRunSpecific + 452
    4 com.apple.CoreFoundation 0x918143a4 CFRunLoopRun + 84
    5 com.apple.iTunes 0x0000c8af 0x1000 + 47279
    6 libSystem.B.dylib 0x9077685d pthreadstart + 345
    7 libSystem.B.dylib 0x907766e2 thread_start + 34
    Thread 5:
    0 libSystem.B.dylib 0x9076ea12 _workqkernreturn + 10
    1 libSystem.B.dylib 0x9076efa8 pthreadwqthread + 941
    2 libSystem.B.dylib 0x9076ebc6 start_wqthread + 30
    Thread 6:
    0 libSystem.B.dylib 0x907770a6 _semwaitsignal + 10
    1 libSystem.B.dylib 0x90776d62 pthread_condwait + 1191
    2 libSystem.B.dylib 0x907789f8 pthreadcondwait$UNIX2003 + 73
    3 com.apple.iTunes 0x00025ce4 0x1000 + 150756
    4 com.apple.iTunes 0x00025171 0x1000 + 147825
    5 libSystem.B.dylib 0x9077685d pthreadstart + 345
    6 libSystem.B.dylib 0x907766e2 thread_start + 34
    Thread 7: com.apple.CFSocket.private
    0 libSystem.B.dylib 0x907680c6 select$DARWIN_EXTSN + 10
    1 com.apple.CoreFoundation 0x9184ec83 __CFSocketManager + 1091
    2 libSystem.B.dylib 0x9077685d pthreadstart + 345
    3 libSystem.B.dylib 0x907766e2 thread_start + 34
    Thread 8:
    0 libSystem.B.dylib 0x907766c0 thread_start + 0
    Thread 1 crashed with X86 Thread State (32-bit):
    eax: 0xa00acfe0 ebx: 0x9076ffd6 ecx: 0x908c8e40 edx: 0xffffffff
    edi: 0xa009c1ec esi: 0xffffffff ebp: 0xb0080ef8 esp: 0xb0080d60
    ss: 0x0000001f efl: 0x00010246 eip: 0x907702e9 cs: 0x00000017
    ds: 0x0000001f es: 0x0000001f fs: 0x0000001f gs: 0x00000037
    cr2: 0x017f9000
    Binary Images:
    0x1000 - 0xdd8feb com.apple.iTunes 10.1 (10.1) <AA3F11C2-A709-1828-E09F-342AC6421702> /Applications/iTunes.app/Contents/MacOS/iTunes
    0xfe3000 - 0xfe8ff7 com.apple.iPod 1.6 (17) <4CCD2720-D270-C0D2-1E14-1374779C2401> /System/Library/PrivateFrameworks/iPod.framework/Versions/A/iPod
    0xfee000 - 0x107affb com.apple.iTunes.iPodUpdater 9.2 (9.2) <D2A36BFD-75DE-F33F-92DD-8D0E07F87C3E> /Applications/iTunes.app/Contents/Frameworks/iPodUpdater.framework/Versions/A/i PodUpdater
    0x10cf000 - 0x10edff7 +libgnsdk_musicid.1.8.2.dylib 1.8.2 (compatibility 1.8.2) /Applications/iTunes.app/Contents/MacOS/libgnsdk_musicid.1.8.2.dylib
    0x10fa000 - 0x11bcfeb +libgnsdk_sdkmanager.1.8.2.dylib 1.8.2 (compatibility 1.8.2) /Applications/iTunes.app/Contents/MacOS/libgnsdk_sdkmanager.1.8.2.dylib
    0x11d3000 - 0x1211fff +libgnsdk_submit.1.8.2.dylib 1.8.2 (compatibility 1.8.2) /Applications/iTunes.app/Contents/MacOS/libgnsdk_submit.1.8.2.dylib
    0x1216000 - 0x1497fe2 +libgnsdk_dsp.1.8.2.dylib 1.8.2 (compatibility 1.8.2) /Applications/iTunes.app/Contents/MacOS/libgnsdk_dsp.1.8.2.dylib
    0x14c0000 - 0x1500ff7 com.apple.vmutils 4.2 (106) <7AAF9FDA-AC1E-09FD-889E-68FFB5F94BA8> /System/Library/PrivateFrameworks/vmutils.framework/Versions/A/vmutils
    0x24dc000 - 0x24ddff7 com.apple.textencoding.unicode 2.3 (2.3) <78A61FD5-70EE-19EA-48D4-3481C640B70D> /System/Library/TextEncodings/Unicode Encodings.bundle/Contents/MacOS/Unicode Encodings
    0x24e2000 - 0x24e6ff3 com.apple.audio.AudioIPCPlugIn 1.1.6 (1.1.6) <F402CF88-D96C-42A0-3207-49759F496AE8> /System/Library/Extensions/AudioIPCDriver.kext/Contents/Resources/AudioIPCPlugI n.bundle/Contents/MacOS/AudioIPCPlugIn
    0x24eb000 - 0x24f1ffb com.apple.audio.AppleHDAHALPlugIn 1.9.9 (1.9.9f12) <82BFF5E9-2B0E-FE8B-8370-445DD94DA434> /System/Library/Extensions/AppleHDA.kext/Contents/PlugIns/AppleHDAHALPlugIn.bun dle/Contents/MacOS/AppleHDAHALPlugIn
    0x2600000 - 0x26b5fe7 libcrypto.0.9.7.dylib 0.9.7 (compatibility 0.9.7) <2E52683A-7E8E-68D5-5AC6-09962C37CB98> /usr/lib/libcrypto.0.9.7.dylib
    0x13800000 - 0x14a43ff3 com.apple.CoreFP 1.10.14 (1.10.14) <1D295F81-8167-9023-E46F-5DBB9E883B18> /System/Library/PrivateFrameworks/CoreFP.framework/CoreFP
    0x14f1c000 - 0x14f8afe7 com.apple.mobiledevice 416 (416) <7A99C264-894A-19BA-B574-6ABFDE2E02C9> /System/Library/PrivateFrameworks/MobileDevice.framework/MobileDevice
    0x14fc5000 - 0x14febfff libssl.0.9.7.dylib 0.9.7 (compatibility 0.9.7) <73B10885-F9AF-5B9D-A91C-D96869959EA5> /usr/lib/libssl.0.9.7.dylib
    0x19832000 - 0x19a10ff3 com.apple.audio.codecs.Components 2.0.2 (2.0.2) <8B43D24A-277D-5F42-8741-FC8736C44162> /System/Library/Components/AudioCodecs.component/Contents/MacOS/AudioCodecs
    0x70000000 - 0x700cbff3 com.apple.audio.units.Components 1.6.3 (1.6.3) <5DA35A22-1B05-6BD3-985A-26A7A2CD6289> /System/Library/Components/CoreAudio.component/Contents/MacOS/CoreAudio
    0x8fe00000 - 0x8fe4162b dyld 132.1 (???) <A4F6ADCC-6448-37B4-ED6C-ABB2CD06F448> /usr/lib/dyld
    0x90003000 - 0x90049ff7 libauto.dylib ??? (???) <29422A70-87CF-10E2-CE59-FEE1234CFAAE> /usr/lib/libauto.dylib
    0x9013f000 - 0x90243fe7 libcrypto.0.9.8.dylib 0.9.8 (compatibility 0.9.8) <BDEFA030-5E75-7C47-2904-85AB16937F45> /usr/lib/libcrypto.0.9.8.dylib
    0x90244000 - 0x90245ff7 com.apple.TrustEvaluationAgent 1.1 (1) <07E7D892-5054-23A8-7144-3F19D3BFD48F> /System/Library/PrivateFrameworks/TrustEvaluationAgent.framework/Versions/A/Tru stEvaluationAgent
    0x90246000 - 0x90256ff7 libsasl2.2.dylib 3.15.0 (compatibility 3.0.0) <C8744EA3-0AB7-CD03-E639-C4F2B910BE5D> /usr/lib/libsasl2.2.dylib
    0x90257000 - 0x90273fe3 com.apple.openscripting 1.3.1 (???) <480D41B6-F98E-8E21-CA3C-4CA6A9752D3D> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/OpenScripting .framework/Versions/A/OpenScripting
    0x902d6000 - 0x90419fef com.apple.QTKit 7.6.6 (1756) <4D809734-4E1B-8E18-C825-86C5422FC3DC> /System/Library/Frameworks/QTKit.framework/Versions/A/QTKit
    0x9041a000 - 0x9049afeb com.apple.SearchKit 1.3.0 (1.3.0) <2F5DE102-A203-7905-7D12-FCBCF17BAEF8> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/SearchK it.framework/Versions/A/SearchKit
    0x9049b000 - 0x904a6ff7 libCSync.A.dylib 545.0.0 (compatibility 64.0.0) <CB2510BD-A5B3-9D90-5917-C73F6ECAC913> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ CoreGraphics.framework/Versions/A/Resources/libCSync.A.dylib
    0x904ac000 - 0x904c4ff7 com.apple.CFOpenDirectory 10.6 (10.6) <F9AFC571-3539-6B46-ABF9-46DA2B608819> /System/Library/Frameworks/OpenDirectory.framework/Versions/A/Frameworks/CFOpen Directory.framework/Versions/A/CFOpenDirectory
    0x9050e000 - 0x90520ff7 com.apple.MultitouchSupport.framework 207.10 (207.10) <E1A6F663-570B-CE54-0F8A-BBCCDECE3B42> /System/Library/PrivateFrameworks/MultitouchSupport.framework/Versions/A/Multit ouchSupport
    0x90542000 - 0x9054cfe7 com.apple.audio.SoundManager 3.9.3 (3.9.3) <5F494955-7290-2D91-DA94-44B590191771> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/CarbonSound.f ramework/Versions/A/CarbonSound
    0x9054d000 - 0x9059afeb com.apple.DirectoryService.PasswordServerFramework 6.0 (6.0) <E2632F3E-6B5C-2E92-CD11-15BC0CE109CA> /System/Library/PrivateFrameworks/PasswordServer.framework/Versions/A/PasswordS erver
    0x905bb000 - 0x905cfffb com.apple.speech.synthesis.framework 3.10.35 (3.10.35) <0DBE17D5-17A2-8A0E-8572-5A78408B41C9> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ SpeechSynthesis.framework/Versions/A/SpeechSynthesis
    0x905d0000 - 0x905d9ff7 com.apple.DiskArbitration 2.3 (2.3) <E9C40767-DA6A-6CCB-8B00-2D5706753000> /System/Library/Frameworks/DiskArbitration.framework/Versions/A/DiskArbitration
    0x90657000 - 0x90704fe7 libobjc.A.dylib 227.0.0 (compatibility 1.0.0) <22CD62D4-9E7D-C31A-F585-FCEF1FE4C39A> /usr/lib/libobjc.A.dylib
    0x90705000 - 0x90719fe7 libbsm.0.dylib ??? (???) <821E415B-6C42-D359-78FF-E892792F8C52> /usr/lib/libbsm.0.dylib
    0x9071a000 - 0x9071dffb com.apple.help 1.3.1 (41) <EF92C648-2085-C085-8EA7-A1AF37AE94F4> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/Help.framewor k/Versions/A/Help
    0x90748000 - 0x908efff7 libSystem.B.dylib 125.2.1 (compatibility 1.0.0) <62291026-D016-705D-DC1E-FC2B09D47DE5> /usr/lib/libSystem.B.dylib
    0x908f0000 - 0x908f4ff7 libGIF.dylib ??? (???) <DA5758A4-71B0-DD6E-7402-B7FB15387569> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ImageIO.framework/Versions/A/Resources/libGIF.dylib
    0x908f5000 - 0x908f7ff7 com.apple.securityhi 4.0 (36638) <38D36D4D-C798-6ACE-5FA8-5C001993AD6B> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/SecurityHI.fr amework/Versions/A/SecurityHI
    0x9092f000 - 0x9093bff7 libkxld.dylib ??? (???) <F0E915AD-6B32-0D5E-D24B-B188447FDD23> /usr/lib/system/libkxld.dylib
    0x9093c000 - 0x9121cff7 com.apple.AppKit 6.6.7 (1038.35) <ABC7783C-E4D5-B848-BED6-99451D94D120> /System/Library/Frameworks/AppKit.framework/Versions/C/AppKit
    0x9121d000 - 0x91225ff7 com.apple.DisplayServicesFW 2.3.0 (283) <48D94761-7340-D029-99E3-9BE0262FAF22> /System/Library/PrivateFrameworks/DisplayServices.framework/Versions/A/DisplayS ervices
    0x91252000 - 0x9142dff3 libType1Scaler.dylib ??? (???) <A7AB841A-3F40-E0B8-ADDD-44014C7287C9> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ATS.framework/Versions/A/Resources/libType1Scaler.dylib
    0x9142e000 - 0x91439ff7 com.apple.CrashReporterSupport 10.6.5 (252) <1781CBE9-F2F4-0272-B434-124250CD48B5> /System/Library/PrivateFrameworks/CrashReporterSupport.framework/Versions/A/Cra shReporterSupport
    0x9143a000 - 0x91441ff3 com.apple.print.framework.Print 6.1 (237.1) <F5AAE53D-5530-9004-A9E3-2C1690C5328E> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/Print.framewo rk/Versions/A/Print
    0x91442000 - 0x91482ff3 com.apple.securityinterface 4.0.1 (37214) <195A203C-FD6F-64D2-E8E1-D4F83479EAFD> /System/Library/Frameworks/SecurityInterface.framework/Versions/A/SecurityInter face
    0x91483000 - 0x915baff7 com.apple.CoreAUC 6.04.04 (6.04.04) <050D9D16-AAE7-3460-4318-8449574F26C7> /System/Library/PrivateFrameworks/CoreAUC.framework/Versions/A/CoreAUC
    0x915bb000 - 0x915bbff7 com.apple.Cocoa 6.6 (???) <EA27B428-5904-B00B-397A-185588698BCC> /System/Library/Frameworks/Cocoa.framework/Versions/A/Cocoa
    0x915bc000 - 0x917c3feb com.apple.AddressBook.framework 5.0.3 (875) <759B660B-00F6-F08C-37CD-69468C774B5E> /System/Library/Frameworks/AddressBook.framework/Versions/A/AddressBook
    0x917c4000 - 0x917d1ff7 com.apple.NetFS 3.2.1 (3.2.1) <E483137C-8239-E4DE-821C-05A9C22726AB> /System/Library/Frameworks/NetFS.framework/Versions/A/NetFS
    0x917d2000 - 0x9194dfe7 com.apple.CoreFoundation 6.6.4 (550.42) <C78D5079-663E-9734-7AFA-6CE79A0539F1> /System/Library/Frameworks/CoreFoundation.framework/Versions/A/CoreFoundation
    0x9194e000 - 0x91c72fef com.apple.HIToolbox 1.6.3 (???) <0A5F56E2-9AF3-728D-70AE-429522AEAD8A> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/HIToolbox.fra mework/Versions/A/HIToolbox
    0x91d45000 - 0x91d60ff7 libPng.dylib ??? (???) <E14178E0-B92D-94EA-DACB-04F346D7534C> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ImageIO.framework/Versions/A/Resources/libPng.dylib
    0x91d61000 - 0x91e8ffe7 com.apple.CoreData 102.1 (251) <460D594D-09DC-9082-3FD3-F93D6A08AE71> /System/Library/Frameworks/CoreData.framework/Versions/A/CoreData
    0x91e90000 - 0x91e90ff7 liblangid.dylib ??? (???) <B99607FC-5646-32C8-2C16-AFB5EA9097C2> /usr/lib/liblangid.dylib
    0x91e91000 - 0x91ee1ff7 com.apple.framework.familycontrols 2.0.1 (2010) <B9762E20-543D-13B9-F6BF-E8585F04CA01> /System/Library/PrivateFrameworks/FamilyControls.framework/Versions/A/FamilyCon trols
    0x91ee2000 - 0x91f9bfe7 libsqlite3.dylib 9.6.0 (compatibility 9.0.0) <52438E77-55D1-C231-1936-76F1369518E4> /usr/lib/libsqlite3.dylib
    0x92299000 - 0x92307ff7 com.apple.QuickLookUIFramework 2.3 (327.6) <74706A08-5399-24FE-00B2-4A702A6B83C1> /System/Library/Frameworks/Quartz.framework/Versions/A/Frameworks/QuickLookUI.f ramework/Versions/A/QuickLookUI
    0x92308000 - 0x92327ff7 com.apple.CoreVideo 1.6.2 (45.6) <EB53CAA4-5EE2-C356-A954-5775F7DDD493> /System/Library/Frameworks/CoreVideo.framework/Versions/A/CoreVideo
    0x92328000 - 0x923c0fe7 edu.mit.Kerberos 6.5.10 (6.5.10) <8B83AFF3-C074-E47C-4BD0-4546EED0D1BC> /System/Library/Frameworks/Kerberos.framework/Versions/A/Kerberos
    0x923cf000 - 0x92446ff3 com.apple.backup.framework 1.2.2 (1.2.2) <7F360AB7-6F4C-167B-4C28-A69A55ECE433> /System/Library/PrivateFrameworks/Backup.framework/Versions/A/Backup
    0x9247c000 - 0x9247cff7 com.apple.quartzframework 1.5 (1.5) <CEB78F00-C5B2-3B3F-BF70-DD6D578719C0> /System/Library/Frameworks/Quartz.framework/Versions/A/Quartz
    0x9247d000 - 0x92674feb com.apple.JavaScriptCore 6533.18 (6533.18.1) <F740BA2B-EFCF-98E2-FFC2-361BD7D41330> /System/Library/Frameworks/JavaScriptCore.framework/Versions/A/JavaScriptCore
    0x92675000 - 0x929e0ff7 com.apple.QuartzCore 1.6.3 (227.34) <CC1C1631-D8D1-D416-171E-A1683274E479> /System/Library/Frameworks/QuartzCore.framework/Versions/A/QuartzCore
    0x92ab7000 - 0x92b92feb com.apple.DesktopServices 1.5.9 (1.5.9) <CED00AC1-924B-0E45-7D5E-1CEA8929F5BE> /System/Library/PrivateFrameworks/DesktopServicesPriv.framework/Versions/A/Desk topServicesPriv
    0x92b93000 - 0x92bd7ff3 com.apple.coreui 2 (114) <E6096C79-94B0-730E-6070-3AE93B5678FE> /System/Library/PrivateFrameworks/CoreUI.framework/Versions/A/CoreUI
    0x92bd8000 - 0x92bf9fe7 com.apple.opencl 12.3 (12.3) <DEA600BF-4F54-66B5-DB2F-DC57FD518543> /System/Library/Frameworks/OpenCL.framework/Versions/A/OpenCL
    0x92c33000 - 0x92c44ff7 com.apple.LangAnalysis 1.6.6 (1.6.6) <97511CC7-FE23-5AC3-2EE2-B5479FAEB316> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ LangAnalysis.framework/Versions/A/LangAnalysis
    0x92c45000 - 0x92d74fe3 com.apple.audio.toolbox.AudioToolbox 1.6.5 (1.6.5) <0A0F68E5-4806-DB51-764B-D97554B801AD> /System/Library/Frameworks/AudioToolbox.framework/Versions/A/AudioToolbox
    0x92e26000 - 0x92e2dff7 com.apple.agl 3.0.12 (AGL-3.0.12) <6877F0D8-0DCF-CB98-5304-913667FF50FA> /System/Library/Frameworks/AGL.framework/Versions/A/AGL
    0x92e2e000 - 0x93010fff com.apple.imageKit 2.0.3 (1.0) <B4DB05F7-01C5-35EE-7AB9-41BD9D63F075> /System/Library/Frameworks/Quartz.framework/Versions/A/Frameworks/ImageKit.fram ework/Versions/A/ImageKit
    0x93011000 - 0x93031fe7 libresolv.9.dylib 41.0.0 (compatibility 1.0.0) <751955F3-21FB-A03A-4E92-1F3D4EFB8C5B> /usr/lib/libresolv.9.dylib
    0x93032000 - 0x93a7dff7 com.apple.WebCore 6533.18 (6533.18.1) <55C5330D-DB7D-56B3-E31A-5FF98BD9A3A8> /System/Library/Frameworks/WebKit.framework/Versions/A/Frameworks/WebCore.frame work/Versions/A/WebCore
    0x93a7e000 - 0x93b10fe7 com.apple.print.framework.PrintCore 6.3 (312.7) <7410D1B2-655D-68DA-D4B9-2C65747B6817> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ PrintCore.framework/Versions/A/PrintCore
    0x93b32000 - 0x93b34ff7 libRadiance.dylib ??? (???) <10048B4A-2AE8-A4E2-21B8-C6E7A8C5B76F> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ImageIO.framework/Versions/A/Resources/libRadiance.dylib
    0x93b35000 - 0x93b6cfe7 libssl.0.9.8.dylib 0.9.8 (compatibility 0.9.8) <7DCB5938-3140-E71A-92BD-8C242F30C8F5> /usr/lib/libssl.0.9.8.dylib
    0x93b6d000 - 0x93be8fff com.apple.AppleVAFramework 4.10.12 (4.10.12) <89C4EBE2-FE27-3160-0BD1-D0C2ED5F3605> /System/Library/PrivateFrameworks/AppleVA.framework/Versions/A/AppleVA
    0x93be9000 - 0x943d8557 com.apple.CoreGraphics 1.545.0 (???) <1AB39678-00D5-FB88-3B41-93D78348E0DE> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ CoreGraphics.framework/Versions/A/CoreGraphics
    0x943d9000 - 0x944b6ff7 com.apple.vImage 4.0 (4.0) <64597E4B-F144-DBB3-F428-0EC3D9A1219E> /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vImage.fr amework/Versions/A/vImage
    0x944b7000 - 0x94565ff3 com.apple.ink.framework 1.3.3 (107) <0AFEBD7C-D83C-7847-C075-9B427505F7F0> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/Ink.framework /Versions/A/Ink
    0x945a9000 - 0x945cfffb com.apple.DictionaryServices 1.1.2 (1.1.2) <43E1D565-6E01-3681-F2E5-72AE4C3A097A> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/Diction aryServices.framework/Versions/A/DictionaryServices
    0x945d0000 - 0x947fbff3 com.apple.QuartzComposer 4.2 ({156.28}) <08AF01DC-110D-9443-3916-699DBDED0149> /System/Library/Frameworks/Quartz.framework/Versions/A/Frameworks/QuartzCompose r.framework/Versions/A/QuartzComposer
    0x947fc000 - 0x94802fff com.apple.CommonPanels 1.2.4 (91) <2438AF5D-067B-B9FD-1248-2C9987F360BA> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/CommonPanels. framework/Versions/A/CommonPanels
    0x94803000 - 0x94912fe7 com.apple.WebKit 6533.18 (6533.18.1) <20F0C7A4-1683-B82C-30C4-7505E8E58292> /System/Library/Frameworks/WebKit.framework/Versions/A/WebKit
    0x94a56000 - 0x94b00fe7 com.apple.CFNetwork 454.11.5 (454.11.5) <D8963574-285A-3BD6-6B25-07D39C6F67A4> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/CFNetwo rk.framework/Versions/A/CFNetwork
    0x94b01000 - 0x94b0fff7 com.apple.opengl 1.6.11 (1.6.11) <286D1BC4-4CD8-3CD4-F723-5C196FE15FE0> /System/Library/Frameworks/OpenGL.framework/Versions/A/OpenGL
    0x94b10000 - 0x94c3cffb com.apple.MediaToolbox 0.484.20 (484.20) <D67788A2-B772-C5DB-B12B-173B2F8EE40B> /System/Library/PrivateFrameworks/MediaToolbox.framework/Versions/A/MediaToolbo x
    0x94c95000 - 0x94cd2ff7 com.apple.CoreMedia 0.484.20 (484.20) <105DDB24-E45F-5473-99E1-B09FDEAE4500> /System/Library/PrivateFrameworks/CoreMedia.framework/Versions/A/CoreMedia
    0x94d27000 - 0x9513dff7 libBLAS.dylib 219.0.0 (compatibility 1.0.0) <C4FB303A-DB4D-F9E8-181C-129585E59603> /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.fr amework/Versions/A/libBLAS.dylib
    0x9513e000 - 0x9513eff7 com.apple.Accelerate 1.6 (Accelerate 1.6) <BC501C9F-7C20-961A-B135-0A457667D03C> /System/Library/Frameworks/Accelerate.framework/Versions/A/Accelerate
    0x9513f000 - 0x95182ff7 com.apple.NavigationServices 3.5.4 (182) <ED268D94-E544-5548-AA59-7EC70DCB5EE4> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/NavigationSer vices.framework/Versions/A/NavigationServices
    0x951e8000 - 0x9520cff7 libJPEG.dylib ??? (???) <46AF3A0F-2B8D-87B9-62D4-0905678A64DA> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ImageIO.framework/Versions/A/Resources/libJPEG.dylib
    0x9520d000 - 0x9523eff7 libGLImage.dylib ??? (???) <78F59EAB-BBD4-7366-CA84-970547501978> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGLImage.dyl ib
    0x9523f000 - 0x95242fe7 libmathCommon.A.dylib 315.0.0 (compatibility 1.0.0) <1622A54F-1A98-2CBE-B6A4-2122981A500E> /usr/lib/system/libmathCommon.A.dylib
    0x9524e000 - 0x95295ffb com.apple.CoreMediaIOServices 133.0 (1158) <150A5F22-E7EC-9E8E-3B68-BAD75280EFC3> /System/Library/PrivateFrameworks/CoreMediaIOServices.framework/Versions/A/Core MediaIOServices
    0x95415000 - 0x9543dff7 libxslt.1.dylib 3.24.0 (compatibility 3.0.0) <769EF4B2-C1AD-73D5-AAAD-1564DAEA77AF> /usr/lib/libxslt.1.dylib
    0x9543e000 - 0x95441ff7 libCGXType.A.dylib 545.0.0 (compatibility 64.0.0) <B624AACE-991B-0FFA-2482-E69970576CE1> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ CoreGraphics.framework/Versions/A/Resources/libCGXType.A.dylib
    0x95442000 - 0x9547fff7 com.apple.SystemConfiguration 1.10.5 (1.10.2) <362DF639-6E5F-9371-9B99-81C581A8EE41> /System/Library/Frameworks/SystemConfiguration.framework/Versions/A/SystemConfi guration
    0x954ab000 - 0x9551aff7 libvMisc.dylib 268.0.1 (compatibility 1.0.0) <5C3D7DA5-29EB-A745-E32B-26DBF547D532> /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.fr amework/Versions/A/libvMisc.dylib
    0x9553a000 - 0x95583fe7 libTIFF.dylib ??? (???) <AC1FC806-F7F4-174B-375F-FE5D6008666C> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ImageIO.framework/Versions/A/Resources/libTIFF.dylib
    0x95584000 - 0x955c6ff7 libvDSP.dylib 268.0.1 (compatibility 1.0.0) <EF769BD0-63B6-B65D-FA54-8F2354CAD865> /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.fr amework/Versions/A/libvDSP.dylib
    0x955c7000 - 0x95602feb libFontRegistry.dylib ??? (???) <4FB144ED-8AF9-27CF-B315-DCE5575D5231> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ATS.framework/Versions/A/Resources/libFontRegistry.dylib
    0x95603000 - 0x95876fe7 com.apple.Foundation 6.6.4 (751.42) <ACC0BAEB-C590-7052-3AB2-86C207C3D6D4> /System/Library/Frameworks/Foundation.framework/Versions/C/Foundation
    0x95877000 - 0x95978fe7 libxml2.2.dylib 10.3.0 (compatibility 10.0.0) <AB3A3749-B577-1EB3-72DF-215E866F1168> /usr/lib/libxml2.2.dylib
    0x95979000 - 0x95a14ff7 com.apple.ApplicationServices.ATS 4.4 (???) <ECB16606-4DF8-4AFB-C91D-F7947C26040F> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ATS.framework/Versions/A/ATS
    0x95a1d000 - 0x95a73ff7 com.apple.MeshKitRuntime 1.1 (49.2) <B821BF19-0938-711C-7DC9-B8330DA01F77> /System/Library/PrivateFrameworks/MeshKit.framework/Versions/A/Frameworks/MeshK itRuntime.framework/Versions/A/MeshKitRuntime
    0x95a74000 - 0x95cd7fef com.apple.security 6.1.1 (37594) <1949216A-7583-B73A-6112-4D55CA5852E3> /System/Library/Frameworks/Security.framework/Versions/A/Security
    0x95cd8000 - 0x95d0bff7 com.apple.AE 496.4 (496.4) <582F5E9D-1B8E-6D03-EBB8-AA85F66253E2> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/AE.fram ework/Versions/A/AE
    0x95d0c000 - 0x95d11ff7 com.apple.OpenDirectory 10.6 (10.6) <C1B46982-7D3B-3CC4-3BC2-3E4B595F0231> /System/Library/Frameworks/OpenDirectory.framework/Versions/A/OpenDirectory
    0x95d12000 - 0x95d76ffb com.apple.htmlrendering 72 (1.1.4) <4D451A35-FAB6-1288-71F6-F24A4B6E2371> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/HTMLRendering .framework/Versions/A/HTMLRendering
    0x95d77000 - 0x95d82ff7 libGL.dylib ??? (???) <48405993-0AE9-292B-6705-C3525528682A> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGL.dylib
    0x9616a000 - 0x961adff7 libGLU.dylib ??? (???) <F8580594-0B38-F3ED-A715-CB3776B747A0> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGLU.dylib
    0x961de000 - 0x96257ff7 com.apple.PDFKit 2.5.1 (2.5.1) <2B62428D-0738-B499-C47C-3194B2967BD9> /System/Library/Frameworks/Quartz.framework/Versions/A/Frameworks/PDFKit.framew ork/Versions/A/PDFKit
    0x96258000 - 0x962b0fe7 com.apple.datadetectorscore 2.0 (80.7) <F7416A84-E91C-5BDC-10E3-4940EB7AE5C9> /System/Library/PrivateFrameworks/DataDetectorsCore.framework/Versions/A/DataDe tectorsCore
    0x962b1000 - 0x962b1ff7 com.apple.Carbon 150 (152) <9252D5F2-462D-2C15-80F3-109644D6F704> /System/Library/Frameworks/Carbon.framework/Versions/A/Carbon
    0x962b2000 - 0x9630fff7 com.apple.framework.IOKit 2.0 (???) <A769737F-E0D6-FB06-29B4-915CF4F43420> /System/Library/Frameworks/IOKit.framework/Versions/A/IOKit
    0x963ba000 - 0x967efff7 libLAPACK.dylib 219.0.0 (compatibility 1.0.0) <5E2D2283-57DE-9A49-1DB0-CD027FEFA6C2> /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.fr amework/Versions/A/libLAPACK.dylib
    0x967f0000 - 0x967f0ff7 com.apple.Accelerate.vecLib 3.6 (vecLib 3.6) <1DEC639C-173D-F808-DE0D-4070CC6F5BC7> /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.fr amework/Versions/A/vecLib
    0x967f1000 - 0x968cdff3 com.apple.DiscRecording 5.0.8 (5080.4.1) <C064D05B-5191-2AC9-43B4-42DF0A466250> /System/Library/Frameworks/DiscRecording.framework/Versions/A/DiscRecording
    0x968ce000 - 0x9697eff3 com.apple.ColorSync 4.6.3 (4.6.3) <AA1076EA-7665-3005-A837-B661260DBE54> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ColorSync.framework/Versions/A/ColorSync
    0x9697f000 - 0x96a35ff7 libFontParser.dylib ??? (???) <33F62EE1-E457-C6FD-369E-E86745B94A4B> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ATS.framework/Versions/A/Resources/libFontParser.dylib
    0x96a4f000 - 0x96a88ff7 libcups.2.dylib 2.8.0 (compatibility 2.0.0) <D6F24434-8217-DF72-2126-1953080680D7> /usr/lib/libcups.2.dylib
    0x96a89000 - 0x96a89ff7 com.apple.CoreServices 44 (44) <51CFA89A-33DB-90ED-26A8-67D461718A4A> /System/Library/Frameworks/CoreServices.framework/Versions/A/CoreServices
    0x96a8a000 - 0x96a8bff7 libScreenReader.dylib ??? (???) <EF75A0A6-47D8-4E6B-324A-F779C9F8F807> /usr/lib/libScreenReader.dylib
    0x96a8c000 - 0x96ac4ff7 com.apple.LDAPFramework 2.0 (120.1) <C324E71E-17DE-A3E3-4EBC-99F4730FB99A> /System/Library/Frameworks/LDAP.framework/Versions/A/LDAP
    0x96ac5000 - 0x96ac9ff7 IOSurface ??? (???) <D849E1A5-6B0C-2A05-2765-850EC39BA2FF> /System/Library/Frameworks/IOSurface.framework/Versions/A/IOSurface
    0x96aca000 - 0x96af1ff7 com.apple.quartzfilters 1.6.0 (1.6.0) <879A3B93-87A6-88FE-305D-DF1EAED04756> /System/Library/Frameworks/Quartz.framework/Versions/A/Frameworks/QuartzFilters .framework/Versions/A/QuartzFilters
    0x96b34000 - 0x96b56fef com.apple.DirectoryService.Framework 3.6 (621.9) <F2EEE9D7-D4FB-14F3-E647-ABD32754F557> /System/Library/Frameworks/DirectoryService.framework/Versions/A/DirectoryServi ce
    0x96b9e000 - 0x96c68fef com.apple.CoreServices.OSServices 357 (357) <CF9530AD-F581-B831-09B6-16D9F9283BFA> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/OSServi ces.framework/Versions/A/OSServices
    0x96c69000 - 0x96c6aff7 com.apple.MonitorPanelFramework 1.3.0 (1.3.0) <0EC4EEFF-477E-908E-6F21-ED2C973846A4> /System/Library/PrivateFrameworks/MonitorPanel.framework/Versions/A/MonitorPane l
    0x96c8b000 - 0x96c8cff7 com.apple.audio.units.AudioUnit 1.6.5 (1.6.5) <BE4C2495-B758-AD22-DCC0-56A6791E948E> /System/Library/Frameworks/AudioUnit.framework/Versions/A/AudioUnit
    0x96c8d000 - 0x96cbffe3 libTrueTypeScaler.dylib ??? (???) <6E9D1A50-330E-F1F4-F93D-9ECC8A61B21A> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ATS.framework/Versions/A/Resources/libTrueTypeScaler.dylib
    0x96cc0000 - 0x96d1afe7 com.apple.CorePDF 1.3 (1.3) <696ADD5F-C038-A63B-4732-82E4109379D7> /System/Library/PrivateFrameworks/CorePDF.framework/Versions/A/CorePDF
    0x96d1b000 - 0x96db8fe3 com.apple.LaunchServices 362.1 (362.1) <ED243C3B-9A16-A6CB-CA51-5924F48569DE> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/LaunchS ervices.framework/Versions/A/LaunchServices
    0x96e59000 - 0x96e59ff7 com.apple.ApplicationServices 38 (38) <8012B504-3D83-BFBB-DA65-065E061CFE03> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Application Services
    0x96e5a000 - 0x96e9efe7 com.apple.Metadata 10.6.3 (507.12) <8632684D-ED4C-4CE1-4C53-015DFF10D873> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/Metadat a.framework/Versions/A/Metadata
    0x96e9f000 - 0x96edeff7 com.apple.ImageCaptureCore 1.0.3 (1.0.3) <7E02D104-F31C-CF72-71B4-DA5DF7B48337> /System/Library/Frameworks/ImageCaptureCore.framework/Versions/A/ImageCaptureCo re
    0x96edf000 - 0x96febff7 libGLProgrammability.dylib ??? (???) <8B308FAE-843F-EE76-0254-3374CBFFA7B3> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGLProgramma bility.dylib
    0x96fec000 - 0x972e5fef com.apple.QuickTime 7.6.6 (1756) <F08B13B6-31D7-BD18-DA87-A0CDFCF13B8F> /System/Library/Frameworks/QuickTime.framework/Versions/A/QuickTime
    0x97449000 - 0x97902ffb com.apple.VideoToolbox 0.484.20 (484.20) <E7B9F015-2569-43D7-5268-375ED937ECA5> /System/Library/PrivateFrameworks/VideoToolbox.framework/Versions/A/VideoToolbo x
    0x9793c000 - 0x9793cff7 com.apple.vecLib 3.6 (vecLib 3.6) <7362077A-890F-3AEF-A8AB-22247B10E106> /System/Library/Frameworks/vecLib.framework/Versions/A/vecLib
    0x97b44000 - 0x97cfdfeb com.apple.ImageIO.framework 3.0.4 (3.0.4) <C145139E-24C4-5A3D-B17C-809D528354B2> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ImageIO.framework/Versions/A/ImageIO
    0x97cfe000 - 0x97e80fe7 libicucore.A.dylib 40.0.0 (compatibility 1.0.0) <35DB7644-0780-D2AB-F6A9-45F28D2D434A> /usr/lib/libicucore.A.dylib
    0x97ecf000 - 0x981efff3 com.apple.CoreServices.CarbonCore 861.23 (861.23) <B08756E4-32C5-CC33-0268-7C00A5ED7537> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/CarbonC ore.framework/Versions/A/CarbonCore
    0x981f0000 - 0x9822eff7 com.apple.QuickLookFramework 2.3 (327.6) <66955C29-0C99-D02C-DB18-4952AFB4E886> /System/Library/Frameworks/QuickLook.framework/Versions/A/QuickLook
    0x9822f000 - 0x98233ff7 libGFXShared.dylib ??? (???) <C3A805C4-C0E5-B300-430A-7E811395CB8E> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGFXShared.d ylib
    0x98234000 - 0x99186fef com.apple.QuickTimeComponents.component 7.6.6 (1756) /System/Library/QuickTime/QuickTimeComponents.component/Contents/MacOS/QuickTim eComponents
    0x99187000 - 0x9919cfff com.apple.ImageCapture 6.0.1 (6.0.1) <E7ED2AC1-834C-A44E-531E-EC05F0496DBF> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/ImageCapture. framework/Versions/A/ImageCapture
    0x99215000 - 0x99276fe7 com.apple.CoreText 3.5.0 (???) <BB50C045-25F5-65B8-B1DB-8CDAEF45EB46> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ CoreText.framework/Versions/A/CoreText
    0x99277000 - 0x992c8ff7 com.apple.HIServices 1.8.1 (???) <51BDD848-32A5-2425-BE07-BD037A89630A> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ HIServices.framework/Versions/A/HIServices
    0x992c9000 - 0x993cbfef com.apple.MeshKitIO 1.1 (49.2) <D0CBE997-5BDC-C0ED-B821-ACA6E6EE8B59> /System/Library/PrivateFrameworks/MeshKit.framework/Versions/A/Frameworks/MeshK itIO.framework/Versions/A/MeshKitIO
    0x993cc000 - 0x993dafe7 libz.1.dylib 1.2.3 (compatibility 1.0.0) <3CE8AA79-F077-F1B0-A039-9103A4A02E92> /usr/lib/libz.1.dylib
    0x993fd000 - 0x9940dff7 com.apple.DSObjCWrappers.Framework 10.6 (134) <81A0B409-3906-A98F-CA9B-A49E75007495> /System/Library/PrivateFrameworks/DSObjCWrappers.framework/Versions/A/DSObjCWra ppers
    0x9940e000 - 0x99418ffb com.apple.speech.recognition.framework 3.11.1 (3.11.1) <6E3481DF-645E-6095-0CD7-9BEBEC2ED9D1> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/SpeechRecogni tion.framework/Versions/A/SpeechRecognition
    0x995be000 - 0x99628fe7 libstdc++.6.dylib 7.9.0 (compatibility 7.0.0) <411D87F4-B7E1-44EB-F201-F8B4F9227213> /usr/lib/libstdc++.6.dylib
    0x99839000 - 0x9983cff7 libCoreVMClient.dylib ??? (???) <1F738E81-BB71-32C5-F1E9-C1302F71021C> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libCoreVMClien t.dylib
    0x99844000 - 0x99874ff7 com.apple.MeshKit 1.1 (49.2) <0828CB45-3CC6-9A9E-070A-141A30F534E3> /System/Library/PrivateFrameworks/MeshKit.framework/Versions/A/MeshKit
    0x99875000 - 0x998f7ffb SecurityFoundation ??? (???) <3670AE8B-06DA-C447-EB14-79423DB9C474> /System/Library/Frameworks/SecurityFoundation.framework/Versions/A/SecurityFoun dation
    0x998f8000 - 0x999a0ffb com.apple.QD 3.36 (???) <FA2785A4-BB69-DCB4-3BA3-7C89A82CAB41> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ QD.framework/Versions/A/QD
    0x999a1000 - 0x99a1bfff com.apple.audio.CoreAudio 3.2.6 (3.2.6) <F7C9B01D-45AD-948B-2D26-9736524C1A33> /System/Library/Frameworks/CoreAudio.framework/Versions/A/CoreAudio
    0xffff0000 - 0xffff1fff libSystem.B.dylib ??? (???) <62291026-D016-705D-DC1E-FC2B09D47DE5> /usr/lib/libSystem.B.dylib

    Sorry for the late response. I realised my notifications are off. I've tried that. All my software is up to date, setting for wifi sync are all checked off. I spent 1 hour on the phone with Apple with no results. Most threads are about Windows PC. I run a a MacBook. Variables could be my Linksys router but i/ve played with the firewall settings and nothing. I have a range extender but all devices are using the same network. Any final ideas?

  • Canon PIXMA MP140 Scanner not working in Windows 7

    I have been having problems in getting the Scanner function to work properly in Windows 7. This is the message I receive everytime I try to scan or preview a scan in Windows 7:
    Cannot communicate with scanner.
    Cable may be disconnected or scanner may be turned off. Check status.
    Scanner driver will be closed.
    I have installed the latest drivers from the Canon Support website. I have even tried installing the latest Windows XP driver in Windows 7 with no effect. I have also tried using a different USB Cable and connected the USB Cable to a different USB Port on my Computer with no luck. 
    The Scanner works fine in WIndows XP SP3. I upgraded my Computer to Windows 7 SP1 and now have a problem with the Scanner. 
    Any ideas? It is supposed to work in Windows 7 I've checked the Canon and the Microsoft website which both say that its compatibie. 

    This printer/scanner is NOT compatible with Windows 7 32-bit. 
    I tried installing the latest MP Driver v1.06 and the MP Navigator 3.1 software in Windows XP compatibility mode and Windows Vista compatibility mode. 
    I even tried using the MP Driver v1.00 and MP Navigator 3.1 software (provided on the CD-ROM that came supplied with the printer) in Windows XP compatibility mode and Windows Vista compatibility mode. 
    I only had slight success with the MP Driver v1.00 which comes supplied on the CD-ROM with the printer.
    When I installed this driver in Windows XP compatibility mode, it wouldn’t scan in MP Navigator 3.1 at all but in Windows Fax and Scan it would let me preview a scan then complete a full scan. But would then refuse to preview or scan anything else after that unless I turned the printer on and off and restart the computer. 
    This is obviously a driver compatibility problem with Windows 7. 
    I’m amazed at how Canon has tried to pass this printer/scanner off as being compatible with Windows 7 when it clearly isn’t. I know it works with Windows 7 64-bit but lets face it most people are using 32-bit systems not 64-bit.
    It looks like there hasn’t been any proper testing done by Canon. Its poor form from Canon and the lack of replies in this thread is deafening. Seeing as this is the official Canon forum I was hoping there would be at least 1 or 2 replies saying try this and try that but I’ve tried everything there is to try at my end and I’m at a loss at what to try next.
    I won’t be buying any Canon products in the future because of the poor after sales service and outright lies about compatibility of one of their products with newer Operating Systems. My next Printer/Scanner/Copier all in one will be an Epson or a HP.

Maybe you are looking for

  • How can I get my old memory out to upgrade? one seems to be frozen

    I am trying to upgrade my iMac.  I have ordered the upgrade but am having trouble getting the old memory card out (one came out pretty easily, but the other won't move).  Also when I inserted the new memory card in the one that would come out, it did

  • Create User Id

    Hello All, I just installed Solaris Express, Developer Edition. And the only User Id is root. I am not sure that I want to practice and work in the root id. I am not sure, but to me it seems a bit risky. However, I do not know how to create a new use

  • Customer deposit interest

    HI SAP GURUS, How to calculate Customer security deposit interest calculation in the year end for closing of yaer end plz let me know urgent Thanks , jyotsna

  • Why doesn't "Elements 10 Editor only" allow the use of Nik Software plug ins??

    I was very excited yesterday when I noticed in the Apple App store that a version of Elements called "Elements 10 Editor only" was for sale.  Since I never use the Organizer this is perfect for me.  Unfortunately, it will not allow Nik software plugi

  • What has changed about the glass edge around FF4 in Win7?

    I generally don't have my FF4 (RC1) window maximized so I see the glass trim around the FF window. However, I've noticed that Microsoft tweaks that glass trim by having a lighter shade on towards the top of the sides and a darker shade on the lower p