Threads mess

hey people, I would like some help regarding how to convert 2 mini threads into one windown application, since I'm either getting erors or 3 seperate windows! :S
here are the 2 main threads:
import java.lang.*;
import java.util.Date;
import java.awt.*;
import java.awt.event.*;
public class ClockOut extends Frame implements Runnable
public ClockOut()
setLayout(new FlowLayout(FlowLayout.LEFT));
Date now = new Date();
String hrs = now.toString();
TextField nameTextField = new TextField(hrs.substring (10,19));
add(nameTextField);
public void run()
Frame f = new ClockOut();
f.setTitle("Main Window");
f.setSize(600,400);
f.setVisible(true);
for (int i = 0; i < 1000000000; i++){
repaint();
try
Thread.sleep(1000);
catch (InterruptedException e)
**Thread 2***
import java.awt.*;
import java.awt.event.*;
import java.util.Date;
public class TextComponents extends Frame implements ActionListener, Runnable {
private static final int horigap = 15;
private static final int vertigap = 10;
Button SearchButton;
Button closeButton;
     TextField nameTextField;
     TextField telTextField;
     TextField voidTF;
     Label telLabel;
     Label nameLabel;
     TextArea outnameTextArea;
public TextComponents () { //The constructor
setLayout(new FlowLayout(FlowLayout.CENTER, horigap, vertigap));
add(new Label("Telephone Directory"));
nameLabel = new Label("Name");
add(nameLabel);
nameTextField = new TextField("Enter Name...");
add(nameTextField);
telLabel = new Label("Telephone");
add(telLabel);
telTextField = new TextField("........");
add(telTextField);
SearchButton = new Button("Search");
SearchButton.addActionListener(this);
add(SearchButton);
outnameTextArea = new TextArea("Telephone");
add(outnameTextArea);
outnameTextArea.append (" NAME \t \t LOCATION \t \t TELEPHONE>");
outnameTextArea.append ("\n-Maria \t \t -Zabbar \t \t -21234567>");
outnameTextArea.append ("\n-Philip \t \t -Mosta \t \t -21564758>");
outnameTextArea.append ("\n-Julian \t \t -Qormi \t \t -21829283>");
closeButton = new Button("Close");
closeButton.addActionListener(this);
add(closeButton);
public void actionPerformed(ActionEvent e) {
     if (e.getSource() == closeButton) {
     setVisible(false);
     dispose();
     System.exit (0);
     } else if (e.getSource() == SearchButton) {
     String s = outnameTextArea.getText();
     String[] sAry = s.split(">");
for (int i = 0; i < sAry.length - 1; i++)
String test = sAry;
test.trim();
if (test.startsWith("\n-" + nameTextField.getText()))
String[] sAry2 = test.split("-");
telTextField.setText (sAry2[2]);
public void main run() {
Frame f = new TextComponents();
f.setTitle("Button Test");
f.setSize(800,600);
f.setVisible(true);
f.addWindowListener (new WindowAdapter ()
public void windowClosing(WindowEvent e)
System.exit(0);
try
Thread.sleep(1000);
catch (InterruptedException e)
|'m a new JAVA user, so any help will be greatly appreciated!

hey people, I would like some help regarding how to convert 2 mini threads into one windown application, since I'm either getting erors or 3 seperate windows! :S
here are the 2 main threads:
import java.lang.*;
import java.util.Date;
import java.awt.*;
import java.awt.event.*;
public class ClockOut extends Frame implements Runnable
public ClockOut()
setLayout(new FlowLayout(FlowLayout.LEFT));
Date now = new Date();
String hrs = now.toString();
TextField nameTextField = new TextField(hrs.substring (10,19));
add(nameTextField);
public void run()
Frame f = new ClockOut();
f.setTitle("Main Window");
f.setSize(600,400);
f.setVisible(true);
for (int i = 0; i < 1000000000; i++){
repaint();
try
Thread.sleep(1000);
catch (InterruptedException e)
**Thread 2***
import java.awt.*;
import java.awt.event.*;
import java.util.Date;
public class TextComponents extends Frame implements ActionListener, Runnable {
private static final int horigap = 15;
private static final int vertigap = 10;
Button SearchButton;
Button closeButton;
     TextField nameTextField;
     TextField telTextField;
     TextField voidTF;
     Label telLabel;
     Label nameLabel;
     TextArea outnameTextArea;
public TextComponents () { //The constructor
setLayout(new FlowLayout(FlowLayout.CENTER, horigap, vertigap));
add(new Label("Telephone Directory"));
nameLabel = new Label("Name");
add(nameLabel);
nameTextField = new TextField("Enter Name...");
add(nameTextField);
telLabel = new Label("Telephone");
add(telLabel);
telTextField = new TextField("........");
add(telTextField);
SearchButton = new Button("Search");
SearchButton.addActionListener(this);
add(SearchButton);
outnameTextArea = new TextArea("Telephone");
add(outnameTextArea);
outnameTextArea.append (" NAME \t \t LOCATION \t \t TELEPHONE>");
outnameTextArea.append ("\n-Maria \t \t -Zabbar \t \t -21234567>");
outnameTextArea.append ("\n-Philip \t \t -Mosta \t \t -21564758>");
outnameTextArea.append ("\n-Julian \t \t -Qormi \t \t -21829283>");
closeButton = new Button("Close");
closeButton.addActionListener(this);
add(closeButton);
public void actionPerformed(ActionEvent e) {
     if (e.getSource() == closeButton) {
     setVisible(false);
     dispose();
     System.exit (0);
     } else if (e.getSource() == SearchButton) {
     String s = outnameTextArea.getText();
     String[] sAry = s.split(">");
for (int i = 0; i < sAry.length - 1; i++)
String test = sAry;
test.trim();
if (test.startsWith("\n-" + nameTextField.getText()))
String[] sAry2 = test.split("-");
telTextField.setText (sAry2[2]);
public void main run() {
Frame f = new TextComponents();
f.setTitle("Button Test");
f.setSize(800,600);
f.setVisible(true);
f.addWindowListener (new WindowAdapter ()
public void windowClosing(WindowEvent e)
System.exit(0);
try
Thread.sleep(1000);
catch (InterruptedException e)
|'m a new JAVA user, so any help will be greatly appreciated!

Similar Messages

  • "Organize Mail by Thread" Messed Up?

    My Mail App has suddenly acquired a new look regarding threads. When there is a thread, it is bundling them up and it is hard to click on the latest. When I click on the latest email, instead of that appearing, it shows in the window, all of the emails in the thread. Then I have to click very carefully on the one I want. This window also including replies. I keep going to View in the Menu Bar and choosing "Collapse All Threads" but somehow the App keeps going back to "Organize by Thread". I don't like it and it is driving me crazy! What am I doing wrong?

    Also on my MB I can see the number of messages in the thread. On my MBP I cannot see this number.

  • Socket acting strangely

    I have a small chat app using a Flash XMLSocket that connects to a Java server.
    With the new update I know about handling the policy file request but I get the strangest thing happenning here.
    If I immediately send out the policy file right when the new socket is created (on the Java server obviously) everything seems to work fine.
    If I do a readLine from the incoming stream then send the policy file, flash seems to 'freeze'...by that I mean nothing happens...no socket is connected.
    It does attempt a connect twice since I have nothing listening on port 843.
    Here's a bit of code for the Java server:
    clSocket = serverSocket.accept();
    cs = new ClientSocket(clSocket);
    new ClientSocketThread(cs);
    cs.incoming = new BufferedReader(new InputStreamReader(cs.connection.getInputStream()));
       cs.outgoing = new PrintStream(cs.connection.getOutputStream(),true);
       String policy_response = "<?xml version=\"1.0\"?><cross-domain-policy><allow-access-from domain=\"*\" to-ports=\"6000\" secure=\"false\" /></cross-domain-policy>"+ "\0";
       String mes = "";
       if(cs.incoming.ready())
        mes = cs.readln();
       cs.outgoing.println(policy_response);Again...if I have it this way it won't work....flash just seems to sit there.
    If I place the 'send' with the policy response before any readLine then it will work but I it's problematic since I have to assume it's making a policy file request. I would rather do a check on the readLine and make sure.
    Anyone know what could be wrong here? Why can't I read from the socket first?
    Thanks in advance.

    This appears to be a cross-post of what appears in the other thread to be a threading mess of some sort.
    [_http://forum.java.sun.com/thread.jspa?threadID=5308482_|http://forum.java.sun.com/thread.jspa?threadID=5308482]

  • Multiple Thread of a xml publisher report - messed up fonts in the PDF out

    We are running 60000 invoices at a given time. In order to get the job done faster, the xml publisher report is set up to run mulitple threads. Each thread running unique set of invoices.
    I am seeing this issue, randomly.
    The pdf output of the invoice is having the fonts messed up. font 10 shows up as 14 and the invoice looks very bad.
    When i rerun the same set of invoices it looks absolutely normal.
    Also if I retrieve the xml output of the bad pdf and view it through the xmlpub desktop, it looks perfectly fine.
    Two times we saw this issue
    PRODUCTION
    - when i run 8 threads, i saw this issue in one of the thread and affected one invoice. (Production- 1 concurrent processing node+ 5 OPP processes and 5 threads + MEMORY is J:oracle.apps.fnd.cp.gsf.GSMServiceController:-mx3072m )
    TEST INSTANCE
    - when i ran with 16 threads, one of the thread running xml pub report affected all the invoices (UAT environment-1 concurrent processing node+ 7 OPP processes and 1 threads + MEMORY is J:oracle.apps.fnd.cp.gsf.GSMServiceController:-mx3072m )
    Looks like it is happening when running multiple threads.
    The formatting command or information is getting lost somewhere and the report is all messed up.
    Please advise.
    Thanks
    SJ

    Really appreciate your response. Can you pls give little more details.
    1] Are there any standard API's which I can use to submit XML publisher report from the JSP pages
    2]Is there any sample code snippet for any of the options that I can refer to..or pls let me know the API's, I will check on them
    Appreciate any help

  • Platform.runLater messes up my Thread.currentThread().getContextClassLoader()

    Hi,
    I have a plugin mechanism in my application. The plugins are defines by an interface and are loaded via URLClassLoader. A plugin can also have resources, loaded via ResourceBundle.getBundle.
    Whenever a plugin's method is called, I do this, before it is called:
    ClassLoader oldLoader = Thread.currentThread().getContextClassLoader();
    Thread.currentThread().setContextClassLoader(pluginClassLoaders.get(pluginClass.cast(proxy)));
    // Invoke plugin method
    Thread.currentThread().setContextClassLoader(oldLoader);
    The plugin methods are called in their own thread, that means, when I want to open a window I need to do it on the JavaFX Application Thread with Platform.runLater.
    The problem is, that in the run method of the Platform.runLater, my Thread.currentThread().getContextClassLoader() is not my URLClassLoader but the Application Classloader.
    Why I need this?
    I don't want the plugin developer to always keep in mind, that he has to pass the correct class loader (of his classes) into the ResourceBundle.getBundle method.
    Instead I thought I could rely on Thread.currentThread().getContextClassLoader(), which is set in the main application, to load the correct bundle.
    It would work, but not if I load the bundle inside the JavaFX Application Thread (but which makes the most sense for UI development).
    So my goal was to have a convenient method like:
    String getResource(String bundle, String key)
    return ResourceBundle.getBundle(bundle).getString(key),  Thread.currentThread().getContextClassLoader());
    To avoid passing the classloader every time.
    Any ideas on this?

    OK, found the problem.
    In data-sources.xml, there is a connection pool and a managed-data-source settings. If I set the data source in there - it works!! Seems these XML tags take preference above the datasource tag.
    This is how the data-sources.xml now looks that's been working:
    <?xml version = '1.0' standalone = 'yes'?>
    <data-sources xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:noNamespaceSchemaLocation="http://xmlns.oracle.com/oracleas/schema/data-sources-10_1.xsd" schema-major-version="10" schema-minor-version="1">
    <connection-pool name="jdev-connection-pool-MYDB">
    <connection-factory factory-class="com.mysql.jdbc.Driver" user="henkie" password="->DataBase_User_recGxQcVfghwCszzy_gfsRgwOrxutL2l" url="jdbc:mysql://localhost/mydb"/>
    </connection-pool>
    <managed-data-source name="jdev-connection-managed-MYDB" jndi-name="jdbc/MYDBDS" connection-pool-name="jdev-connection-pool-MYDB"/>
    </data-sources>

  • My MAC is running very slow and i am a complete novice and don't know what to do. i have had my Mac since 2008 and its probably in a mess. if you can help i would be grateful. EtreCheck version: 1.9.15 (52) Report generated 8 September 2014 09:09:26

    My MAC runs very slow. Rainbow wheel every time i try to go somewhere. Im a complete MAC novice. Only really use it for iTunes and email. the odd document here and there. The odd spreadsheet. Was brought up on a PC. I would imagine my system is in  mess. I think i downloaded that Mackeeper which i have just discovered was not a good idea. I found a thread about EtreCheck and it suggested i posted the report of my machine which i have done.I only have 2GB of space. Not sure how much i have left. My wife keeps putting photos on here like they are going out of fashion. Bought the machine in 2008 because everybody said you have a MAC. I've never really got to grips with it but at least it worked. Now it does not run very well at all. That spinning wheel is driving me mad. HELP please, never ever used a forum light this either so please go gentle on me. Cheers Paul
    EtreCheck version: 1.9.15 (52)
    Report generated 8 September 2014 09:09:26 BST
    Hardware Information: ?
      iMac (20-inch, Early 2008) (Verified)
      iMac - model: iMac8,1
      1 2.66 GHz Intel Core 2 Duo CPU: 2 cores
      2 GB RAM
    Video Information: ?
      ATI Radeon HD 2600 Pro - VRAM: 256 MB
      iMac 1680 x 1050
    System Software: ?
      OS X 10.9.4 (13E28) - Uptime: 0 days 0:31:45
    Disk Information: ?
      Hitachi HDP725032GLA380 disk0 : (320.07 GB)
      S.M.A.R.T. Status: Verified
      EFI (disk0s1) <not mounted>: 209.7 MB
      Macintosh HD (disk0s2) / [Startup]: 319.21 GB (117.84 GB free)
      Recovery HD (disk0s3) <not mounted>: 650 MB
    USB Information: ?
      Apple Inc. Built-in iSight
      Apple Inc. BRCM2046 Hub
      Apple Inc. Bluetooth USB Host Controller
      Bose Corporation Bose USB Audio
      Apple Computer, Inc. IR Receiver
    Gatekeeper: ?
      Mac App Store and identified developers
    Launch Daemons: ?
      [loaded] com.adobe.fpsaud.plist Support
      [loaded] com.macpaw.CleanMyMac2.Agent.plist Support
      [running] com.trusteer.rooks.rooksd.plist Support
      [loaded] net.sourceforge.MonolingualHelper.plist Support
    Launch Agents: ?
      [running] com.trusteer.rapport.rapportd.plist Support
    User Login Items: ?
      iTunesHelper
    Internet Plug-ins: ?
      Google Earth Web Plug-in: Version: 5.1 Support
      Default Browser: Version: 537 - SDK 10.9
      Flip4Mac WMV Plugin: Version: 3.2.0.16   - SDK 10.8 Support
      OfficeLiveBrowserPlugin: Version: 12.3.6 Support
      Silverlight: Version: 5.1.10411.0 - SDK 10.6 Support
      FlashPlayer-10.6: Version: 14.0.0.145 - SDK 10.6 Support
      AmazonMP3DownloaderPlugin101749: Version: AmazonMP3DownloaderPlugin 1.0.17 - SDK 10.4 Support
      Flash Player: Version: 14.0.0.145 - SDK 10.6 Outdated! Update
      iPhotoPhotocast: Version: 7.0
      QuickTime Plugin: Version: 7.7.3
      eMusicRemote: Version: (null) Support
      eMusic: Version: Unknown
    Audio Plug-ins: ?
      BluetoothAudioPlugIn: Version: 1.0 - SDK 10.9
      AirPlay: Version: 2.0 - SDK 10.9
      AppleAVBAudio: Version: 203.2 - SDK 10.9
      iSightAudio: Version: 7.7.3 - SDK 10.9
    iTunes Plug-ins: ?
      Quartz Composer Visualizer: Version: 1.4 - SDK 10.9
    3rd Party Preference Panes: ?
      Flash Player  Support
      Flip4Mac WMV  Support
      Trusteer Endpoint Protection  Support
    Time Machine: ?
      Time Machine not configured!
    Top Processes by CPU: ?
          2% iTunes
          2% WindowServer
          0% coreaudiod
          0% fontd
          0% rapportd
    Top Processes by Memory: ?
      178 MB Finder
      133 MB com.apple.WebKit.WebContent
      109 MB iTunes
      92 MB Safari
      63 MB com.apple.quicklook.satellite
    Virtual Memory Information: ?
      24 MB Free RAM
      821 MB Active RAM
      807 MB Inactive RAM
      291 MB Wired RAM
      338 MB Page-ins
      680 KB Page-outs

    1. This procedure is a diagnostic test. It changes nothing, for better or worse, and therefore will not, in itself, solve the problem. But with the aid of the test results, the solution may take a few minutes, instead of hours or days.
    Don't be put off merely by the seeming complexity of these instructions. The process is much less complicated than the description. You do harder tasks with the computer all the time.
    2. If you don't already have a current backup, back up all data before doing anything else. The backup is necessary on general principle, not because of anything in the test procedure. Backup is always a must, and when you're having any kind of trouble with the computer, you may be at higher than usual risk of losing data, whether you follow these instructions or not.
    There are ways to back up a computer that isn't fully functional. Ask if you need guidance.
    3. Below are instructions to run a UNIX shell script, a type of program. As I wrote above, it changes nothing. It doesn't send or receive any data on the network. All it does is to generate a human-readable report on the state of the computer. That report goes nowhere unless you choose to share it. If you prefer, you can read it yourself without disclosing the contents to me or anyone else.
    You should be wondering whether you can believe me, and whether it's safe to run a program at the behest of a stranger. In general, no, it's not safe and I don't encourage it.
    In this case, however, there are a couple of ways for you to decide whether the program is safe without having to trust me. First, you can read it. Unlike an application that you download and click to run, it's transparent, so anyone with the necessary skill can verify what it does.
    You may not be able to understand the script yourself. But variations of the script have been posted on this website thousands of times over a period of years. The site is hosted by Apple, which does not allow it to be used to distribute harmful software. Any one of the millions of registered users could have read the script and raised the alarm if it was harmful. Then I would not be here now and you would not be reading this message.
    Nevertheless, if you can't satisfy yourself that these instructions are safe, don't follow them. Ask for other options.
    4. Here's a summary of what you need to do, if you choose to proceed:
    ☞ Copy a line of text in this window to the Clipboard.
    ☞ Paste into the window of another application.
    ☞ Wait for the test to run. It usually takes a few minutes.
    ☞ Paste the results, which will have been copied automatically, back into a reply on this page.
    The sequence is: copy, paste, wait, paste again. You don't need to copy a second time. Details follow.
    5. You may have started the computer in "safe" mode. Preferably, these steps should be taken in “normal” mode, under the conditions in which the problem is reproduced. If the system is now in safe mode and works well enough in normal mode to run the test, restart as usual. If you can only test in safe mode, do that.
    6. If you have more than one user, and the one affected by the problem is not an administrator, then please run the test twice: once while logged in as the affected user, and once as an administrator. The results may be different. The user that is created automatically on a new computer when you start it for the first time is an administrator. If you can't log in as an administrator, test as the affected user. Most personal Macs have only one user, and in that case this section doesn’t apply. Don't log in as root.
    7. The script is a single long line, all of which must be selected. You can accomplish this easily by triple-clicking anywhere in the line. The whole line will highlight, though you may not see all of it in the browser window, and you can then copy it. If you try to select the line by dragging across the part you can see, you won't get all of it.
    Triple-click anywhere in the line of text below on this page to select it:
    PATH=/usr/bin:/bin:/usr/sbin:/sbin:/usr/libexec;clear;cd;p=(Software Hardware Memory Diagnostics Power FireWire Thunderbolt USB Fonts SerialATA 4 1000 25 5120 KiB/s 1024 85 \\b%% 20480 1 MB/s 25000 ports ' com.clark.\* \*dropbox \*GoogleDr\* \*k.AutoCAD\* \*k.Maya\* vidinst\* ' DYLD_INSERT_LIBRARIES\ DYLD_LIBRARY_PATH -86 "` route -n get default|awk '/e:/{print $2}' `" 25 N\\/A down up 102400 25600 recvfrom sendto CFBundleIdentifier 25 25 25 1000 MB com.apple.AirPortBaseStationAgent 464843899 51 5120 files );N5=${#p[@]};p[N5]=` networksetup -listnetworkserviceorder|awk ' NR>1 { sub(/^\([0-9]+\) /,"");n=$0;getline;} $NF=="'${p[26]}')" { sub(/.$/,"",$NF);print n;exit;} ' `;f=('\n%s: %s\n' '\n%s\n\n%s\n' '\nRAM details\n%s\n' %s\ %s '%s\n-\t%s\n' );S0() { echo ' { q=$NF+0;$NF="";u=$(NF-1);$(NF-1)="";gsub(/^ +| +$/,"");if(q>='${p[$1]}') printf("%s (UID %s) is using %s '${p[$2]}'",$0,u,q);} ';};s=(' /^ *$|CSConfigDot/d;s/^ */   /;s/[-0-9A-Fa-f]{22,}/UUID/g;s/(ochat)\.[^.]+(\..+)/\1\2/;/Shared/!s/\/Users\/[^/]+/~/g ' ' s/^ +//;/de: S|[nst]:/p;' ' {sub(/^ +/,"")};/er:/;/y:/&&$2<'${p[10]} ' 1s/://;3,6d;/[my].+:/d;s/^ {4}//;H;${ g;s/\n$//;/s: [^EO]|x([^08]|02[^F]|8[^0])/p;} ' ' 5h;6{ H;g;/P/!p;} ' ' ($1~/^Cy/&&$3>'${p[11]}')||($1~/^Cond/&&$2!~/^N/) ' ' /:$/{ N;/:.+:/d;s/ *://;b0'$'\n'' };/^ *(V.+ [0N]|Man).+ /{ s/ 0x.... //;s/[()]//g;s/(.+: )(.+)/ (\2)/;H;};$b0'$'\n'' d;:0'$'\n'' x;s/\n\n//;/Apple[ ,]|Genesy|Intel|SMSC/d;s/\n.*//;/\)$/p;' ' s/^.*C/C/;H;${ g;/No th|pms/!p;} ' '/= [^GO]/p' '{$1=""};1' ' /Of/!{ s/^.+is |\.//g;p;} ' ' $0&&!/ / { n++;print;} END { if(n<200) print "com.apple.";} ' ' $3~/[0-9]:[0-9]{2}$/ { gsub(/:[0-9:a-f]{14}/,"");} { print|"tail -n'${p[12]}'";} ' ' NR==2&&$4<='${p[13]}' { print $4;} ' ' END { $2/=256;if($2>='${p[15]}') print int($2) } ' ' NR!=13{next};{sub(/[+-]$/,"",$NF)};'"`S0 21 22`" 'NR!=2{next}'"`S0 37 17`" ' NR!=5||$8!~/[RW]/{next};{ $(NF-1)=$1;$NF=int($NF/10000000);for(i=1;i<=3;i++){$i="";$(NF-1-i)="";};};'"`S0 19 20`" 's:^:/:p' '/\.kext\/(Contents\/)?Info\.plist$/p' 's/^.{52}(.+) <.+/\1/p' ' /Launch[AD].+\.plist$/ { n++;print;} END { print "'${p[41]}'";if(n<200) print "/System/";} ' '/\.xpc\/(Contents\/)?Info\.plist$/p' ' NR>1&&!/0x|\.[0-9]+$|com\.apple\.launchctl\.(Aqua|Background|System)$|'${p[41]}'/ { print $3;} ' ' /\.(framew|lproj)|\):/d;/plist:|:.+(Mach|scrip)/s/:[^:]+//p ' '/^root$/p' ' !/\/Contents\/.+\/Contents|Applic|Autom|Frameworks/&&/Lib.+\/Info.plist$/ { n++;print;} END { if(n<1100) print "/System/";} ' '/^\/usr\/lib\/.+dylib$/p' ' /Temp|emac/{next};/(etc|Preferences|Launch[AD].+)\// { sub(".(/private)?","");n++;print;} END { print "'${p[41]}'.plist\t'${p[42]}'";if(n<500) print "Launch";} ' ' /\/(Contents\/.+\/Contents|Frameworks)\/|\.wdgt\/.+\.([bw]|plu)/d;p;' 's/\/(Contents\/)?Info.plist$//;p' ' { gsub("^| |\n","\\|\\|kMDItem'${p[35]}'=");sub("^...."," ") };1 ' p '{print $3"\t"$1}' 's/\'$'\t''.+//p' 's/1/On/p' '/Prox.+: [^0]/p' '$2>'${p[43]}'{$2=$2-1;print}' ' BEGIN { i="'${p[26]}'";M1='${p[16]}';M2='${p[18]}';M3='${p[31]}';M4='${p[32]}';} !/^A/{next};/%/ { getline;if($5<M1) a="user "$2"%, system "$4"%";} /disk0/&&$4>M2 { b=$3" ops/s, "$4" blocks/s";} $2==i { if(c) { d=$3+$4+$5+$6;next;};if($4>M3||$6>M4) c=int($4/1024)" in, "int($6/1024)" out";} END { if(a) print "CPU: "a;if(b) print "I/O: "b;if(c) print "Net: "c" (KiB/s)";if(d) print "Net errors: "d" packets/s";} ' ' /r\[0\] /&&$NF!~/^1(0|72\.(1[6-9]|2[0-9]|3[0-1])|92\.168)\./ { print $NF;exit;} ' ' !/^T/ { printf "(static)";exit;} ' '/apsd|BKAg|OpenD/!s/:.+//p' ' (/k:/&&$3!~/(255\.){3}0/ )||(/v6:/&&$2!~/A/ ) ' ' $1~"lR"&&$2<='${p[25]}';$1~"li"&&$3!~"wpa2";' ' BEGIN { FS=":";p="uniq -c|sed -E '"'s/ +\\([0-9]+\\)\\(.+\\)/\\\2 x\\\1/;s/x1$//'"'";} { n=split($3,a,".");sub(/_2[01].+/,"",$3);print $2" "$3" "a[n]$1|p;b=b$1;} END { close(p) if(b) print("\n\t* Code injection");} ' ' NR!=4{next} {$NF/=10240} '"`S0 27 14`" ' END { if($3~/[0-9]/)print$3;} ' ' BEGIN { L='${p[36]}';} !/^[[:space:]]*(#.*)?$/ { l++;if(l<=L) f=f"\n   "$0;} END { F=FILENAME;if(!F) exit;if(!f) f="\n   [N/A]";"file -b "F|getline T;if(T!~/^(AS.+ (En.+ )?text$|(Bo|PO).+ sh.+ text ex)/) F=F" ("T")";printf("\nContents of %s\n%s\n",F,f);if(l>L) printf("\n   ...and %s more line(s)\n",l-L);} ' ' /^ +[NP].+ =/h;/^( +D.+[{]|[}])/{ g;s/.+= //p;};' 's/0/Off/p' ' END{print NR} ' ' /id: N|te: Y/{i++} END{print i} ' ' / / { print "'"${p[28]}"'";exit;};1;' '/ en/!s/\.//p' ' NR!=13{next};{sub(/[+-M]$/,"",$NF)};'"`S0 39 40`" ' $10~/\(L/&&$9!~"localhost" { sub(/.+:/,"",$9);print $1": "$9;} ' '/^ +r/s/.+"(.+)".+/\1/p' 's/(.+\.wdgt)\/(Contents\/)?Info\.plist$/\1/p' 's/^.+\/(.+)\.wdgt$/\1/p' ' /l: /{ /DVD/d;s/.+: //;b0'$'\n'' };/s: /{ /V/d;s/^ */- /;H;};$b0'$'\n'' d;:0'$'\n'' x;/APPLE [^:]+$/d;p;' ' /^find: /d;p;' "`S0 44 45`" );c1=(system_profiler pmset\ -g nvram fdesetup find syslog df vm_stat sar ps sudo\ crontab sudo\ iotop top pkgutil 'PlistBuddy 2>&1 -c "Print' whoami cksum kextstat launchctl sudo\ launchctl crontab 'sudo defaults read' stat lsbom mdfind ' for i in ${p[24]};do ${c1[18]} ${c2[27]} $i;done;' defaults\ read scutil sudo\ dtrace sudo\ profiles sed\ -En awk /S*/*/P*/*/*/C*/*/airport networksetup mdutil sudo\ lsof test );c2=(com.apple.loginwindow\ LoginHook '" /L*/P*/loginw*' '" L*/P*/*loginit*' 'L*/Ca*/com.ap*.Saf*/E*/* -d 1 -name In*t -exec '"${c1[14]}"' :CFBundleDisplayName" {} \;|sort|uniq' '~ $TMPDIR.. \( -flags +sappnd,schg,uappnd,uchg -o ! -user $UID -o ! -perm -600 \)' '.??* -path .Trash -prune -o -type d -name *.app -print -prune' :${p[35]}\" :Label\" '{/,}L*/{Con,Pref}* -type f ! -size 0 -name *.plist -exec plutil -s {} \;' "-f'%N: %l' Desktop L*/Keyc*" therm sysload boot-args status " -F '\$Time \$Message' -k Sender kernel -k Message Req 'bad |Beac|caug|dead[^bl]|FAIL|fail|GPU |hfs: Ru|inval|jnl:|last value [1-9]|n Cause: -|NVDA\(|pagin|proc: t|Roamed|rror|ssert|Thrott|tim(ed? ?|ing )o|WARN' -k Message Rne 'Goog|ksadm|SMC:| VALI|xpma' -o -k Sender fseventsd -k Message Req 'SL' " '-du -n DEV -n EDEV 1 10' 'acrx -o comm,ruid,%cpu' '-t1 10 1' '-f -pfc /var/db/r*/com.apple.*.{BS,Bas,Es,J,OSXU,Rem,up}*.bom' '{/,}L*/Lo*/Diag* -type f -regex .\*[cgh] ! -name *ag \( -exec grep -lq "^Thread c" {} \; -exec printf \* \; -o -true \) -execdir stat -f:%Sc:%N -t%F {} \;|sort -t: -k2 |tail -n'${p[38]} '-L {/{S*/,},}L*/Lau* -type f' '-L /{S*/,}L*/StartupItems -type f -exec file {} +' '-L /S*/L*/{C*/Sec*A,E}* {/,}L*/{A*d,Ca*/*/Ex,Co{mpon,reM},Ex,Inter,iTu*/*P,Keyb,Mail/B,Pr*P,Qu*T,Scripti,Sec,Servi,Spo,Widg}* -path \\*s/Resources -prune -o -type f -name Info.plist' '/usr/lib -type f -name *.dylib' `awk "${s[31]}"<<<${p[23]}` "/e*/{auto,{cron,fs}tab,hosts,{[lp],sy}*.conf,pam.d/*,ssh{,d}_config,*.local} {,/usr/local}/etc/periodic/*/* /L*/P*{,/*}/com.a*.{Bo,sec*.ap}*t /S*/L*/Lau*/*t .launchd.conf" list getenv /Library/Preferences/com.apple.alf\ globalstate --proxy '-n get default' -I --dns -getdnsservers\ "${p[N5]}" -getinfo\ "${p[N5]}" -P -m\ / '' -n1 '-R -l1 -n1 -o prt -stats command,uid,prt' '--regexp --only-files --files com.apple.pkg.*|sort|uniq' -kl -l -s\ / '-R -l1 -n1 -o mem -stats command,uid,mem' '+c0 -i4TCP:0-1023' com.apple.dashboard\ layer-gadgets '-d /L*/Mana*/$USER&&echo On' '-app Safari WebKitDNSPrefetchingEnabled' "+c0 -l|awk '{print(\$1,\$3)}'|sort|uniq -c|sort -n|tail -1|awk '{print(\$2,\$3,\$1)}'" );N1=${#c2[@]};for j in {0..9};do c2[N1+j]=SP${p[j]}DataType;done;N2=${#c2[@]};for j in 0 1;do c2[N2+j]="-n ' syscall::'${p[33+j]}':return { @out[execname,uid]=sum(arg0) } tick-10sec { trunc(@out,1);exit(0);} '";done;l=(Restricted\ files Hidden\ apps 'Elapsed time (s)' POST Battery Safari\ extensions Bad\ plists 'High file counts' User Heat System\ load boot\ args FileVault Diagnostic\ reports Log 'Free space (MiB)' 'Swap (MiB)' Activity 'CPU per process' Login\ hook 'I/O per process' Mach\ ports kexts Daemons Agents launchd Startup\ items Admin\ access Root\ access Bundles dylibs Apps Font\ issues Inserted\ dylibs Firewall Proxies DNS TCP/IP Wi-Fi Profiles Root\ crontab User\ crontab 'Global login items' 'User login items' Spotlight Memory Listeners Widgets Parental\ Controls Prefetching SATA Descriptors );N3=${#l[@]};for i in 0 1 2;do l[N3+i]=${p[5+i]};done;N4=${#l[@]};for j in 0 1;do l[N4+j]="Current ${p[29+j]}stream data";done;A0() { id -G|grep -qw 80;v[1]=$?;((v[1]==0))&&sudo true;v[2]=$?;v[3]=`date +%s`;clear >&-;date '+Start time: %T %D%n';};for i in 0 1;do eval ' A'$((1+i))'() { v=` eval "${c1[$1]} ${c2[$2]}"|'${c1[30+i]}' "${s[$3]}" `;[[ "$v" ]];};A'$((3+i))'() { v=` while read i;do [[ "$i" ]]&&eval "${c1[$1]} ${c2[$2]}" \"$i\"|'${c1[30+i]}' "${s[$3]}";done<<<"${v[$4]}" `;[[ "$v" ]];};A'$((5+i))'() { v=` while read i;do '${c1[30+i]}' "${s[$1]}" "$i";done<<<"${v[$2]}" `;[[ "$v" ]];};';done;A7(){ v=$((`date +%s`-v[3]));};B2(){ v[$1]="$v";};for i in 0 1;do eval ' B'$i'() { v=;((v['$((i+1))']==0))||{ v=No;false;};};B'$((3+i))'() { v[$2]=`'${c1[30+i]}' "${s[$3]}"<<<"${v[$1]}"`;} ';done;B5(){ v[$1]="${v[$1]}"$'\n'"${v[$2]}";};B6() { v=` paste -d: <(printf "${v[$1]}") <(printf "${v[$2]}")|awk -F: ' {printf("'"${f[$3]}"'",$1,$2)} ' `;};B7(){ v=`grep -Fv "${v[$1]}"<<<"$v"`;};C0(){ [[ "$v" ]]&&echo "$v";};C1() { [[ "$v" ]]&&printf "${f[$1]}" "${l[$2]}" "$v";};C2() { v=`echo $v`;[[ "$v" != 0 ]]&&C1 0 $1;};C3() { v=`sed -E "$s"<<<"$v"`&&C1 1 $1;};for i in 1 2;do for j in 0 2 3;do eval D$i$j'(){ A'$i' $1 $2 $3; C'$j' $4;};';done;done;{ A0;D20 0 $((N1+1)) 2;D10 0 $N1 1;B0;C2 27;B0&&! B1&&C2 28;D12 15 37 25 8;A1 0 $((N1+2)) 3;C0;D13 0 $((N1+3)) 4 3;D23 0 $((N1+4)) 5 4;D13 0 $((N1+9)) 59 50;for i in 0 1 2;do D13 0 $((N1+5+i)) 6 $((N3+i));done;D13 1 10 7 9;D13 1 11 8 10;D22 2 12 9 11;D12 3 13 10 12;D23 4 19 44 13;D23 5 14 12 14;D22 6 36 13 15;D22 7 37 14 16;D23 8 15 38 17;D22 9 16 16 18;B1&&{ D22 35 49 61 51;D22 11 17 17 20;for i in 0 1;do D22 28 $((N2+i)) 45 $((N4+i));done;};D22 12 44 54 45;D22 12 39 15 21;A1 13 40 18;B2 4;B3 4 0 19;A3 14 6 32 0;B4 0 5 11;A1 17 41 20;B7 5;C3 22;B4 4 6 21;A3 14 7 32 6;B4 0 7 11;B3 4 0 22;A3 14 6 32 0;B4 0 8 11;B5 7 8;B1&&{ A2 19 26 23;B7 7;C3 23;};A2 18 26 23;B7 7;C3 24;A2 4 20 21;B7 6;B2 9;A4 14 7 52 9;B2 10;B6 9 10 4;C3 25;D13 4 21 24 26;B4 4 12 26;B3 4 13 27;A1 4 22 29;B7 12;B2 14;A4 14 6 52 14;B2 15;B6 14 15 4;B3 0 0 30;C3 29;A1 4 23 27;B7 13;C3 30;D13 24 24 32 31;D13 25 37 32 33;A2 23 18 28;B2 16;A2 16 25 33;B7 16;B3 0 0 34;B2 21;A6 47 21&&C0;B1&&{ D13 21 0 32 19;D13 10 42 32 40;D22 29 35 46 39;};D13 14 1 48 42;D12 34 43 53 44;D22 0 $((N1+8)) 51 32;D13 4 8 41 6;D12 26 28 35 34;D13 27 29 36 35;A2 27 32 39&&{ B2 19;A2 33 33 40;B2 20;B6 19 20 3;};C2 36;D23 33 34 42 37;B1&&D23 35 45 55 46;D23 32 31 43 38;D12 36 47 32 48;D13 20 42 32 41;D13 14 2 48 43;D13 4 5 32 1;D13 4 3 60 5;D12 26 48 49 49;B3 4 22 57;A1 26 46 56;B7 22;B3 0 0 58;C3 47;D22 4 4 50 0;D23 22 9 37 7;A7;C2 2;} 2>/dev/null|pbcopy;exit 2>&-
    Copy the selected text to the Clipboard by pressing the key combination command-C.
    8. Launch the built-in Terminal application in any of the following ways:
    ☞ Enter the first few letters of its name into a Spotlight search. Select it in the results (it should be at the top.)
    ☞ In the Finder, select Go ▹ Utilities from the menu bar, or press the key combination shift-command-U. The application is in the folder that opens.
    ☞ Open LaunchPad. Click Utilities, then Terminal in the icon grid.
    Click anywhere in the Terminal window and paste by pressing command-V. The text you pasted should vanish immediately. If it doesn't, press the return key.
    9. If you see an error message in the Terminal window such as "Syntax error" or "Event not found," enter
    exec bash
    and press return. Then paste the script again.
    10. If you're logged in as an administrator, you'll be prompted for your login password. Nothing will be displayed when you type it. You will not see the usual dots in place of typed characters. Make sure caps lock is off. Type carefully and then press return. You may get a one-time warning to be careful. If you make three failed attempts to enter the password, the test will run anyway, but it will produce less information. In most cases, the difference is not important. If you don't know the password, or if you prefer not to enter it, press the key combination control-C or just press return  three times at the password prompt. Again, the script will still run.
    If you're not logged in as an administrator, you won't be prompted for a password. The test will still run. It just won't do anything that requires administrator privileges.
    11. The test may take a few minutes to run, depending on how many files you have and the speed of the computer. A computer that's abnormally slow may take longer to run the test. While it's running, there will be nothing in the Terminal window and no indication of progress. Wait for the line
    [Process completed]
    to appear. If you don't see it within half an hour or so, the test probably won't complete in a reasonable time. In that case, close the Terminal window and report what happened. No harm will be done.
    12. When the test is complete, quit Terminal. The results will have been copied to the Clipboard automatically. They are not shown in the Terminal window. Please don't copy anything from there. All you have to do is start a reply to this comment and then paste by pressing command-V again.
    At the top of the results, there will be a line that begins with the words "Start time." If you don't see that, but instead see a mass of gibberish, you didn't wait for the "Process completed" message to appear in the Terminal window. Please wait for it and try again.
    If any private information, such as your name or email address, appears in the results, anonymize it before posting. Usually that won't be necessary.
    13. When you post the results, you might see an error message on the web page: "You have included content in your post that is not permitted," or "You are not authorized to post." That's a bug in the forum software. Please post the test results on Pastebin, then post a link here to the page you created.
    14. This is a public forum, and others may give you advice based on the results of the test. They speak only for themselves, and I don't necessarily agree with them.
    Copyright © 2014 by Linc Davis. As the sole author of this work, I reserve all rights to it except as provided in the Use Agreement for the Apple Support Communities website ("ASC"). Readers of ASC may copy it for their own personal use. Neither the whole nor any part may be redistributed.

  • Too long url error when emailing thread with replies

    There is apparently a bug in the "email thread with replies" feature.
    I tried emailing myself this thread and it returned this error:
    Request-URI Too Large
    The requested URL's length exceeds the capacity limit for this server.
    Apache/2.2.3 (Red Hat) Server at discussions.apple.com Port 80
    No surprise it did either. Look at what it was trying to send.
    http://discussions.apple.com/mailpost.jspa?messageID=4435127&toEmailName=me&toEm ailAddress=emailaddy%40someisp.net&fromEmailName=emailaddy&fromEmailAddress=emailaddy%40someother_isp&email Subject=AppleDiscussions%3A+Panther+security+update+2007%2F4+and+Airport+Extreme&originalMess age=The+following+was+posted+on+Apple+Discussions.%0D%0AOn+Fri+Apr+20+05%3A16%3A 47+CDT+2007%2C+WillParton+wrote%3A+%0D%0ASubject%3A+Panther+security+update+2007 %2F4+and+Airport+Extreme%0D%0A%0D%0AI%27ve+just+installed+the+2007%2F4+security+ update+and+it+seems+to+be+causing+wireless+connectivity+problems+with+my+Airport +Extreme+basestation.+On+power+up+my+Powerbook+G4+connects+to+my+Airport+Extreme +basetation+%28V5.6%29+successfully+but+looses+the+connection+after+a+period+of+ time+%2820-30+minutes%29.+Attempts+to+reconnect+%28using+WPA+Personal+security%2 9+result+in+a+message+stating+the+basestation+does+not+support+this+security+opt ion+%28which+it+obviously+does%29.%3Cbr%3E%3Cbr%3EAnyone+else+seen+any+similar+p roblems%3F%3Cbr%3E%3Cbr%3E%3Cspan+class%3Dotherinfo%3EPowerbook+G4+Titanium+++Ma c+OS+X+%2810.3.9%29+++%3C%2Fspan%3E%0D%0A%0D%0A%0D%0A----%0D%0AOn+Fri+Apr+20+07% 3A16%3A29+CDT+2007%2C+kathieg+wrote%3A+%0D%0ASubject%3A+Re%3A+Panther+security+u pdate+2007%2F4+and+Airport+Extreme%0D%0A%0D%0AInterestingly+enough%2C+I+too+expe rienced+connectivity+problems+once+I+ran+the+security+update.+I+have+two+compute rs+that+I+updated+last+night.+One+running+OS+10.4.9+and+the+other+running+10.3.9 .+They+both+use+Airport+%28not+extreme%29.+The+OS+10.4.9+had+no+problems+at+all+ connecting+via+airport.+The+OS+10.3.9+couldn%27t+see+the+network+at+all.+Followi ng+the+advice+of+another+poster%2C+I+removed+my+WEP+password.+I+wish+I+didn%27t+ have+to+do+that%2C+but+I+need+my+internet+connection+today%21%0D%0A%0D%0A----%0D %0AOn+Fri+Apr+20+07%3A51%3A37+CDT+2007%2C+Don_Michele1+wrote%3A+%0D%0ASubject%3A +Re%3A+Panther+security+update+2007%2F4+and+Airport+Extreme%0D%0A%0D%0ASimilar+p roblem+here%3A+after+install+of+sec+upd+4-2007+in+G3+iBook+800%2FPanther+a+kerne lpanic+is+appearing+after+waking+up+from+sleepmode.+paniclog+in+console+is+repor ting%3A%3Cbr%3E%3Cbr%3E%3Cbr%3E%22Unresolved+kernel+trap%28cpu+0%29%3A+0x300+-+D ata+access+DAR%3D0x0000000000000050+PC%3D0x000000000041D08C%3Cbr%3ELatest+crash+ info+for+cpu+0%3A%3Cbr%3E+++Exception+state+%28sv%3D0x2E0F4C80%29%3Cbr%3E++++++P C%3D0x0041D08C%3B+MSR%3D0x00009030%3B+DAR%3D0x00000050%3B+DSISR%3D0x40000000%3B+ LR%3D0x22FB74CC%3B+R1%3D0x0F4EB8D0%3B+XCP%3D0x0000000C+%280x300+-+Data+access%29 %3Cbr%3E++++++Backtrace%3A%3Cbr%3E+++++++++0x22FB74B8+0x00000000+0x00256EBC+0x00 257938+0x002531D8+0x00253040+0x0041D034+0x00408EA0+%3Cbr%3E+++++++++0x0040124C+0 x00405DE8+0x004080A0+0x00408034+0x0026A610+0x00035148+0x00035028+%3Cbr%3E++++++K ernel+loadable+modules+in+backtrace+%28with+dependencies%29%3A%3Cbr%3E+++++++++c om.apple.driver.AirPortFirmware%283.4.9%29%400x22fb6000%3Cbr%3E++++++++++++depen dency%3A+com.apple.driver.AppleAirPort%283.4.7%29%400x3ff000%3Cbr%3E+++++++++com .apple.driver.AppleAirPort%283.4.7%29%400x3ff000%3Cbr%3E++++++++++++dependency%3 A+com.apple.iokit.IONetworkingFamily%281.4.0%29%400x3e2000%3Cbr%3EProceeding+bac k+via+exception+chain%3A%3Cbr%3E+++Exception+state+%28sv%3D0x2E0F4C80%29%3Cbr%3E ++++++previously+dumped+as+%22Latest%22+state.+skipping...%3Cbr%3E+++Exception+s tate+%28sv%3D0x00956A00%29%3Cbr%3E++++++PC%3D0x00000000%3B+MSR%3D0x0000D030%3B+D AR%3D0x00000000%3B+DSISR%3D0x00000000%3B+LR%3D0x00000000%3B+R1%3D0x00000000%3B+X CP%3D0x00000000+%28Unknown%29............%22%3Cbr%3E%3Cbr%3ECan+anybody+help%3F% 0D%0A%0D%0A----%0D%0AOn+Sat+Apr+21+00%3A22%3A13+CDT+2007%2C+DIXIE+wrote%3A+%0D%0 ASubject%3A+Re%3A+Panther+security+update+2007%2F4+and+Airport+Extreme%0D%0A%0D% 0AIf+after+installing+Security+Update+2007-004+on+OS10.3.9+and+after+waking+from +Sleep+you+experience+a+kernel+panic+notification+%28black+pane%29+to+reboot+wit h+the+power+button+.........+do+the+following%3A%3Cbr%3E%3Cbr%3EReboot+....+then +apply+%2FApp%2FUtilities%2FDisk+Utility%2FRepair+Permissions+....+shut+down+... .+Reboot+while+holding+down+Command-Option-P-R+keys+together+until+the+computer+ chimes+three%283%29+individual+times+...+release+keys+to+complete+reboot+....+Re pair+Permissions+again+...+click+the+soft+Restart+....+Sleep+the+computer+then+w ake+it+up+....+the+kernel+panic+pane+should+be+gone.%3Cbr%3E%3Cbr%3EIt+worked+fo r+me+and+I+never+before+had+a+panic+pane+on+a+15%22FP+iMac%21+%3Cbr%3E%3Cbr%3EDI XIE+%3A%29+%3Cbr%3E%3Cbr%3E%3Cspan+class%3Dotherinfo%3E15%22iMacG4%2F800%2F60GHD %2F768MB-12%22PB%2F867%2F60GHD%2F1.12GB-G3%2F400%2F1GB+ +Mac+OS+X+%2810.3.9%29+  +AE+network%3C%2Fspan%3E%0D%0A%0D%0A----%0D%0AOn+Sat+Apr+21+12%3A17%3A40+CDT+200 7%2C+Don_Michele1+wrote%3A+%0D%0ASubject%3A+Re%3A+Panther+security+update+2007%2 F4+and+Airport+Extreme%0D%0A%0D%0AThanks+for+the+clue%2C+Dixie%2C+after+the+proc edure+it+seemed+to+work%2C+if+I+put+the+iBook+%3Cu%3Emanually%3C%2Fu%3E+to+sleep +and+%3Cu%3Ethen%3C%2Fu%3E+wake+it+up.+%3Cbr%3E%3Cbr%3EFor+some+reason+the+kerne l+panic+appears+again+after+waking+up%2C+when+I+let+the+iBook+%3Cu%3Eautomatical ly%3C%2Fu%3E+%28after+6+minutes%29+go+to+sleep.+What+a+hustle%21%3Cbr%3E%3Cbr%3E %3Cspan+class%3Dotherinfo%3EiBook+G3+800+ +Mac+OS+X+%2810.3.9%29+ +%3C%2Fspan%3E %3Cbr%3E%3Cbr%3Eupdate%3A+after+having+the+kernel+panic+again+after+automatic+sl eep+mode%2C+my+iBook+produces+a+kernel+panic+after+waking+up+again%2C+even+if+I+ had+closed+the+lid+or+had+put+it+manually+to+sleep.+No+advancement+at+all%21%0D% 0A%0D%0A----%0D%0AOn+Fri+Apr+20+09%3A19%3A56+CDT+2007%2C+dr.+te+wrote%3A+%0D%0AS ubject%3A+Re%3A+Panther+security+update+2007%2F4+and+Airport+Extreme%0D%0A%0D%0A Similar+on+my+iBook.+When+awaking+the+airport+menu+doesn´t+even+show+the+wireles s+networks.+After+restarting+Airport+works+well+until+the+next+time+in+suspend+m ode.%3Cbr%3E%3Cbr%3E%3Cspan+class%3Dotherinfo%3EiBook+G3+ +Mac+OS+X+%2810.3.9%29 + +%3C%2Fspan%3E%0D%0A%0D%0A----%0D%0AOn+Fri+Apr+20+17%3A09%3A28+CDT+2007%2C+Meg atokio+wrote%3A+%0D%0ASubject%3A+Re%3A+Panther+security+update+2007%2F4+and+AirP ort%0D%0A%0D%0Asame+here.%3Cbr%3Ei+have+a+2001+iBook+with+AirPort+card.%3Cbr%3Ea fter+this+update+the+reactivation+of+the+card+fails%2C+only+rebooting+helps.+%28 luckily+enough..%29%3Cbr%3E%3Cbr%3Ethis+is+what+the+system+log+says%3A%3Cbr%3E%3 Cbr%3E%3E%3E%3E%3Cbr%3EApr+20+22%3A47%3A29+localhost+kernel%3A+System+Wake%3Cbr% 3EApr+20+22%3A47%3A29+localhost+kernel%3A+Wake+event+0008%3Cbr%3EApr+20+22%3A47% 3A29+localhost+kernel%3A+AppleNMI+unmask+NMI%3Cbr%3EApr+20+22%3A47%3A29+localhos t+kernel%3A+ADB+present%3A8c%3Cbr%3EApr+20+22%3A47%3A29+localhost+kernel%3A+AirP ortDriver%3A+F%2FW+download+failed%3Cbr%3EApr+20+22%3A47%3A29+localhost+kextd%5B 84%5D%3A+a+different+version+of+dependency+extension+%2FSystem%2FLibrary%2FExten sions%2FAppleAirPort.kext+is+already+loaded%3Cbr%3EApr+20+22%3A47%3A29+localhost +kernel%3A+AirPortDriver%3A+F%2FW+download+failed%3Cbr%3E%3C%3C%3C%3Cbr%3E%3Cbr% 3EFirmware+download+failed.+I+hope+there+is+a+fix+very+fast.+%3Cbr%3E%3Cbr%3E+++ +++...+Kio+%21+%3Cbr%3E+++++++%3Cbr%3E%3Cbr%3E%3Cspan+class%3Dotherinfo%3EiBook+ G3+ +Mac+OS+X+%2810.3.9%29+ +%3C%2Fspan%3E%0D%0A%0D%0A----%0D%0AOn+Sat+Apr+21+15 %3A59%3A09+CDT+2007%2C+old+comm+guy+wrote%3A+%0D%0ASubject%3A+Re%3A+Panther+secu rity+update+2007%2F4+and+AirPort%0D%0A%0D%0AI+had+the+same+things+in+my+system+l og+after+the+update%2C+especially+the+FW+failure+to+load.++On+the+chance+that+th e+two+kernel+extensions+AppleAirPort.kext+and+AppleAirPort2.kext+might+be+in+a+c atfight%2C+I+removed+AppleAirPort2.kext+%28the+actually+older+file%29+from+the+e xtensions+folder+and+rebooted.++This+has+alleviated+the+no-airport+after+wakeup% 2C+at+what+price+I+do+not+know.%3Cbr%3E%3Cbr%3EThe+system+log+now+looks+like+thi s%2C+which+is+what+it+looked+like+before+the+update.%3Cbr%3E%3Cbr%3Elocalhost+ke rnel%3A+System+Sleep%3Cbr%3Elocalhost+kernel%3A+System+Wake%3Cbr%3Elocalhost+ker nel%3A+Wake+event+0008%3Cbr%3Elocalhost+kernel%3A+enableClockSpreading+returned+ with+0%3Cbr%3Elocalhost+kernel%3A+AppleNMI+unmask+NMI%3Cbr%3Elocalhost+kernel%3A +Sound+assertion+%220+%21%3D+err%22+failed+in+%22AppleLegacyAudio%2FAppleTexas2A udio%2FAppleTexas2Audio.cpp%22+at+line+960+goto+Exit%3Cbr%3Elocalhost+kernel%3A+ %10ADB+present%3A8c%3Cbr%3Elocalhost+kernel%3A+AirPortFirmware%3A+start+Sta+f%2F w+download%3Cbr%3Elocalhost+configd%5B115%5D%3A+executing+%2FSystem%2FLibrary%2F SystemConfiguration%2FKicker.bundle%2FContents%2FResources%2Fset-hostname%3Cbr%3 Elocalhost+configd%5B115%5D%3A+posting+notification+com.apple.system.config.netw ork_change%3Cbr%3E%3Cbr%3EThis+is+a+temporary+fix+with+unknown+consequences%2C+a nd+I+pass+the+information+on+as+another+hint+to+the+developers+in+Cupertino.%3Cb r%3E%3Cbr%3EBTW%2C+this+is+not+the+first+or+last+time+that+a+SW+bug+will+evade+t esting+and+make+it+to+the+wild%2C+no+matter+what+organization+is+involved.++Be+t hankful+they+are+as+few+and+far+between+as+they+are.%3Cbr%3E%3Cbr%3E%3Cspan+clas s%3Dotherinfo%3EG3+Blue%2F+Titanium+G4+ +Mac+OS+X+%2810.3.9%29+ +%3C%2Fspan%3E%0 D%0A%0D%0A----%0D%0AOn+Sat+Apr+21+16%3A35%3A06+CDT+2007%2C+Megatokio+wrote%3A+%0 D%0ASubject%3A+Re%3A+Panther+security+update+2007%2F4+and+AirPort%0D%0A%0D%0AHi+ old+comm+guy%2C%3Cbr%3E%3Cbr%3Ethis+is+exactly+as+things+look+like+on+my+ibook%2 7s+HD%2C+and+removing+one+.kext+seems+to+fix+the+problem.+Thanks+a+lot+for+this+ hint%21+Only+one+minor+problem+remains%2C+my+ibook+does+not+connect+with+the+%27 blessed%27+network+after+booting+or+wake+up%2C+i+currently+must+select+my+networ k+each+time.+But+it+is+95%25+fixed.+%3B-%29%3Cbr%3E%3Cbr%3E++...+kio+%21%3Cbr%3E %3Cbr%3E%3E+I+had+the+same+things+in+my+system+log+after+the%3Cbr%3E%3E+update%2 C+especially+the+FW+failure+to+load.++On+the%3Cbr%3E%3E+chance+that+the+two+kern el+extensions%3Cbr%3E%3E+AppleAirPort.kext+and+AppleAirPort2.kext+might+be+in%3C br%3E%3E+a+catfight%2C+I+removed+AppleAirPort2.kext+%28the%3Cbr%3E%3E+actually+o lder+file%29+from+the+extensions+folder+and%3Cbr%3E%3E+rebooted.++This+has+allev iated+the+no-airport+after%3Cbr%3E%3E+wakeup%2C+at+what+price+I+do+not+know.%0D% 0A%0D%0A----%0D%0AOn+Sat+Apr+21+20%3A15%3A31+CDT+2007%2C+old+comm+guy+wrote%3A+% 0D%0ASubject%3A+Re%3A+Panther+security+update+2007%2F4+and+AirPort%0D%0A%0D%0AMy +TiBook+was+doing+that+after+I+moved+from+10.2.8+to+10.3.9%2C+so+I+thought+nothi ng+of+it.+++However%2C+for+a+few+wakeups+after+removing+the+kext+file%2C+it+did+ connect+automatically+to+my+AirPort+on+wakeup%2C+as+it+had+done+in+10.2.8.++My+p reference+is+to+connect+to+my+own+base+station%2C+but+apparently+I+will+have+to+ continue+to+manually+select+the+station+when+I+open+up+the+book.++Not+really+a+p roblem.%3Cbr%3E%3Cbr%3E%3Cspan+class%3Dotherinfo%3EG3+Blue%2F+Titanium+G4+++Mac+ OS+X+%2810.3.9%29+++%3C%2Fspan%3E%0D%0A%0D%0A----%0D%0AOn+Sun+Apr+22+01%3A24%3A5 2+CDT+2007%2C+rwsniffin+wrote%3A+%0D%0ASubject%3A+Re%3A+Panther+security+update+ 2007%2F4+and+AirPort%0D%0A%0D%0AI+haved+the+original+PowerBook+%28with+upgrades% 29+and+had+the+same+problem+%28no+airport+connection+after+wake-up%29+after+this +morning%27s+security+update.+I+took+old+comm+guy%27s+suggestion+and+removed+the +%2FSystem%2FLibrary%2FExtensions%2FAppleAirPort2.kext+file.+It+took+much+longer +than+usual+to+boot+but+seems+to+work+fine.+I%27m+running+in+automatic+and+it+co nnects+to+the+only+network+it+can+find+in+my+house+without+any+intervention+from +me.+Thanks+old+comm+guy%21%0D%0A%0D%0A----%0D%0AOn+Sun+Apr+22+18%3A05%3A50+CDT+ 2007%2C+Victor+Oder+wrote%3A+%0D%0ASubject%3A+Re%3A+Panther+security+update+2007 %2F4+and+AirPort%0D%0A%0D%0AThanks%21%3Cbr%3EiBook+G3+300+is+not+my+most+used+Ma c%2C+but+the+only+one+running+Panther.%3Cbr%3ESo+I+wasn%27t+going+to+spend+a+lot +of+time+on+it.%3Cbr%3ETrashing+Appleairport2.kext+fixed+it.+I+did+nothing+furth er.%3Cbr%3EStill+there+after+sleep.+It+also+reads+out+the+network+name+when+I+wa ke+it+up.+It+hasn%27t+done+that+before.%3Cbr%3EThe+problem+is+solved+for+me.%3Cb r%3E%3Cbr%3E%3Cspan+class%3Dotherinfo%3EiMac+G5+ +Mac+OS+X+%2810.4.3%29+ +SE%2F3 0%2C+iMac+G3+700%2C+PBG4+Ti%2C+iBook+Tangerine.%3C%2Fspan%3E%0D%0A%0D%0A----%0D% 0AOn+Tue+May+01+01%3A21%3A53+CDT+2007%2C+ilaya+wrote%3A+%0D%0ASubject%3A+Re%3A+P anther+security+update+2007%2F4+and+AirPort%0D%0A%0D%0AThanks+for+the+method+to+ fix+the+security+update+snafu.%3Cbr%3E%3Cbr%3EI+found+the+kernel+after+a+while.+ For+others+not+as+savvy+as+you%2C+I+would+note+that+the+airport+extension+kernel +is+in+the+library+folder%2C+as+opposed+to+the+system+folder.%3Cbr%3E%3Cbr%3EI+h ope+this+does+it.%3Cbr%3E%3Cbr%3EI+guess+we+just+got+a+taste+of+what+windows+use rs+eat+too+often%2C+sloppy+work.%3Cbr%3E%3Cbr%3ETom%0D%0A%0D%0A----%0D%0AOn+Tue+ Apr+24+15%3A26%3A17+CDT+2007%2C+old+comm+guy+wrote%3A+%0D%0ASubject%3A+Re%3A+Pan ther+security+update+2007%2F4+and+AirPort%0D%0A%0D%0AJust+an+update+on+the+Apple Airport2.kext+removal+fix+on+my+TiBook.++As+originally+reported%2C+I+tried+the+f ix+at+about+1200+PDT+on+the+21st.++After+rebooting+at+that+time%2C+I+have+not+ex perienced+the+inability+to+connect+to+my+AirPort+network+after+wakeup%2C+and+mos t+of+the+time+the+reconnection+has+been+without+manual+intervention%2C+which+was +always+required+after+the+10.2.8+to+10.3.9+upgrade.%3Cbr%3E%3Cbr%3EAs+noted+ori ginally%2C+this+is+an+unknown+consequences+fix%2C+but+at+least+for+the+moment+it +has+gotten+me+back+in+the+water+for+three+days+now.%0D%0A%0D%0A----%0D%0AOn+Sat +Apr+21+13%3A35%3A26+CDT+2007%2C+Brianna+Sollandry+wrote%3A+%0D%0ASubject%3A+Re% 3A+Panther+security+update+2007%2F4+and+Airport+Extreme%0D%0A%0D%0AI%27ll+chime+ in+with+a+%22me+too%22.%3Cbr%3E%3Cbr%3EPowerbook+G4+with+10.3.9+and+plain+old+%2 8non+extreme%29+Airport+card%3Cbr%3EAfter+a+fresh+boot%2C+wireless+networks+show +up+on+my+Airport+menu.+I+can+connect+and+all+is+well.%3Cbr%3EBut+woe+betide+me+ if+the+computer+ever+goes+to+sleep%3A+after+it+wakes+up%2C+no+wireless+networks+ are+available.%3Cbr%3E%3Cbr%3E-+Turning+on+and+off+Airport%3A+no+effect%3Cbr%3E- +Logging+out+and+back+on%3A+no+effect%3Cbr%3E-+Reboot%3A+wireless+networks+are+a vailable+again+-+until+the+next+wakeup+from+sleep.%3Cbr%3E%3Cbr%3EThis+is+brand+ new+behavior+starting+immediately+after+installing+Security+Update+2007%2F4.%3Cb r%3E%3Cbr%3ESigh.%3Cbr%3E%3Cbr%3E%3Cspan+class%3Dotherinfo%3EPowerbook+G4+ +Mac+ OS+X+%2810.3.9%29+ +%3C%2Fspan%3E%0D%0A%0D%0A----%0D%0AOn+Tue+Apr+24+23%3A11%3A1 0+CDT+2007%2C+dbsantana+wrote%3A+%0D%0ASubject%3A+Re%3A+Panther+security+update+ 2007%2F4+and+Airport+Extreme%0D%0A%0D%0Athat+is+exactly+what+I+get+since+2007%2F 004+security+update.%3Cbr%3E%3Cbr%3EI+did+take+the+2.ktext+out+of+the+folder+but +am+unsure+whether+to+actually+delete+it.+In+any+event+it+hasn%27t+changed+anyth ing.%3Cbr%3E%3Cbr%3EIt%27s+very+annoying+to+have+to+reboot+every+time+the+comput er+goes+to+sleep.%0D%0A%0D%0A----%0D%0AOn+Fri+Apr+20+09%3A20%3A00+CDT+2007%2C+Wa lmo+wrote%3A+%0D%0ASubject%3A+Re%3A+Panther+security+update+2007%2F4+and+Airport +Extreme%0D%0A%0D%0AReading+about+the+problems+this+update+has+created+makes+me+ feel+fortunate+that+I+can%27t+even+load+it%21++Each+time+I+attempt+to+go+through +the+process+I+get+a+warning+sign+and+a+message+that+reads%2C%3Ci%3E+%22You+cann ot+install+this+software+on+this+volume+%28HD%29.++This+volume+does+not+meet+the +requirements+for+this+update.%22%3C%2Fi%3E++I%27m+still+operating+OS+X+10.3.9%2 C+but+this+update+is+supposed+to+cover+it.++Do+you+think+there+will+be+an+update +to+the+update%3F%3Cbr%3E%3Cbr%3E%3Cspan+class%3Dotherinfo%3EG4+Powerbook+ +Mac+ OS+X+%2810.3.9%29+ +%3C%2Fspan%3E%0D%0A%0D%0A----%0D%0AOn+Fri+Apr+20+10%3A42%3A5 1+CDT+2007%2C+Don_Michele1+wrote%3A+%0D%0ASubject%3A+Re%3A+Panther+security+upda te+2007%2F4+and+Airport+Extreme%0D%0A%0D%0AHope+there+will+be+an+update+for+the+ update.+the+interesting+thing+is%2C+if+after+a+reboot%2C+the+network+is+%3Cu%3En ot%3C%2Fu%3E+available%2C+there+will+be+no+probs+with+wake+up+after+sleep.+But+i f+Airport+networking+is+active%2C+immediate+crash+after+wake+up.%3Cbr%3E%3Cbr%3E As+I+told+before%2C+the+crashreporter+is+pointing+to%3A%3Cbr%3Ecom.apple.driver. AirPortFirmware%283.4.9%29+%400x22fb6000%3Cbr%3Ecom.apple.driver.AppleAirPort%28 3.4.7%29%400x3+ff000%3Cbr%3Ecom.apple.iokit.IONetworkingFamily%281.4.0+%29%400x3 e2000%3Cbr%3E%3Cbr%3ESo+I%27m+quite+sure%2C+the+sec+upd+4-2007+killed+my+airport +and+network+drivers%21%3Cbr%3E%3Cbr%3EBTW%3A+Apple+Customer+support+Germany+rec ommends+to+reinstall+the+complete+system%2C+great+idea.%0D%0A%0D%0A----%0D%0AOn+ Sat+Apr+21+11%3A18%3A33+CDT+2007%2C+CBcards+wrote%3A+%0D%0ASubject%3A+Re%3A+Pant her+security+update+2007%2F4+and+Airport+Extreme%0D%0A%0D%0AI+have+tried+to+down load+this+security+update+a+few+times+and+it+continually+stalls+while+it+is+in+p rogress.+Now+that+I+have+read+all+of+your+problems+related+to+it%2C+I+am+not+goi ng+to+bother+with+it+anymore.+Thankfully%2C+it+wouldn%27t+install+on+my+machine% 21+I+hope+you+all+get+your+problems+solved.%3Cbr%3E%3Cbr%3E%3Cbr%3E%3Cbr%3E%3Csp an+class%3Dotherinfo%3EG5+DP+ +Mac+OS+X+%2810.3.9%29+ +3.5gb+RAM%3C%2Fspan%3E%0D %0A%0D%0A----%0D%0AOn+Fri+Apr+20+10%3A59%3A04+CDT+2007%2C+gameduck+wrote%3A+%0D% 0ASubject%3A+Re%3A+Panther+security+update+2007%2F4+and+Airport+Extreme%0D%0A%0D %0AI+am+having+this+issue+as+well.++I+am+using+an+old+iBook+G3.++If+it+goes+to+s leep%2C+I+cannot+even+see+the+network.++Only+a+reboot+works.%3Cbr%3E%3Cbr%3EI+tr ied+giving+Keychain+access+for+the+Base+Station+to+all+apps+without+confirmation +in+Utilities%2C+but+it+says+the+Password+is+incorrect.++%3Cbr%3E%3Cbr%3EI+then+ turned+off+WEP+as+suggested+above%2C+same+problem.%3Cbr%3E%3Cbr%3EI+then+tried+d eleting+the+keychain+items+and+then+rebooting%2C+same+problem.%3Cbr%3E%3Cbr%3EI+ cannot+put+10.4+on+this+machine+due+to+no+dvd+or+firewire.%3Cbr%3E%3Cbr%3ESomeon e++PLEASE+HELP%21%0D%0A%0D%0A----%0D%0AOn+Fri+Apr+20+11%3A30%3A31+CDT+2007%2C+in lineplanet+wrote%3A+%0D%0ASubject%3A+Re%3A+Panther+security+update+2007%2F4+and+ Airport+Extreme%0D%0A%0D%0AAfter+installing+the+security+update+last+night+on+my +Powerbook+G3+%28firewire%29%2C+I+can+no+longer+connect+to+my+wireless+network.+ I+then+tried+connecting+using+my+dial-up+account%2C+and+I+once+again+could+not+c onnect.+The+tec+guy+at+my+internet+provider+said+the+computer+was+%22not+passing +traffic.%22+...+Is+there+a+way+to+remove+the+security+update%3F%0D%0A%0D%0A---- %0D%0AOn+Sat+Apr+21+00%3A05%3A01+CDT+2007%2C+PISMO+LIVES+wrote%3A+%0D%0ASubject% 3A+Re%3A+Panther+security+update+2007%2F4+and+Airport+Extreme%0D%0A%0D%0AAfter+i nstalling+the+security+update+last+night+on+my+Powerbook+G3+%28firewire%29%2C+I+ could+no+longer+connect+to+my+wireless+network+either.+It+was+as+if+the+Security +Update+had+diabled+my+wireless+card.%3Cbr%3E%3Cbr%3EI+accessed+this+thread+on+m y+G5+iMac+tonight+and+noted+someone%27s+comment+about+repairing+permissions.+%3C br%3E%3Cbr%3ESo+I+restarted+my+PISMO+in+single-user+mode+and+ran+Applejack.+I+ty ped+%22applejack+AUTO+restart%22+and+when+my+PISMO+restarted%2C+my+wireless+conn ection+was+back%2C+and+everything+is+fine.%3Cbr%3E%3Cbr%3EThanks+again+to+the+Ap plejack+people%3B+you%27ve+bailed+me+out+once+again%21%0D%0A%0D%0A----%0D%0AOn+S at+Apr+21+19%3A13%3A38+CDT+2007%2C+Nman+wrote%3A+%0D%0ASubject%3A+Re%3A+Panther+ security+update+2007%2F4+and+Airport+Extreme%0D%0A%0D%0AWorks%21++Great+suggesti on.++%22auto%22+or+%22AUTO%22+does+the+job.%3Cbr%3E%3Cbr%3E%3E+So+I+restarted+my +PISMO+in+single-user+mode+and+ran%3Cbr%3E%3E+Applejack.+I+typed+%22applejack+AU TO+restart%22+and+when%3Cbr%3E%3E+my+PISMO+restarted%2C+my+wireless+connection+w as+back%2C%3Cbr%3E%3E+and+everything+is+fine.%0D%0A%0D%0A----%0D%0AOn+Sat+Apr+21 +19%3A19%3A20+CDT+2007%2C+Matthew+Rossi+wrote%3A+%0D%0ASubject%3A+Re%3A+Panther+ security+update+2007%2F4+and+Airport+Extreme%0D%0A%0D%0AHello%2C%3Cbr%3E%3Cbr%3E I+have+having+this+problem+as+well.+I+have+an+iBook+G3+500Mhz+running+10.3.9+and +when+it+wakes+from+sleep+there+it+doesn%27t+find+my+Wireless+connections+until+ I+reboot.+I+know+my+router+is+fine+because+I+have+many+other+devices+that+use+wi reless.%3Cbr%3E%3Cbr%3EI+hope+a+fix+is+found+for+this+soon.%0D%0A%0D%0A----%0D%0 AOn+Sat+Apr+21+21%3A49%3A18+CDT+2007%2C+LonesomeMac+wrote%3A+%0D%0ASubject%3A+Re %3A+Panther+security+update+2007%2F4+and+Airport+Extreme%0D%0A%0D%0AThanks%2C+PI SMO%3B+this+seems+to+have+worked+for+me%2C+at+least+for+the+last+few+hours+anywa y.++I%27ve+put+my+PowerBook+through+several+sleep+cylces+of+varying+lengths+with +no+AirPort+problems+so+far.%3Cbr%3E%3Cbr%3EI+ran+Applejack+per+instructions+%28 single-user+mode%2C+%22a%22+for+auto%2C+manual+reboot%29.++Site%3A+%3Ca+href%3D% 22http%3A%2F%2Fapplejack.sourceforge.net%22%3EApplejack%3C%2Fa%3E%3Cbr%3E%3Cbr%3 EWorth+a+try+if+nothing+else+has+worked+for+you.++I+have+an+AirPort+card%2C+no+b ase+station.%3Cbr%3E%3Cbr%3E---------%3Cbr%3E%3Cbr%3E%3E+After+installing+the+se curity+update+last+night+on+my%3Cbr%3E%3E+Powerbook+G3+%28firewire%29%2C+I+could +no+longer+connect+to%3Cbr%3E%3E+my+wireless+network+either.+It+was+as+if+the+Se curity%3Cbr%3E%3E+Update+had+diabled+my+wireless+card.%3Cbr%3E%3E+%3Cbr%3E%3E+I+ accessed+this+thread+on+my+G5+iMac+tonight+and%3Cbr%3E%3E+noted+someone%27s+comm ent+about+repairing+permissions.%3Cbr%3E%3E+%3Cbr%3E%3E+So+I+restarted+my+PISMO+ in+single-user+mode+and+ran%3Cbr%3E%3E+Applejack.+I+typed+%22applejack+AUTO+rest art%22+and+when%3Cbr%3E%3E+my+PISMO+restarted%2C+my+wireless+connection+was+back %2C%3Cbr%3E%3E+and+everything+is+fine.%3Cbr%3E%3E+%3Cbr%3E%3E+Thanks+again+to+th e+Applejack+people%3B+you%27ve+bailed%3Cbr%3E%3E+me+out+once+again%21%3Cbr%3E%3C br%3E%3Cbr%3E%3Cspan+class%3Dotherinfo%3EPowerBook+500+MHz+PPC+G3+ +Mac+OS+X+%28 10.3.9%29+ +%3C%2Fspan%3E%0D%0A%0D%0A----%0D%0AOn+Wed+Apr+25+11%3A11%3A20+CDT+20 07%2C+Hanuman+Hoffman+wrote%3A+%0D%0ASubject%3A+Re%3A+Panther+security+update+20 07%2F4+and+Airport+Extreme%0D%0A%0D%0ASince+I+got+my+TiBook+new+in+early+2003%2C +I+have+never+had+a+problem+with+any+updates.+Always+repairing+permissions.+%3Cb r%3EI+downloaded+update+Sec004+and+waited+and+watched+this+thread+before+install ing.%3Cbr%3EBased+on+%22Pismo+Lives%22+I+downloaded+applejack+and+installed.%3Cb r%3EI+have+two+external+clones+of+my+system%2C+so+I+installed+the+Sec004+on+one+ of+them+knowing+I+had+safety+net.+%3Cbr%3EAfter+the+install%2C+I+had+wireless+si gnal.+I+put+system+to+sleep+and+upon+waking%2C+signal+was+gone+and+had+kernel+pa nic+message+to+reboot.%3Cbr%3EI+rebooted+and+had+airport+until+sleep+and+waking. +No+kernel+panic+this+time.%3Cbr%3ERebooted%2C+repaired+permissions+with+same+re sults.%3Cbr%3ENo+wireless.+Not+a+router+%28D-link%29+issue+as+my+Pismo+was+unaff ected.%3Cbr%3ERebooted+in+Single+User+Mode+and+ran+%27applejack%27+in+auto+mode. %3Cbr%3E%3Cbr%3ESUCCESS.+%3Cbr%3E%3Cbr%3EI+have+put+to+sleep+numerous+times+and+ left+in+sleep+mode+overnight+without+any+failures.%3Cbr%3E%3Cbr%3EWill+now+updat e+main+system.+Still+have+another+clone%2C+just+in+case.%3Cbr%3E%3Cbr%3EThanks+P ismo%21%3Cbr%3EThanks+Applejack%2C+I+am+definitely+contributing+there.%3Cbr%3ETh anks+to+all+contributing+here.%3Cbr%3E%3Cbr%3E%3Cspan+class%3Dotherinfo%3E15%22+ G4+PB+Titanium+1ghz+1gb+RAM+120gb+HD+ +Mac+OS+X+%2810.3.9%29+ +Pismo+400+512k+RA M+40Gb+HD+10.3.9%3C%2Fspan%3E%0D%0A%0D%0A----%0D%0AOn+Fri+Apr+20+12%3A49%3A39+CD T+2007%2C+gameduck+wrote%3A+%0D%0ASubject%3A+Re%3A+Panther+security+update+2007% 2F4+and+Airport+Extreme%0D%0A%0D%0ASOLVED+for+me%21%3Cbr%3E%3Cbr%3EI+called+Appl e+and+got+a+high+level+tech+on+the+phone.++He+said+that+the+Security+Update+has+ tighter+Wireless+Security+and+works+differently+with+Panther+than+with+Tiger.++T he+Tiger+OS+handles+security+differently+and+thus+no+issues+for+them.%3Cbr%3E%3C br%3EHere+is+what+he+had+me+do%3A%3Cbr%3E%3Cbr%3E1%29++Go+to+Network+Preferences %2C+Airport.++Manually+delete+the+old+Network+name+that+is+in+the+box.++Then%2C+ manually+type+in+the+name+again+and+password+if+necessary.%3Cbr%3E%3Cbr%3E2%29++ Restart+computer%3Cbr%3E%3Cbr%3EThat+worked+for+me+even+after+waking+from+sleep+ until+I+turned+WEP+back+on%2C+then+the+issue+came+back.%3Cbr%3E%3Cbr%3ESo+he+had +me+do+the+same+thing+in+steps+1+and+2+again+%28re-add+network+name+and+restart% 29+and+now+it+is+working+fine+again+after+sleeping+and+restarts.%3Cbr%3E%3Cbr%3E I+am+using+%27Join+a+specific+Network%27+but+he+said+%27Automatic%27+would+be+th e+same+procedure.%3Cbr%3E%3Cbr%3EHe+then+game+me+some+tips+on+these+issues%3A%3C br%3E%3Cbr%3E1%29++After+a+%27Security+Update%27%2C++delete+the+old+network+you+ are+using+from+%27Network+Preferences%27+and+then+re-add+it+manually.++After+tha t%2C+restart+the+computer.++%3Cbr%3E%3Cbr%3E2%29++If+you+update+the+Base+Station %2C+do+the+same+thing+afterwards++%28delete+the+old+network+you+are+using+from+% 27Network+Preferences%27+and+then+re-add+it+manually.++After+that%2C+restart+the +computer%29.+%3Cbr%3E%3Cbr%3EIf+you+do+not+do+these+steps%2C+the+computer+uses+ the+old+network+settings+and+will+not+see+the+network.%3Cbr%3E%3Cbr%3EAnyhow+I+h ope+this+helps+someone.%0D%0A%0D%0A----%0D%0AOn+Fri+Apr+20+13%3A02%3A03+CDT+2007 %2C+gameduck+wrote%3A+%0D%0ASubject%3A+Re%3A+Panther+security+update+2007%2F4+an d+Airport+Extreme%0D%0A%0D%0Anever+mind%2C+the+issue+came+back+after+waking.++Cr ap.%3Cbr%3E%3Cbr%3ECan+anyone+help+here%3F%0D%0A%0D%0A----%0D%0AOn+Fri+Apr+20+13 %3A08%3A47+CDT+2007%2C+roam+wrote%3A+%0D%0ASubject%3A+Re%3A+Panther+security+upd ate+2007%2F4+and+Airport+Extreme%0D%0A%0D%0AHi+you+guys%2C%3Cbr%3E%3Cbr%3EYou+co uld+try+going+a+bit+further+and+resetting+Airport+as+detailed+here%3A%3Cbr%3E%3C a+href%3D%22http%3A%2F%2Fdocs.info.apple.com%2Farticle.html%3Fartnum%3D108044%22 %3Ehttp%3A%2F%2Fdocs.info.apple.com%2Farticle.html%3Fartnum%3D108044%3C%2Fa%3E%3 Cbr%3E%3Cbr%3Eor+resetting+Airport+base+station%2C%3Cbr%3E%3Ca+href%3D%22http%3A %2F%2Fdocs.info.apple.com%2Farticle.html%3Fartnum%3D107451%22%3Ehttp%3A%2F%2Fdoc s.info.apple.com%2Farticle.html%3Fartnum%3D107451%3C%2Fa%3E%3Cbr%3E%3Cbr%3EI+hop e+that+helps.%3Cbr%3E%3Cbr%3Eregards+roam%0D%0A%0D%0A----%0D%0AOn+Fri+Apr+20+13% 3A19%3A32+CDT+2007%2C+WillParton+wrote%3A+%0D%0ASubject%3A+Re%3A+Panther+securit y+update+2007%2F4+and+Airport+Extreme%0D%0A%0D%0AAfraid+Gameduck%27s+suggestion+ didn%27t+work+for+me+either.+I%27ve+also+power-cycled+the+basestation%2C+but+tha t+made+no+difference.+%3Cbr%3E%3Cbr%3E%3Cspan+class%3Dotherinfo%3EPowerbook+G4+T itanium+++Mac+OS+X+%2810.3.9%29+++%3C%2Fspan%3E%3Cbr%3E%3Cbr%3E%3Cspan+class%3Do therinfo%3EPowerbook+G4+Titanium+++Mac+OS+X+%2810.3.9%29+++%3C%2Fspan%3E%0D%0A%0 D%0A----%0D%0AOn+Fri+Apr+20+14%3A18%3A45+CDT+2007%2C+gameduck+wrote%3A+%0D%0ASub ject%3A+Re%3A+Panther+security+update+2007%2F4+and+Airport+Extreme%0D%0A%0D%0AWe ll%2C+I+got+another+guy+on+the+phone+and+we+did%3A%3Cbr%3E%3Cbr%3EPMU+Reset%3Cbr %3E%3Cbr%3ERepair+Permissions%3Cbr%3E%3Cbr%3Etrashed+Home%2Flibrary%2Fkeychains+ folder%3Cbr%3E%3Cbr%3EIt+seems+to+be+working+now%2C+but+who+knows+for+how+long.% 3Cbr%3E%3Cbr%3ENext+step+he+said+was+a+Repair+Disc+from+the+OSX+Panther+Disc+1%2 C+then+an+Archive+Install+if+that+doesnt+work.%3Cbr%3E%3Cbr%3ECripes.%0D%0A%0D%0 A----%0D%0AOn+Fri+Apr+20+16%3A27%3A40+CDT+2007%2C+Forbidden+Donut+wrote%3A+%0D%0 ASubject%3A+Re%3A+Panther+security+update+2007%2F4+and+Airport+Extreme%0D%0A%0D% 0ASame+problems+too+after+putting+the+thing+to+sleep.++My+network+just+disappear s+and+can%27t+connect+unless+I+restart.+%3Cbr%3E%3Cbr%3EAlso%2C+if+I+try+to+log+ out+or+switch+to+a+different+user%2C+the+computer+freezes+and+I+have+to+unplug+t he+computer+to+restart.++Anyone+else+have+this+experience%3F++%3Cbr%3E%3Cbr%3EWh at+the+**%21++Are+we+turning+in+to+a+PC%3F%0D%0A%0D%0A----%0D%0AOn+Fri+Apr+20+17%3A38%3A5 9+CDT+2007%2C+gameduck+wrote%3A+%0D%0ASubject%3A+Re%3A+Panther+security+update+2 007%2F4+and+Airport+Extreme%0D%0A%0D%0AAlright%2C+I+think+I+finally+have+this+fi xed.%3Cbr%3E%3Cbr%3EAfter+doing%3A%3Cbr%3E%3Cbr%3EManual+re-add+of+the+network+i n+Net+Pref%3Cbr%3E%3Cbr%3Erestart%2C+then%3A%3Cbr%3E%3Cbr%3EBase+Station+passwor d+change+and+Reset%3Cbr%3E%3Cbr%3EAnother+Manual+re-add+of+the+network+in+Net+Pr ef%3Cbr%3E%3Cbr%3EAnother+Restart%3Cbr%3E%3Cbr%3EPMU+Reset%3Cbr%3E%3Cbr%3ERepair +Permissions%3Cbr%3E%3Cbr%3ETrashed+Home%2Flibrary%2Fkeychains+folder%3Cbr%3E%3C br%3EIt+then+seemed+to+be+working+on+the+%27Automatic%27+setting+in+Net+Pref.%3C br%3E%3Cbr%3EAfter+getting+my+Panther+Disc+1%2C+and+calling+Apple+again+to+see+i f+I+needed+to+use+Disc+Repair%2C+I+then+talked+to+a+third+guy+who+was+a+Network+ Specialist.++%3Cbr%3E%3Cbr%3EHe+said+that+it+should+be+set+on+%27Join+a+Specific +Network%27+in+Net+Prefs+if+you+are+using+your+home+Network+and+only+have+one+ne twork.++So%2C++I+did+that%2C+entered+the+Network+password%2C+applied+that%2C+res tarted+and+have+not+had+the+issue+since%2C+even+after+a+reboot+and+hours+of+waki ng+it.%3Cbr%3E%3Cbr%3EHe+said+also+that+these+Security+Updates+are+not+tested+on +old+hardware+%28ie%2C+my+iBook+G3+graphite%29.++He+said+that+by+installing+thes e+updates%2C+you+are+rolling+the+dice+that+it+may+cause+an+issue.%3Cbr%3E%3Cbr%3 EI+personally+am+not+doing+any+more+Security+Updates+EVER%21%3Cbr%3E%3Cbr%3EI+am +not+sure+if+it+was+the+steps+above%2C+or+simply+trashing+the+Keychains+and+then +setting+the+specific+network%2C+and+neither+are+the+Apple+people.%3Cbr%3E%3Cbr% 3EI+will+check+back+if+it+returns.%0D%0A%0D%0A----%0D%0AOn+Fri+Apr+20+18%3A30%3A 12+CDT+2007%2C+Forbidden+Donut+wrote%3A+%0D%0ASubject%3A+Re%3A+Panther+security+ update+2007%2F4+and+Airport+Extreme%0D%0A%0D%0AUnbelievable%21+How+is+it+that+th ey+suggest+we+update+our+computer+and+then+tell+us+it+hasn%27t+been+tested+on+th e+%22older%22+ones.++3.9+is+not+that+out+of+date.%3Cbr%3E%3Cbr%3EIf+that%27s+the +case%2C+they+should+not+make+these+updates+show+up++older+OS+X+versions.++%3Cbr %3E%3Cbr%3EDoes+this+mean+there+will+be+no+patch+to+fix+our+problem+and+we+are+s tuck+with+it+since+our+system+is+no+longer+supported%3F%0D%0A%0D%0A----%0D%0AOn+ Fri+Apr+20+18%3A43%3A40+CDT+2007%2C+DonMichele1+wrote%3A+%0D%0ASubject%3A+Re%3A+Panther+security+update+2007%2F4+and+Ai rport+Extreme%0D%0A%0D%0AI+will+not+hope+so%21+%3Cbr%3E%3Cbr%3EAfter+2+successfu l+%22wakeups%22+after+sleep+same+situation+as+before%3A+Kernelpanic+and+crashlog +reports+mentioning+airport+driver+and+airport+firmware+failed+to+be+loaded.+%3C br%3E%3Cbr%3EPlease%2C+Apple%2C+fix+this%2C+maybe+you+forgot+that+the+iBook+G3+8 00+comes+only+with+an+airport+standard+11+MB+card%3F%3Cbr%3E%3Cbr%3EIt%27s+my+fi rst+time+with+such+a+severe+failure+with+a+security+update.%0D%0A%0D%0A----%0D%0 AOn+Fri+Apr+20+20%3A15%3A28+CDT+2007%2C+weing+wrote%3A+%0D%0ASubject%3A+Re%3A+Pa nther+security+update+2007%2F4+and+Airport+Extreme%0D%0A%0D%0AThis+is+a+real+dra g+.+I+have++some++older++g+3+laptops+I+use+for+specific+tasks+that++i+don%27t+ru n+10.4+on+.+%3Cbr%3E+I+get+it+if+you+are+trying+to+kluge+a+OS+into+a+machine+tha t+doesnt+meet+the+system+requirements+that+its+tough+luck++.+But+if+it++can+nati vley+load+the+OS%2C+they+should+test.++I+would+guess+Apple+has+less+than+40+piec es+of+hardware+they+would+have+to+test+that++this+might+be+a+issue+on+.%3Cbr%3E+ Sorry++Apple+.+No+excuse.%0D%0A%0D%0A----%0D%0AOn+Sat+Apr+21+10%3A16%3A50+CDT+20 07%2C+Bob+Bujic+wrote%3A+%0D%0ASubject%3A+Re%3A+Panther+security+update+2007%2F4 +and+Airport+Extreme%0D%0A%0D%0AGameduck%3A+%3Ci%3E%22I+personally+am+not+doing+ any+more+Security+Updates+EVER%21%22%3Cbr%3E%3C%2Fi%3E%3Cbr%3EI+do+agree+with+yo u.+Previous+security+upgrade+killed+10.3.9+on+an++Wallstreet+II+where+Panther+wa s+installed+using+XPostFacto.+All+previous+updates+on+that+machine+went+smoothly .%3Cbr%3E%3Cbr%3EThis+new+screw+up+is+%27not+allowed%27+in+a+Mac+world.+When+I+t hink+of+apple%2C+I+don%27t+think+of+a+lemon.%3Cbr%3E%3Cbr%3ESory+for+the+troll.% 3Cbr%3E%3Cbr%3EBob%0D%0A%0D%0A----%0D%0AOn+Sat+Apr+21+14%3A54%3A40+CDT+2007%2C+J ianli+Dai+wrote%3A+%0D%0ASubject%3A+Re%3A+Panther+security+update+2007%2F4+and+A irport+Extreme%0D%0A%0D%0AGameduck%2C%3Cbr%3EWhich+keychains+folder+did+you+tras h%3F+there+is+one+in+the+HD%3Alibrary.+there+is+another+in+my+user%3A+library.%3 Cbr%3EThis+mess+reminds+me+how+apple+trashed+users+with+os9%2C+10.1+%2C+10.2+and +now+10.3.%0D%0A%0D%0A----%0D%0AOn+Sat+Apr+21+16%3A19%3A45+CDT+2007%2C+gameduck+ wrote%3A+%0D%0ASubject%3A+Re%3A+Panther+security+update2007%2F
    p.s. I previewed this thread and used the p class="code" for the html tags around these long urls. Doesn't that work anymore or am I misremembering the permitted tag?

    Thanks for your answer,
    It's an web application made in Oracle ALBPM and which uses JSPs to entering data. The insert is made on the database object inside the ALBPM studio:
    INSERT INTO <<ALBPM SQLQuery object>> ( field-1,field-n) VALUES ( value-1 value-n) );
    I read the link you posted, but I'm still confused. I did the following:
    SELECT  FIELD, LENGTH(FIELD), LENGTHB(FIELD)
    FROM    TABLE
    I was expeting to get a larger value in LENGTHB(FIELD), but the values are equal. I can only insert 2000 characters from the application, so, I was expecting a LENGTHB 2x greater than LENGTH(FIELD).

  • Threads Problem

    I had to adopt one project from someone, and he leave a warning message. " This package must be run using green threads . With native threads, this model will either run very slowly or crash. Green threads are made avialble in JDK 1.3.1( or earlier versions ) by running the program with java-classic "
    In the original program, it run for one replication. I had to modify this project running more than one replications or run one replication with long length. When I went to compile it I got this error. In the same program,sometime it can run, often it cannot. So, I'm not sure about the cause of this problem. What should I do, downgrade java version to 1.3.1 or modify the source code(I don't where is error or how to modify the code). Anyway, I'm just learning so take it easy on me.
    Can anyone please tell me how to fix the problem.
    Exception in thread "Thread-........" java.lang.NullPointerException
    at umontreal.iro.lecuyer.simprocs.SimThread.run(SimProcess.java:479) -----> this is the source code
    at java.lang.Thread.run(Thread.java:595)
    for .... , it had changed position for every run.
    Now, I use version 1.5 with NetBeans IDE4.1
    Regards,

    I had to adopt one project from someone, and he leave
    a warning message. " This package must be run using
    green threads . With native threads, this model will
    either run very slowly or crash. Green threads are
    made avialble in JDK 1.3.1( or earlier versions ) by
    running the program with java-classic "
    The person that left you this message shot be hunted down and shot.
    >
    Well a null pointer exception means you are going to have go plumbing around in the code.
    Here is my recommendation.
    Because it sounds like you have a real code mess on your hands (the description makes it sound like the orginial developer did something evil with synchronization and/or relying on thread timing) and because as you say you are just starting.. if downgrading to an older version will make it magically work then I suggest doing that as a stop gap.
    It is impossible for me to say without knowing alot more about your project but it sounds to me like your best course of action, and I mean this honestly to save you pain, is to examine the whole project and probably scrap and rewrite most of it if not all of it.
    Sorry for the bad news.

  • Loops messed up. Help needed quickly

    Hi there,
    I'm in the middle of kind of an important project that has to be finished by next week and of course those are the times when software seems to fail So I need help quickly.
    Situation: the location of my apple loops seems to be messed up. I placed the "Apple Loops for Soundtrack Pro" on an external disk (since it is the largest folder) and kept the rest on my internal drive. Now, when I search my loop browser, results seem to be incomplete. I know I had a lot more drum loops before I reorganized my loops than I have now.
    So I became suspicious and as some kind of test I looked in the Library > Audio > Apple Loops > Jam Pack Symphony Orchestra folder, searched for a particular loop name (in this case "Adversary Strings"), typed it in the search menu of the loop browser in Logic and couldn't find it.
    So I took al my loop folders in the "Apple Loops" map and dragged them back into Logic. It showed "Adding Loops" and after 10 seconds (which seemed rather short to me) this was done. I searched again "Adversary Strings" in the loop browers, still couldn't find it. So I dragged ONLY the "Adversary Strings" loop in the Logic Pro loop browser and then Logic gave me a message: "Logic already has this loop, do you want to replace it?"
    But Logic doesn't have that loop! I can't find it, there's no filter on in my loop browser (I search "all loops") and I don't find some loops (it's not only the case with the "Adversary Strings") and when I want to add them I get the message that they're already in Logic...
    So I deleted all my loop indexes, re-added the loops and still no results.
    Any ideas out there to re-index these things correctly???
    Thanks!

    Hi,
    thanks for the help, but as I said in my topic, I already followed the steps suggested in "Rebuilding the Loop index" (deleting my index and dragging the apple loops folder back in the browser) and of course I already searched the forum. My question was a little more specific, so I thought it deserved a new thread.
    Eventually I solved it in a very strange manner, just by trial and error actually. When I added the whole loop folder, Logic couldn't find the loops (despite deleting the index and hoping for Logic to re-index the loops). But when I selected one loop out of a particular folder (for instance Jam Pack1) and added it, Logic added the loop, but this seemed to take a while. After that one loop was loaded, suddenly all the others that were in the same folder (Jam Pack1) were also visible again.
    I did this for every different loop folder (5 jam packs, garage band, soundtrack pro and I life) and so got back all my loops...
    Weird, but it worked
    Thanks anyhow...
    S.

  • Wait/notify, await/signal, faster blockingqueue that scales with N threads

    Hi,
    I have been benchmarking a blockingqueue. It holds 100 items before writers block. It uses not-empty/not-full semaphores. Typical stuff.
    I have noticed that with 1 writer and 1 reader threads, using synchronized()+wait/notify is faster than reentrantlock+await/signal.
    I tried to find the point (in number of W/R threads) where reentrant lock is better.
    For the remainder os the discussion, I must say that I never use 'fair' rentrantlocks: I tested them and they are always slower than synchronized.
    So, I always use 'unfair' locks.
    The thing is, the tests results are messed up. I mean I would expect a monotonous progression in reentrant lock performance as the number of W/R threads is increasing. But the reality (on a dual core dual opteron) shows strange progressions. Without diving into numbers...
    I would like to hear about the experiences of other people relatively to:
    -queue implementations and readers semaphore, writers semaphores most efficient patterns.
    -scalability observations and implementation choices related to the number of threads to be concurrent.
    Of course I have been experimenting with notify()/signal() instead of notifyAll()/signalAll() in order to avoid waking up too many writers/readers that do not stand a chance to perform their enqueue/dequeue without going back to wait()/await() again (in my case, fairness isn't an issue for readers, and for the moment, I accept unfair enqueue from writers). Also, a reader can notify/signal not only a waiting writer but another waiting reader if the queue isn't empty after its own dequeue. I'm about to do the dual notify/signal for writers: not only notify/signal a waiting reader but also another waiting writer if the queue isn't full after its own enqueue.
    Of course, this good-intentions implementation ends up notifying/signaling a lot. I'm searching for a new way of thinking, in case I have been blinded by too much obsession on my current implementation...! :-)
    Thanks.
    PS: for those of you that wonders why I don't use j.u.c array blocking queue, that's because I need:
    a) many queues enqueue to be able to notify/signal a single thread (1 thread waiting to read many queues). This implies an externally plugged-in readers (not-empty) semaphore.
    b) enqueueMany(array), dequeueMany(int max) ->array

    In Java 5 ReentrantLock provides much better performance under contention than built-in sync. Conversely built-in uncontended sync is always much faster. In Java 6 contended built-in sync has pulled back some ground on ReentrantLock. So with only two threads it is not surprising that built-in sync is faster.
    So the switch over point depends on the level of contention. This is a function of the number of threads (and CPU's) and what they do while holding the lock and between holding the lock.
    For evaluating read/write synchronization you need to have a read operation that is relatively long to dominate the cost the heavier read-lock. You also need sufficient parallelism to allow enough concurrent readers to make overall reader "throughput" significant.
    Benchmarks are seldom that useful/insightful unless realistic access patterns and workloads are used.

  • I messed up iPhoto 11, keeps crashing even applying every fix

    Hi,
    I made a mess with my iPhoto on my iMac 27, Core 2 3.06 Ghz version. It runs Lion, with latest updates. Lion was installed on a native Snow Leopard.
    I wanter to upgrade the version of iLife and I had this genial idea of using my Macbook Pro, latest version 2011 DVD to do it.
    I've read a tutorial that explained how to do it with an application to read from packages and Apple DVDs.
    The process gave me some errors related to the Prokit Library. I've stopped it and I saw that the whole iLife was installed, but iPhoto would crash instantly every time I run it.
    I did the following attempts of recovering, found in this forum. After each attemp, every iLife app other than iPhoto works. I'm testing on an account with an empty picture library.
    - web update: failure
    -  Delete everything, delete the recipes, reinstall: failure
    - A friend of mine gave me the iLife 11 DVD. Tried removing iLife, deleting recipes before installing: failure.
    - Same as above, with additional delete of every iPhoto related file in my User library: failure
    - I've finally decided purchased iPhoto 11 from the App Store, sure that it would work: epic fail. iPhoto not working and I have 12 euro less
    - I've already tried creating new library, starting the app with ALT and CTRL ALT, but as soon as the process of rebuilding the library - which by the way is empty - the application crashes.
    - I've run everything I could from Onyx.
    What else I can do now to fix this situation?
    Do I need to reinstall Lion from scratch?
    Here is the error I get.
    Process:         iPhoto [4060]
    Path:            /Applications/iPhoto.app/Contents/MacOS/iPhoto
    Identifier:      com.apple.iPhoto
    Version:         9.2.1 (9.2.1)
    Build Info:      iPhotoProject-628000000000000~3
    Code Type:       X86 (Native)
    Parent Process:  launchd [237]
    Date/Time:       2011-11-01 10:50:53.526 +0100
    OS Version:      Mac OS X 10.7.2 (11C74)
    Report Version:  9
    Interval Since Last Report:          21346 sec
    Crashes Since Last Report:           33
    Per-App Interval Since Last Report:  207 sec
    Per-App Crashes Since Last Report:   30
    Anonymous UUID:                      BCD20D72-95EB-4873-AC30-EAAFCBF557F6
    Crashed Thread:  0  Dispatch queue: com.apple.main-thread
    Exception Type:  EXC_BAD_ACCESS (SIGBUS)
    Exception Codes: KERN_PROTECTION_FAILURE at 0x0000000000000001
    VM Regions Near 0x1:
    --> __PAGEZERO             0000000000000000-0000000000001000 [    4K] ---/--- SM=NUL  /Applications/iPhoto.app/Contents/MacOS/iPhoto
        __TEXT                 0000000000001000-0000000000d1b000 [ 13.1M] r-x/rwx SM=COW  /Applications/iPhoto.app/Contents/MacOS/iPhoto
    Application Specific Information:
    objc_msgSend() selector name: release
    objc[4060]: garbage collection is OFF
    Thread 0 Crashed:: Dispatch queue: com.apple.main-thread
    0   libobjc.A.dylib                         0x95974d44 objc_msgSend + 20
    1   com.apple.AppKit                        0x94de3679 -[NSCarbonMenuImpl dealloc] + 98
    2   libobjc.A.dylib                         0x9597654e _objc_rootRelease + 47
    3   com.apple.AppKit                        0x94de3362 -[NSMenu setMenuRepresentation:] + 310
    4   com.apple.AppKit                        0x94de3189 -[NSMenu dealloc] + 69
    5   libobjc.A.dylib                         0x9597654e _objc_rootRelease + 47
    6   libobjc.A.dylib                         0x95977c58 (anonymous namespace)::AutoreleasePoolPage::pop(void*) + 404
    7   com.apple.CoreFoundation                0x91f73515 _CFAutoreleasePoolPop + 53
    8   com.apple.Foundation                    0x9bead8c6 -[NSAutoreleasePool drain] + 131
    9   com.apple.Foundation                    0x9bee4de3 _NSAppleEventManagerGenericHandler + 300
    10  com.apple.AE                            0x93cc8045 aeDispatchAppleEvent(AEDesc const*, AEDesc*, unsigned long, unsigned char*) + 202
    11  com.apple.AE                            0x93cb1b67 _ZL25dispatchEventAndSendReplyPK6AEDescPS_ + 43
    12  com.apple.AE                            0x93cb1a54 aeProcessAppleEvent + 253
    13  com.apple.HIToolbox                     0x98ee9fea AEProcessAppleEvent + 103
    14  com.apple.AppKit                        0x94b842af _DPSNextEvent + 1301
    15  com.apple.AppKit                        0x94b838ab -[NSApplication nextEventMatchingMask:untilDate:inMode:dequeue:] + 113
    16  com.apple.AppKit                        0x94b7fc22 -[NSApplication run] + 911
    17  com.apple.AppKit                        0x94e1418a NSApplicationMain + 1054
    18  com.apple.iPhoto                        0x0001159a 0x1000 + 66970
    19  com.apple.iPhoto                        0x00010a29 0x1000 + 64041
    Thread 1:: Dispatch queue: com.apple.libdispatch-manager
    0   libsystem_kernel.dylib                  0x9937990a kevent + 10
    1   libdispatch.dylib                       0x98c04c58 _dispatch_mgr_invoke + 969
    2   libdispatch.dylib                       0x98c036a7 _dispatch_mgr_thread + 53
    Thread 2:: Dispatch queue: com.apple.root.default-overcommit-priority
    0   libsystem_kernel.dylib                  0x9937990a kevent + 10
    1   libsystem_info.dylib                    0x93eddd04 _mdns_search + 1573
    2   libsystem_info.dylib                    0x93ede64d mdns_addrinfo + 575
    3   libsystem_info.dylib                    0x93edeebf search_addrinfo + 140
    4   libsystem_info.dylib                    0x93ee2880 si_addrinfo + 1658
    5   libsystem_info.dylib                    0x93ee4181 si_list_call + 241
    6   libsystem_info.dylib                    0x93ee3f9a __si_async_call_block_invoke_1 + 139
    7   libdispatch.dylib                       0x98c02e11 _dispatch_call_block_and_release + 15
    8   libdispatch.dylib                       0x98c03e70 _dispatch_worker_thread2 + 231
    9   libsystem_c.dylib                       0x93168b24 _pthread_wqthread + 346
    10  libsystem_c.dylib                       0x9316a6fe start_wqthread + 30
    Thread 3:
    0   libsystem_kernel.dylib                  0x9937883e __psynch_cvwait + 10
    1   libsystem_c.dylib                       0x9316ae78 _pthread_cond_wait + 914
    2   libsystem_c.dylib                       0x9316af7b pthread_cond_timedwait_relative_np + 47
    3   com.apple.Foundation                    0x9bf3b507 -[NSCondition waitUntilDate:] + 427
    4   com.apple.Foundation                    0x9bf0192a -[NSConditionLock lockWhenCondition:beforeDate:] + 294
    5   com.apple.Foundation                    0x9bf017fe -[NSConditionLock lockWhenCondition:] + 69
    6   com.apple.proxtcore                     0x0175c702 -[XTMsgQueue waitForMessage] + 50
    7   com.apple.proxtcore                     0x0175b6b0 -[XTThread run:] + 416
    8   com.apple.Foundation                    0x9bf08f7d -[NSThread main] + 45
    9   com.apple.Foundation                    0x9bf08f2d __NSThread__main__ + 1582
    10  libsystem_c.dylib                       0x93166ed9 _pthread_start + 335
    11  libsystem_c.dylib                       0x9316a6de thread_start + 34
    Thread 4:: Dispatch queue: com.apple.root.default-priority
    0   libsystem_kernel.dylib                  0x9937883e __psynch_cvwait + 10
    1   libsystem_c.dylib                       0x9316ae21 _pthread_cond_wait + 827
    2   libsystem_c.dylib                       0x9311b42c pthread_cond_wait$UNIX2003 + 71
    3   com.apple.Foundation                    0x9bf168c0 -[__NSOperationInternal waitUntilFinished] + 145
    4   com.apple.Foundation                    0x9bf16828 -[NSOperation waitUntilFinished] + 67
    5   com.apple.iPhoto                        0x00254107 0x1000 + 2437383
    6   com.apple.iPhoto                        0x009e367b 0x1000 + 10364539
    7   com.apple.Foundation                    0x9bf32f7e -[NSBlockOperation main] + 269
    8   com.apple.Foundation                    0x9bef6323 -[__NSOperationInternal start] + 797
    9   com.apple.Foundation                    0x9bef5fff -[NSOperation start] + 67
    10  com.apple.Foundation                    0x9bf0a152 ____NSOQSchedule_block_invoke_2 + 135
    11  libdispatch.dylib                       0x98c02e11 _dispatch_call_block_and_release + 15
    12  libdispatch.dylib                       0x98c03e70 _dispatch_worker_thread2 + 231
    13  libsystem_c.dylib                       0x93168b24 _pthread_wqthread + 346
    14  libsystem_c.dylib                       0x9316a6fe start_wqthread + 30
    Thread 5:
    0   libsystem_kernel.dylib                  0x99376c22 mach_msg_trap + 10
    1   libsystem_kernel.dylib                  0x993761f6 mach_msg + 70
    2   com.apple.CoreFoundation                0x91f720ea __CFRunLoopServiceMachPort + 170
    3   com.apple.CoreFoundation                0x91f7b214 __CFRunLoopRun + 1428
    4   com.apple.CoreFoundation                0x91f7a8ec CFRunLoopRunSpecific + 332
    5   com.apple.CoreFoundation                0x91f7a798 CFRunLoopRunInMode + 120
    6   com.apple.Foundation                    0x9beb5607 -[NSRunLoop(NSRunLoop) runMode:beforeDate:] + 273
    7   com.apple.proxtcore                     0x0175daed -[XTRunLoopThread run:] + 509
    8   com.apple.Foundation                    0x9bf08f7d -[NSThread main] + 45
    9   com.apple.Foundation                    0x9bf08f2d __NSThread__main__ + 1582
    10  libsystem_c.dylib                       0x93166ed9 _pthread_start + 335
    11  libsystem_c.dylib                       0x9316a6de thread_start + 34
    Thread 6:
    0   libsystem_kernel.dylib                  0x99376c22 mach_msg_trap + 10
    1   libsystem_kernel.dylib                  0x993761f6 mach_msg + 70
    2   com.apple.CoreFoundation                0x91f720ea __CFRunLoopServiceMachPort + 170
    3   com.apple.CoreFoundation                0x91f7b214 __CFRunLoopRun + 1428
    4   com.apple.CoreFoundation                0x91f7a8ec CFRunLoopRunSpecific + 332
    5   com.apple.CoreFoundation                0x91f7a798 CFRunLoopRunInMode + 120
    6   com.apple.Foundation                    0x9beb5607 -[NSRunLoop(NSRunLoop) runMode:beforeDate:] + 273
    7   com.apple.proxtcore                     0x0175daed -[XTRunLoopThread run:] + 509
    8   com.apple.Foundation                    0x9bf08f7d -[NSThread main] + 45
    9   com.apple.Foundation                    0x9bf08f2d __NSThread__main__ + 1582
    10  libsystem_c.dylib                       0x93166ed9 _pthread_start + 335
    11  libsystem_c.dylib                       0x9316a6de thread_start + 34
    Thread 7:: Dispatch queue: com.apple.root.default-overcommit-priority
    0   libsystem_kernel.dylib                  0x9937990a kevent + 10
    1   libsystem_info.dylib                    0x93eddd04 _mdns_search + 1573
    2   libsystem_info.dylib                    0x93ede64d mdns_addrinfo + 575
    3   libsystem_info.dylib                    0x93edeebf search_addrinfo + 140
    4   libsystem_info.dylib                    0x93ee2880 si_addrinfo + 1658
    5   libsystem_info.dylib                    0x93ee4181 si_list_call + 241
    6   libsystem_info.dylib                    0x93ee3f9a __si_async_call_block_invoke_1 + 139
    7   libdispatch.dylib                       0x98c02e11 _dispatch_call_block_and_release + 15
    8   libdispatch.dylib                       0x98c03e70 _dispatch_worker_thread2 + 231
    9   libsystem_c.dylib                       0x93168b24 _pthread_wqthread + 346
    10  libsystem_c.dylib                       0x9316a6fe start_wqthread + 30
    Thread 8:: Dispatch queue: com.apple.root.default-overcommit-priority
    0   libsystem_kernel.dylib                  0x9937990a kevent + 10
    1   libsystem_info.dylib                    0x93eddd04 _mdns_search + 1573
    2   libsystem_info.dylib                    0x93ede64d mdns_addrinfo + 575
    3   libsystem_info.dylib                    0x93edeebf search_addrinfo + 140
    4   libsystem_info.dylib                    0x93ee2880 si_addrinfo + 1658
    5   libsystem_info.dylib                    0x93ee4181 si_list_call + 241
    6   libsystem_info.dylib                    0x93ee3f9a __si_async_call_block_invoke_1 + 139
    7   libdispatch.dylib                       0x98c02e11 _dispatch_call_block_and_release + 15
    8   libdispatch.dylib                       0x98c03e70 _dispatch_worker_thread2 + 231
    9   libsystem_c.dylib                       0x93168b24 _pthread_wqthread + 346
    10  libsystem_c.dylib                       0x9316a6fe start_wqthread + 30
    Thread 9:
    0   libsystem_kernel.dylib                  0x9937902e __workq_kernreturn + 10
    1   libsystem_c.dylib                       0x93168ccf _pthread_wqthread + 773
    2   libsystem_c.dylib                       0x9316a6fe start_wqthread + 30
    Thread 10:: com.apple.appkit-heartbeat
    0   libsystem_kernel.dylib                  0x99378bb2 __semwait_signal + 10
    1   libsystem_c.dylib                       0x9311b7b9 nanosleep$UNIX2003 + 187
    2   libsystem_c.dylib                       0x9311b558 usleep$UNIX2003 + 60
    3   com.apple.AppKit                        0x94dcbbe2 -[NSUIHeartBeat _heartBeatThread:] + 2399
    4   com.apple.Foundation                    0x9bf08f7d -[NSThread main] + 45
    5   com.apple.Foundation                    0x9bf08f2d __NSThread__main__ + 1582
    6   libsystem_c.dylib                       0x93166ed9 _pthread_start + 335
    7   libsystem_c.dylib                       0x9316a6de thread_start + 34
    Thread 11:
    0   libsystem_kernel.dylib                  0x9937902e __workq_kernreturn + 10
    1   libsystem_c.dylib                       0x93168ccf _pthread_wqthread + 773
    2   libsystem_c.dylib                       0x9316a6fe start_wqthread + 30
    Thread 12:
    0   libsystem_kernel.dylib                  0x9937883e __psynch_cvwait + 10
    1   libsystem_c.dylib                       0x9316ae78 _pthread_cond_wait + 914
    2   libsystem_c.dylib                       0x9316af7b pthread_cond_timedwait_relative_np + 47
    3   com.apple.Foundation                    0x9bf3b507 -[NSCondition waitUntilDate:] + 427
    4   com.apple.Foundation                    0x9bf0192a -[NSConditionLock lockWhenCondition:beforeDate:] + 294
    5   com.apple.Foundation                    0x9bf017fe -[NSConditionLock lockWhenCondition:] + 69
    6   com.apple.proxtcore                     0x0175c702 -[XTMsgQueue waitForMessage] + 50
    7   com.apple.proxtcore                     0x0175b6b0 -[XTThread run:] + 416
    8   com.apple.Foundation                    0x9bf08f7d -[NSThread main] + 45
    9   com.apple.Foundation                    0x9bf08f2d __NSThread__main__ + 1582
    10  libsystem_c.dylib                       0x93166ed9 _pthread_start + 335
    11  libsystem_c.dylib                       0x9316a6de thread_start + 34
    Thread 13:
    0   libsystem_kernel.dylib                  0x9937883e __psynch_cvwait + 10
    1   libsystem_c.dylib                       0x9316ae78 _pthread_cond_wait + 914
    2   libsystem_c.dylib                       0x9316af7b pthread_cond_timedwait_relative_np + 47
    3   com.apple.Foundation                    0x9bf3b507 -[NSCondition waitUntilDate:] + 427
    4   com.apple.Foundation                    0x9bf0192a -[NSConditionLock lockWhenCondition:beforeDate:] + 294
    5   com.apple.Foundation                    0x9bf017fe -[NSConditionLock lockWhenCondition:] + 69
    6   com.apple.proxtcore                     0x0175c702 -[XTMsgQueue waitForMessage] + 50
    7   com.apple.proxtcore                     0x0175b6b0 -[XTThread run:] + 416
    8   com.apple.Foundation                    0x9bf08f7d -[NSThread main] + 45
    9   com.apple.Foundation                    0x9bf08f2d __NSThread__main__ + 1582
    10  libsystem_c.dylib                       0x93166ed9 _pthread_start + 335
    11  libsystem_c.dylib                       0x9316a6de thread_start + 34
    Thread 14:
    0   libsystem_kernel.dylib                  0x9937883e __psynch_cvwait + 10
    1   libsystem_c.dylib                       0x9316ae78 _pthread_cond_wait + 914
    2   libsystem_c.dylib                       0x9316af7b pthread_cond_timedwait_relative_np + 47
    3   com.apple.Foundation                    0x9bf3b507 -[NSCondition waitUntilDate:] + 427
    4   com.apple.Foundation                    0x9bf0192a -[NSConditionLock lockWhenCondition:beforeDate:] + 294
    5   com.apple.Foundation                    0x9bf017fe -[NSConditionLock lockWhenCondition:] + 69
    6   com.apple.proxtcore                     0x0175c702 -[XTMsgQueue waitForMessage] + 50
    7   com.apple.proxtcore                     0x0175b6b0 -[XTThread run:] + 416
    8   com.apple.Foundation                    0x9bf08f7d -[NSThread main] + 45
    9   com.apple.Foundation                    0x9bf08f2d __NSThread__main__ + 1582
    10  libsystem_c.dylib                       0x93166ed9 _pthread_start + 335
    11  libsystem_c.dylib                       0x9316a6de thread_start + 34
    Thread 15:
    0   libsystem_kernel.dylib                  0x9937883e __psynch_cvwait + 10
    1   libsystem_c.dylib                       0x9316ae78 _pthread_cond_wait + 914
    2   libsystem_c.dylib                       0x9316af7b pthread_cond_timedwait_relative_np + 47
    3   com.apple.Foundation                    0x9bf3b507 -[NSCondition waitUntilDate:] + 427
    4   com.apple.Foundation                    0x9bf0192a -[NSConditionLock lockWhenCondition:beforeDate:] + 294
    5   com.apple.Foundation                    0x9bf017fe -[NSConditionLock lockWhenCondition:] + 69
    6   com.apple.proxtcore                     0x0175c702 -[XTMsgQueue waitForMessage] + 50
    7   com.apple.proxtcore                     0x0175b6b0 -[XTThread run:] + 416
    8   com.apple.Foundation                    0x9bf08f7d -[NSThread main] + 45
    9   com.apple.Foundation                    0x9bf08f2d __NSThread__main__ + 1582
    10  libsystem_c.dylib                       0x93166ed9 _pthread_start + 335
    11  libsystem_c.dylib                       0x9316a6de thread_start + 34
    Thread 16:
    0   libsystem_kernel.dylib                  0x99376c22 mach_msg_trap + 10
    1   libsystem_kernel.dylib                  0x993761f6 mach_msg + 70
    2   com.apple.CoreFoundation                0x91f720ea __CFRunLoopServiceMachPort + 170
    3   com.apple.CoreFoundation                0x91f7b214 __CFRunLoopRun + 1428
    4   com.apple.CoreFoundation                0x91f7a8ec CFRunLoopRunSpecific + 332
    5   com.apple.CoreFoundation                0x91f7a798 CFRunLoopRunInMode + 120
    6   com.apple.Foundation                    0x9beb5607 -[NSRunLoop(NSRunLoop) runMode:beforeDate:] + 273
    7   com.apple.proxtcore                     0x0175daed -[XTRunLoopThread run:] + 509
    8   com.apple.Foundation                    0x9bf08f7d -[NSThread main] + 45
    9   com.apple.Foundation                    0x9bf08f2d __NSThread__main__ + 1582
    10  libsystem_c.dylib                       0x93166ed9 _pthread_start + 335
    11  libsystem_c.dylib                       0x9316a6de thread_start + 34
    Thread 17:
    0   libsystem_kernel.dylib                  0x9937883e __psynch_cvwait + 10
    1   libsystem_c.dylib                       0x9316ae78 _pthread_cond_wait + 914
    2   libsystem_c.dylib                       0x9316af7b pthread_cond_timedwait_relative_np + 47
    3   com.apple.Foundation                    0x9bf3b507 -[NSCondition waitUntilDate:] + 427
    4   com.apple.Foundation                    0x9bf0192a -[NSConditionLock lockWhenCondition:beforeDate:] + 294
    5   com.apple.Foundation                    0x9bf017fe -[NSConditionLock lockWhenCondition:] + 69
    6   com.apple.proxtcore                     0x0175c702 -[XTMsgQueue waitForMessage] + 50
    7   com.apple.proxtcore                     0x0175b6b0 -[XTThread run:] + 416
    8   com.apple.Foundation                    0x9bf08f7d -[NSThread main] + 45
    9   com.apple.Foundation                    0x9bf08f2d __NSThread__main__ + 1582
    10  libsystem_c.dylib                       0x93166ed9 _pthread_start + 335
    11  libsystem_c.dylib                       0x9316a6de thread_start + 34
    Thread 18:
    0   libsystem_kernel.dylib                  0x9937883e __psynch_cvwait + 10
    1   libsystem_c.dylib                       0x9316ae78 _pthread_cond_wait + 914
    2   libsystem_c.dylib                       0x9316af7b pthread_cond_timedwait_relative_np + 47
    3   com.apple.Foundation                    0x9bf3b507 -[NSCondition waitUntilDate:] + 427
    4   com.apple.Foundation                    0x9bf0192a -[NSConditionLock lockWhenCondition:beforeDate:] + 294
    5   com.apple.Foundation                    0x9bf017fe -[NSConditionLock lockWhenCondition:] + 69
    6   com.apple.proxtcore                     0x0175c702 -[XTMsgQueue waitForMessage] + 50
    7   com.apple.proxtcore                     0x0175b6b0 -[XTThread run:] + 416
    8   com.apple.Foundation                    0x9bf08f7d -[NSThread main] + 45
    9   com.apple.Foundation                    0x9bf08f2d __NSThread__main__ + 1582
    10  libsystem_c.dylib                       0x93166ed9 _pthread_start + 335
    11  libsystem_c.dylib                       0x9316a6de thread_start + 34
    Thread 19:
    0   libsystem_kernel.dylib                  0x9937883e __psynch_cvwait + 10
    1   libsystem_c.dylib                       0x9316ae78 _pthread_cond_wait + 914
    2   libsystem_c.dylib                       0x9316af7b pthread_cond_timedwait_relative_np + 47
    3   com.apple.Foundation                    0x9bf3b507 -[NSCondition waitUntilDate:] + 427
    4   com.apple.Foundation                    0x9bf0192a -[NSConditionLock lockWhenCondition:beforeDate:] + 294
    5   com.apple.Foundation                    0x9bf017fe -[NSConditionLock lockWhenCondition:] + 69
    6   com.apple.proxtcore                     0x0175c702 -[XTMsgQueue waitForMessage] + 50
    7   com.apple.proxtcore                     0x0175b6b0 -[XTThread run:] + 416
    8   com.apple.Foundation                    0x9bf08f7d -[NSThread main] + 45
    9   com.apple.Foundation                    0x9bf08f2d __NSThread__main__ + 1582
    10  libsystem_c.dylib                       0x93166ed9 _pthread_start + 335
    11  libsystem_c.dylib                       0x9316a6de thread_start + 34
    Thread 20:
    0   libsystem_kernel.dylib                  0x9937883e __psynch_cvwait + 10
    1   libsystem_c.dylib                       0x9316ae78 _pthread_cond_wait + 914
    2   libsystem_c.dylib                       0x9316af7b pthread_cond_timedwait_relative_np + 47
    3   com.apple.Foundation                    0x9bf3b507 -[NSCondition waitUntilDate:] + 427
    4   com.apple.Foundation                    0x9bf0192a -[NSConditionLock lockWhenCondition:beforeDate:] + 294
    5   com.apple.Foundation                    0x9bf017fe -[NSConditionLock lockWhenCondition:] + 69
    6   com.apple.proxtcore                     0x0175c702 -[XTMsgQueue waitForMessage] + 50
    7   com.apple.proxtcore                     0x0175b6b0 -[XTThread run:] + 416
    8   com.apple.Foundation                    0x9bf08f7d -[NSThread main] + 45
    9   com.apple.Foundation                    0x9bf08f2d __NSThread__main__ + 1582
    10  libsystem_c.dylib                       0x93166ed9 _pthread_start + 335
    11  libsystem_c.dylib                       0x9316a6de thread_start + 34
    Thread 21:
    0   libsystem_kernel.dylib                  0x9937883e __psynch_cvwait + 10
    1   libsystem_c.dylib                       0x9316ae78 _pthread_cond_wait + 914
    2   libsystem_c.dylib                       0x9316af7b pthread_cond_timedwait_relative_np + 47
    3   com.apple.Foundation                    0x9bf3b507 -[NSCondition waitUntilDate:] + 427
    4   com.apple.Foundation                    0x9bf0192a -[NSConditionLock lockWhenCondition:beforeDate:] + 294
    5   com.apple.Foundation                    0x9bf017fe -[NSConditionLock lockWhenCondition:] + 69
    6   com.apple.proxtcore                     0x0175c702 -[XTMsgQueue waitForMessage] + 50
    7   com.apple.proxtcore                     0x0175b6b0 -[XTThread run:] + 416
    8   com.apple.Foundation                    0x9bf08f7d -[NSThread main] + 45
    9   com.apple.Foundation                    0x9bf08f2d __NSThread__main__ + 1582
    10  libsystem_c.dylib                       0x93166ed9 _pthread_start + 335
    11  libsystem_c.dylib                       0x9316a6de thread_start + 34
    Thread 22:
    0   libsystem_kernel.dylib                  0x9937883e __psynch_cvwait + 10
    1   libsystem_c.dylib                       0x9316ae78 _pthread_cond_wait + 914
    2   libsystem_c.dylib                       0x9316af7b pthread_cond_timedwait_relative_np + 47
    3   com.apple.Foundation                    0x9bf3b507 -[NSCondition waitUntilDate:] + 427
    4   com.apple.Foundation                    0x9bf0192a -[NSConditionLock lockWhenCondition:beforeDate:] + 294
    5   com.apple.Foundation                    0x9bf017fe -[NSConditionLock lockWhenCondition:] + 69
    6   com.apple.proxtcore                     0x0175c702 -[XTMsgQueue waitForMessage] + 50
    7   com.apple.proxtcore                     0x0175b6b0 -[XTThread run:] + 416
    8   com.apple.Foundation                    0x9bf08f7d -[NSThread main] + 45
    9   com.apple.Foundation                    0x9bf08f2d __NSThread__main__ + 1582
    10  libsystem_c.dylib                       0x93166ed9 _pthread_start + 335
    11  libsystem_c.dylib                       0x9316a6de thread_start + 34
    Thread 23:
    0   libsystem_kernel.dylib                  0x9937883e __psynch_cvwait + 10
    1   libsystem_c.dylib                       0x9316ae78 _pthread_cond_wait + 914
    2   libsystem_c.dylib                       0x9316af7b pthread_cond_timedwait_relative_np + 47
    3   com.apple.Foundation                    0x9bf3b507 -[NSCondition waitUntilDate:] + 427
    4   com.apple.Foundation                    0x9bf0192a -[NSConditionLock lockWhenCondition:beforeDate:] + 294
    5   com.apple.Foundation                    0x9bf017fe -[NSConditionLock lockWhenCondition:] + 69
    6   com.apple.proxtcore                     0x0175c702 -[XTMsgQueue waitForMessage] + 50
    7   com.apple.proxtcore                     0x0175b6b0 -[XTThread run:] + 416
    8   com.apple.Foundation                    0x9bf08f7d -[NSThread main] + 45
    9   com.apple.Foundation                    0x9bf08f2d __NSThread__main__ + 1582
    10  libsystem_c.dylib                       0x93166ed9 _pthread_start + 335
    11  libsystem_c.dylib                       0x9316a6de thread_start + 34
    Thread 24:
    0   libsystem_kernel.dylib                  0x9937883e __psynch_cvwait + 10
    1   libsystem_c.dylib                       0x9316ae78 _pthread_cond_wait + 914
    2   libsystem_c.dylib                       0x9316af7b pthread_cond_timedwait_relative_np + 47
    3   com.apple.Foundation                    0x9bf3b507 -[NSCondition waitUntilDate:] + 427
    4   com.apple.Foundation                    0x9bf0192a -[NSConditionLock lockWhenCondition:beforeDate:] + 294
    5   com.apple.Foundation                    0x9bf017fe -[NSConditionLock lockWhenCondition:] + 69
    6   com.apple.proxtcore                     0x0175c702 -[XTMsgQueue waitForMessage] + 50
    7   com.apple.proxtcore                     0x0175b6b0 -[XTThread run:] + 416
    8   com.apple.Foundation                    0x9bf08f7d -[NSThread main] + 45
    9   com.apple.Foundation                    0x9bf08f2d __NSThread__main__ + 1582
    10  libsystem_c.dylib                       0x93166ed9 _pthread_start + 335
    11  libsystem_c.dylib                       0x9316a6de thread_start + 34
    Thread 25:
    0   libsystem_kernel.dylib                  0x9937883e __psynch_cvwait + 10
    1   libsystem_c.dylib                       0x9316ae78 _pthread_cond_wait + 914
    2   libsystem_c.dylib                       0x9316af7b pthread_cond_timedwait_relative_np + 47
    3   com.apple.Foundation                    0x9bf3b507 -[NSCondition waitUntilDate:] + 427
    4   com.apple.Foundation                    0x9bf0192a -[NSConditionLock lockWhenCondition:beforeDate:] + 294
    5   com.apple.Foundation                    0x9bf017fe -[NSConditionLock lockWhenCondition:] + 69
    6   com.apple.proxtcore                     0x0175c702 -[XTMsgQueue waitForMessage] + 50
    7   com.apple.proxtcore                     0x0175b6b0 -[XTThread run:] + 416
    8   com.apple.Foundation                    0x9bf08f7d -[NSThread main] + 45
    9   com.apple.Foundation                    0x9bf08f2d __NSThread__main__ + 1582
    10  libsystem_c.dylib                       0x93166ed9 _pthread_start + 335
    11  libsystem_c.dylib                       0x9316a6de thread_start + 34
    Thread 26:
    0   libsystem_kernel.dylib                  0x9937883e __psynch_cvwait + 10
    1   libsystem_c.dylib                       0x9316ae78 _pthread_cond_wait + 914
    2   libsystem_c.dylib                       0x9316af7b pthread_cond_timedwait_relative_np + 47
    3   com.apple.Foundation                    0x9bf3b507 -[NSCondition waitUntilDate:] + 427
    4   com.apple.Foundation                    0x9bf0192a -[NSConditionLock lockWhenCondition:beforeDate:] + 294
    5   com.apple.Foundation                    0x9bf017fe -[NSConditionLock lockWhenCondition:] + 69
    6   com.apple.proxtcore                     0x0175c702 -[XTMsgQueue waitForMessage] + 50
    7   com.apple.proxtcore                     0x0175b6b0 -[XTThread run:] + 416
    8   com.apple.Foundation                    0x9bf08f7d -[NSThread main] + 45
    9   com.apple.Foundation                    0x9bf08f2d __NSThread__main__ + 1582
    10  libsystem_c.dylib                       0x93166ed9 _pthread_start + 335
    11  libsystem_c.dylib                       0x9316a6de thread_start + 34
    Thread 27:
    0   libsystem_kernel.dylib                  0x9937883e __psynch_cvwait + 10
    1   libsystem_c.dylib                       0x9316ae78 _pthread_cond_wait + 914
    2   libsystem_c.dylib                       0x9316af7b pthread_cond_timedwait_relative_np + 47
    3   com.apple.Foundation                    0x9bf3b507 -[NSCondition waitUntilDate:] + 427
    4   com.apple.Foundation                    0x9bf0192a -[NSConditionLock lockWhenCondition:beforeDate:] + 294
    5   com.apple.Foundation                    0x9bf017fe -[NSConditionLock lockWhenCondition:] + 69
    6   com.apple.proxtcore                     0x0175c702 -[XTMsgQueue waitForMessage] + 50
    7   com.apple.proxtcore                     0x0175b6b0 -[XTThread run:] + 416
    8   com.apple.Foundation                    0x9bf08f7d -[NSThread main] + 45
    9   com.apple.Foundation                    0x9bf08f2d __NSThread__main__ + 1582
    10  libsystem_c.dylib                       0x93166ed9 _pthread_start + 335
    11  libsystem_c.dylib                       0x9316a6de thread_start + 34
    Thread 28:
    0   libsystem_kernel.dylib                  0x9937883e __psynch_cvwait + 10
    1   libsystem_c.dylib                       0x9316ae78 _pthread_cond_wait + 914
    2   libsystem_c.dylib                       0x9316af7b pthread_cond_timedwait_relative_np + 47
    3   com.apple.Foundation                    0x9bf3b507 -[NSCondition waitUntilDate:] + 427
    4   com.apple.Foundation                    0x9bf0192a -[NSConditionLock lockWhenCondition:beforeDate:] + 294
    5   com.apple.Foundation                    0x9bf017fe -[NSConditionLock lockWhenCondition:] + 69
    6   com.apple.proxtcore                     0x0175c702 -[XTMsgQueue waitForMessage] + 50
    7   com.apple.proxtcore                     0x0175b6b0 -[XTThread run:] + 416
    8   com.apple.Foundation                    0x9bf08f7d -[NSThread main] + 45
    9   com.apple.Foundation                    0x9bf08f2d __NSThread__main__ + 1582
    10  libsystem_c.dylib                       0x93166ed9 _pthread_start + 335
    11  libsystem_c.dylib                       0x9316a6de thread_start + 34
    Thread 29:
    0   libsystem_kernel.dylib                  0x9937883e __psynch_cvwait + 10
    1   libsystem_c.dylib                       0x9316ae78 _pthread_cond_wait + 914
    2   libsystem_c.dylib                       0x9316af7b pthread_cond_timedwait_relative_np + 47
    3   com.apple.Foundation                    0x9bf3b507 -[NSCondition waitUntilDate:] + 427
    4   com.apple.Foundation                    0x9bf0192a -[NSConditionLock lockWhenCondition:beforeDate:] + 294
    5   com.apple.Foundation                    0x9bf017fe -[NSConditionLock lockWhenCondition:] + 69
    6   com.apple.proxtcore                     0x0175c702 -[XTMsgQueue waitForMessage] + 50
    7   com.apple.proxtcore                     0x0175b6b0 -[XTThread run:] + 416
    8   com.apple.Foundation                    0x9bf08f7d -[NSThread main] + 45
    9   com.apple.Foundation                    0x9bf08f2d __NSThread__main__ + 1582
    10  libsystem_c.dylib                       0x93166ed9 _pthread_start + 335
    11  libsystem_c.dylib                       0x9316a6de thread_start + 34
    Thread 30:
    0   libsystem_kernel.dylib                  0x9937883e __psynch_cvwait + 10
    1   libsystem_c.dylib                       0x9316ae78 _pthread_cond_wait + 914
    2   libsystem_c.dylib                       0x9316af7b pthread_cond_timedwait_relative_np + 47
    3   com.apple.Foundation                    0x9bf3b507 -[NSCondition waitUntilDate:] + 427
    4   com.apple.Foundation                    0x9bf0192a -[NSConditionLock lockWhenCondition:beforeDate:] + 294
    5   com.apple.Foundation                    0x9bf017fe -[NSConditionLock lockWhenCondition:] + 69
    6   com.apple.proxtcore                     0x0175c702 -[XTMsgQueue waitForMessage] + 50
    7   com.apple.proxtcore                     0x0175b6b0 -[XTThread run:] + 416
    8   com.apple.Foundation                    0x9bf08f7d -[NSThread main] + 45
    9   com.apple.Foundation                    0x9bf08f2d __NSThread__main__ + 1582
    10  libsystem_c.dylib                       0x93166ed9 _pthread_start + 335
    11  libsystem_c.dylib                       0x9316a6de thread_start + 34
    Thread 31:
    0   libsystem_kernel.dylib                  0x99376c22 mach_msg_trap + 10
    1   libsystem_kernel.dylib                  0x993761f6 mach_msg + 70
    2   com.apple.iLifeSQLAccess                0x0184ef41 -[RALatchTrigger wait] + 81
    3   com.apple.iLifeSQLAccess                0x0184edc9 -[RAOperationQueueImpl _workThread] + 217
    4   com.apple.Foundation                    0x9bf08f7d -[NSThread main] + 45
    5   com.apple.Foundation                    0x9bf08f2d __NSThread__main__ + 1582
    6   libsystem_c.dylib                       0x93166ed9 _pthread_start + 335
    7   libsystem_c.dylib                       0x9316a6de thread_start + 34
    Thread 32:
    0   libsystem_kernel.dylib                  0x99376c22 mach_msg_trap + 10
    1   libsystem_kernel.dylib                  0x993761f6 mach_msg + 70
    2   com.apple.iLifeSQLAccess                0x0184ef41 -[RALatchTrigger wait] + 81
    3   com.apple.iLifeSQLAccess                0x0184edc9 -[RAOperationQueueImpl _workThread] + 217
    4   com.apple.Foundation                    0x9bf08f7d -[NSThread main] + 45
    5   com.apple.Foundation                    0x9bf08f2d __NSThread__main__ + 1582
    6   libsystem_c.dylib                       0x93166ed9 _pthread_start + 335
    7   libsystem_c.dylib                       0x9316a6de thread_start + 34
    Thread 33:
    0   libsystem_kernel.dylib                  0x9937883e __psynch_cvwait + 10
    1   libsystem_c.dylib                       0x9316ae78 _pthread_cond_wait + 914
    2   libsystem_c.dylib                       0x9316af7b pthread_cond_timedwait_relative_np + 47
    3   com.apple.Foundation                    0x9bf3b507 -[NSCondition waitUntilDate:] + 427
    4   com.apple.Foundation                    0x9bf0192a -[NSConditionLock lockWhenCondition:beforeDate:] + 294
    5   com.apple.Foundation                    0x9bf017fe -[NSConditionLock lockWhenCondition:] + 69
    6   com.apple.RedRock                       0x01d31ac1 -[RKAsyncImageRenderer _backgroundRenderThread:] + 177
    7   com.apple.CoreFoundation                0x91fe253a -[NSObject performSelector:] + 58
    8   com.apple.proxtcore                     0x01766626 -[XTThreadSendOnlyDetached _detachedMessageHandler:] + 166
    9   com.apple.CoreFoundation                0x91fda091 -[NSObject performSelector:withObject:] + 65
    10  com.apple.proxtcore                     0x0175dcb5 -[XTSubscription postMessage:] + 181
    11  com.apple.proxtcore                     0x0175d406 -[XTDistributor distributeMessage:] + 726
    12  com.apple.proxtcore                     0x0175cf55 -[XTThread handleMessage:] + 1285
    13  com.apple.proxtcore                     0x0175b6c6 -[XTThread run:] + 438
    14  com.apple.Foundation                    0x9bf08f7d -[NSThread main] + 45
    15  com.apple.Foundation                    0x9bf08f2d __NSThread__main__ + 1582
    16  libsystem_c.dylib                       0x93166ed9 _pthread_start + 335
    17  libsystem_c.dylib                       0x9316a6de thread_start + 34
    Thread 34:
    0   libsystem_kernel.dylib                  0x9937902e __workq_kernreturn + 10
    1   libsystem_c.dylib                       0x93168ccf _pthread_wqthread + 773
    2   libsystem_c.dylib                       0x9316a6fe start_wqthread + 30
    Thread 35:
    0   libsystem_kernel.dylib                  0x9937902e __workq_kernreturn + 10
    1   libsystem_c.dylib                       0x93168ccf _pthread_wqthread + 773
    2   libsystem_c.dylib                       0x9316a6fe start_wqthread + 30
    Thread 36:
    0   libsystem_kernel.dylib                  0x9937883e __psynch_cvwait + 10
    1   libsystem_c.dylib                       0x9316ae21 _pthread_cond_wait + 827
    2   libsystem_c.dylib                       0x9311b42c pthread_cond_wait$UNIX2003 + 71
    3   com.apple.Foundation                    0x9bf0ad40 -[NSCondition wait] + 304
    4   com.apple.iPhoto                        0x0005c66a 0x1000 + 374378
    5   com.apple.iPhoto                        0x0005c5c2 0x1000 + 374210
    6   com.apple.CoreFoundation                0x91fdce1d __invoking___ + 29
    7   com.apple.CoreFoundation                0x91fdcd59 -[NSInvocation invoke] + 137
    8   com.apple.RedRock                       0x01d53e61 -[RKInvoker _invokeTarget:] + 33
    9   com.apple.RedRock                       0x01d656c4 -[RKInvoker _invokeTargetWithPool:] + 68
    10  com.apple.CoreFoundation                0x91fda091 -[NSObject performSelector:withObject:] + 65
    11  com.apple.proxtcore                     0x01766626 -[XTThreadSendOnlyDetached _detachedMessageHandler:] + 166
    12  com.apple.CoreFoundation                0x91fda091 -[NSObject performSelector:withObject:] + 65
    13  com.apple.proxtcore                     0x0175dcb5 -[XTSubscription postMessage:] + 181
    14  com.apple.proxtcore                     0x0175d406 -[XTDistributor distributeMessage:] + 726
    15  com.apple.proxtcore                     0x0175cf55 -[XTThread handleMessage:] + 1285
    16  com.apple.proxtcore                     0x0175b6c6 -[XTThread run:] + 438
    17  com.apple.Foundation                    0x9bf08f7d -[NSThread main] + 45
    18  com.apple.Foundation                    0x9bf08f2d __NSThread__main__ + 1582
    19  libsystem_c.dylib                       0x93166ed9 _pthread_start + 335
    20  libsystem_c.dylib                       0x9316a6de thread_start + 34
    Thread 37:
    0   libsystem_kernel.dylib                  0x99376c22 mach_msg_trap + 10
    1   libsystem_kernel.dylib                  0x993761f6 mach_msg + 70
    2   com.apple.iLifeSQLAccess                0x0184ef41 -[RALatchTrigger wait] + 81
    3   com.apple.iLifeSQLAccess                0x0184edc9 -[RAOperationQueueImpl _workThread] + 217
    4   com.apple.Foundation                    0x9bf08f7d -[NSThread main] + 45
    5   com.apple.Foundation                    0x9bf08f2d __NSThread__main__ + 1582
    6   libsystem_c.dylib                       0x93166ed9 _pthread_start + 335
    7   libsystem_c.dylib                       0x9316a6de thread_start + 34
    Thread 38:: com.apple.CFSocket.private
    0   libsystem_kernel.dylib                  0x99378b42 __select + 10
    1   com.apple.CoreFoundation                0x91fc9195 __CFSocketManager + 1557
    2   libsystem_c.dylib                       0x93166ed9 _pthread_start + 335
    3   libsystem_c.dylib                       0x9316a6de thread_start + 34
    Thread 39:
    0   libsystem_kernel.dylib                  0x99376c22 mach_msg_trap + 10
    1   libsystem_kernel.dylib                  0x993761f6 mach_msg + 70
    2   liblaunch.dylib                         0x947ffb1c 0x947fa000 + 23324
    3   liblaunch.dylib                         0x947fdf2b _spawn_via_launchd + 1782
    4   com.apple.LaunchServices                0x996d021c _ZL27LaunchApplicationViaLaunchD11LSSessionIDR19CFMutableDictionaryS1_PK9__CFAr rayPKPKcPPK7__LSASNPPK14__CFDictionary + 3259
    5   com.apple.LaunchServices                0x996d203b _LSLaunchApplication + 6148
    6   com.apple.LaunchServices                0x996e947e _ZL9_LSLaunchP9LSContextP6FSNodemPvPK9__CFArrayPK6AEDescS6_PK14__CFDictionarymP 19ProcessSerialNumber + 8397
    7   com.apple.LaunchServices                0x996e9c28 _ZL10_LSOpenAppP11LSOpenStatemP6FSNodemPhP19ProcessSerialNumber + 311
    8   com.apple.LaunchServices                0x996ecc3b _ZL43_LSOpenItemsWithHandler_CFDictionaryApplierPKvS0_Pv + 735
    9   com.apple.CoreFoundation                0x91f72230 __CFDictionaryApplyFunction_block_invoke_1 + 32
    10  com.apple.CoreFoundation                0x91f515a2 CFBasicHashApply + 114
    11  com.apple.CoreFoundation                0x91f72202 CFDictionaryApplyFunction + 194
    12  com.apple.LaunchServices                0x996ef030 _LSOpenStuff + 3710
    13  com.apple.LaunchServices                0x996da0e1 _ZL25_LSOpenApplication_CommonPK26LSApplicationParameters_V1PK9AEKeyDescP19Proc essSerialNumberP5FSRef + 189
    14  com.apple.LaunchServices                0x996da21a LSOpenFromURLSpec + 242
    15  com.apple.ImageCapture                  0x9921be34 _ICALaunchImageCaptureExtension + 128
    16  com.apple.ImageCapture                  0x9921bb6d ICACommand::PrepareCommand() + 325
    17  com.apple.ImageCapture                  0x9921b7da ICACommand::ICACommand(void (*)(ICAHeader*), unsigned char*, unsigned long, __CFString const*) + 140
    18  com.apple.ImageCapture                  0x9921b716 ICAGetDeviceListImp::ICAGetDeviceListImp(ICAGetDeviceListPB*, void (*)(ICAHeader*)) + 60
    19  com.apple.ImageCapture                  0x9921b67f ICAGetDeviceList_Deprecated + 45
    20  com.apple.ImageCapture                  0x9921b64a ICAGetDeviceList + 24
    21  com.apple.iPhoto                        0x0008a423 0x1000 + 562211
    22  com.apple.iPhoto                        0x0008a3b9 0x1000 + 562105
    23  com.apple.iPhoto                        0x0008a314 0x1000 + 561940
    24  com.apple.iPhoto                        0x0008a2be 0x1000 + 561854
    25  com.apple.iPhoto                        0x0008a1ef 0x1000 + 561647
    26  com.apple.iPhoto                        0x0008a0ec 0x1000 + 561388
    27  com.apple.iPhoto                        0x00089f52 0x1000 + 560978
    28  com.apple.CoreFoundation                0x91fdce1d __invoking___ + 29
    29  com.apple.CoreFoundation                0x91fdcd59 -[NSInvocation invoke] + 137
    30  com.apple.RedRock                       0x01d53e61 -[RKInvoker _invokeTarget:] + 33
    31  com.apple.RedRock                       0x01d656c4 -[RKInvoker _invokeTargetWithPool:] + 68
    32  com.apple.CoreFoundation                0x91fda091 -[NSObject performSelector:withObject:] + 65
    33  com.apple.proxtcore                     0x01766626 -[XTThreadSendOnlyDetached _detachedMessageHandler:] + 166
    34  com.apple.CoreFoundation                0x91fda091 -[NSObject performSelector:withObject:] + 65
    35  com.apple.proxtcore                     0x0175dcb5 -[XTSubscription postMessage:] + 181
    36  com.apple.proxtcore                     0x0175d406 -[XTDistributor distributeMessage:] + 726
    37  com.apple.proxtcore                     0x0175cf55 -[XTThread handleMessage:] + 1285
    38  com.apple.proxtcore                     0x0175b6c6 -[XTThread run:] + 438
    39  com.apple.Foundation                    0x9bf08f7d -[NSThread main] + 45
    40  com.apple.Foundation                    0x9bf08f2d __NSThread__main__ + 1582
    41  libsystem_c.dylib                       0x93166ed9 _pthread_start + 335
    42  libsystem_c.dylib                       0x9316a6de thread_start + 34
    Thread 0 crashed with X86 Thread State (32-bit):
      eax: 0x00000001  ebx: 0x954c5608  ecx: 0x954c5608  edx: 0x00000000
      edi: 0x0cc941c0  esi: 0x94de3624  ebp: 0xbffff158  esp: 0xbffff13c
       ss: 0x00000023  efl: 0x00010202  eip: 0x95974d44   cs: 0x0000001b
       ds: 0x00000023   es: 0x00000023   fs: 0x00000000   gs: 0x0000000f
      cr2: 0x00000001
    Logical CPU: 1
    Binary Images:
        0x1000 -   0xd1afeb  com.apple.iPhoto (9.2.1 - 9.2.1) <68601E93-E4CF-3B4C-AFFD-4781A92DD58B> /Applications/iPhoto.app/Contents/MacOS/iPhoto
      0xe83000 -   0xf63fe7  org.python.python (2.6.7 - 2.6.7) <61DBA92A-C39A-3A52-86F2-59CF9D310CB4> /System/Library/Frameworks/Python.framework/Versions/2.6/Python
      0xfae000 -  0x114effb  com.apple.geode (1.5 - 151.51) <28D29759-F356-3608-B9CF-3031F3299B1B> /Applications/iPhoto.app/Contents/Frameworks/Geode.framework/Versions/A/Geode
    0x11ee000 -  0x11f0fff  com.apple.iLifePhotoStreamConfiguration (2.2 - 2.2) <4FA61CE9-1718-3E07-9896-0023A2A49699> /Applications/iPhoto.app/Contents/Frameworks/iLifePhotoStreamConfiguration.fram ework/Versions/A/iLifePhotoStreamConfiguration
    0x11f6000 -  0x1205fff  com.apple.iLifeAssetManagement (2.0 - 2.33) <8346DE35-5F86-3338-9913-B035B3EE5435> /Applications/iPhoto.app/Contents/Frameworks/iLifeAssetManagement.framework/Ver sions/A/iLifeAssetManagement
    0x1212000 -  0x123affb  com.apple.iPhoto.Tessera (1.1 - 60.10) <7BA9184E-0A00-3083-8322-772ECBDD30C9> /Applications/iPhoto.app/Contents/Frameworks/Tessera.framework/Versions/A/Tesse ra
    0x124b000 -  0x1272ffb  com.apple.iPhoto.Tellus (1.3 - 60.10) <4AABB0BC-AC97-3EE4-BF0F-D8499DDB57C0> /Applications/iPhoto.app/Contents/Frameworks/Tellus.framework/Versions/A/Tellus
    0x1287000 -  0x1291fff  com.apple.iphoto.AccountConfigurationPlugin (1.2 - 1.2) <3B68F126-D783-3F86-AF04-A0F6A459BE67> /Applications/iPhoto.app/Contents/Frameworks/AccountConfigurationPlugin.framewo rk/Versions/A/AccountConfigurationPlugin
    0x129c000 -  0x12b3ff7  com.apple.iLifeFaceRecognition (1.0 - 21) <AD53D7A2-F0B2-FF76-5C6D-C23B2

    I am having the same issue.  I loaded some new pictures & halfway through the upload it crashed & now it just continually crashes.  I don't have iphoto on another computer with the same photos....what do I do???  I don't want to lose all my photos....
    Process:         iPhoto [1028]
    Path:            /Applications/iPhoto.app/Contents/MacOS/iPhoto
    Identifier:      com.apple.iPhoto
    Version:         9.2.1 (9.2.1)
    Build Info:      iPhotoProject-628000000000000~3
    Code Type:       X86 (Native)
    Parent Process:  launchd [115]
    Date/Time:       2011-11-05 18:49:04.173 -0700
    OS Version:      Mac OS X 10.6.8 (10K549)
    Report Version:  6
    Interval Since Last Report:          24560 sec
    Crashes Since Last Report:           10
    Per-App Interval Since Last Report:  161 sec
    Per-App Crashes Since Last Report:   10
    Anonymous UUID:                      56AC5B87-578E-4096-874C-7F09EF77931F
    Exception Type:  EXC_BAD_ACCESS (SIGBUS)
    Exception Codes: 0x000000000000000a, 0x000000002398d000
    Crashed Thread:  30
    Thread 0:  Dispatch queue: com.apple.main-thread
    0   libSystem.B.dylib                 0x93aeaa16 mmap + 10
    1   com.apple.security                0x94169aaa Security::AtomicBufferedFile::loadBuffer() + 248
    2   com.apple.security                0x941698ce Security::AtomicBufferedFile::read(long long, long long, long long&) + 322
    3   com.apple.security                0x94169733 Security::DbVersion::DbVersion(Security::AppleDatabase const&, Security::RefPointer<Security::AtomicBufferedFile> const&) + 157
    4   com.apple.security                0x941691a4 Security::DbModifier::getDbVersion(bool) + 432
    5   com.apple.security                0x94168fe4 Security::DbModifier::openDatabase() + 40
    6   com.apple.security                0x94168c53 Security::Database::_dbOpen(Security::DatabaseSession&, unsigned int, Security::AccessCredentials const*, void const*) + 213
    7   com.apple.security                0x9416808f Security::DatabaseManager::dbOpen(Security::DatabaseSession&, Security::DbName const&, unsigned int, Security::AccessCredentials const*, void const*) + 71
    8   com.apple.security                0x94167f64 Security::DatabaseSession::DbOpen(char const*, cssm_net_address const*, unsigned int, Security::AccessCredentials const*, void const*, long&) + 328
    9   com.apple.security                0x94167df9 Security::MDSSession::dbOpen(char const*, bool) + 311
    10  com.apple.security                0x94167c9f Security::MDSSession::DbFilesInfo::objDbHand() + 199
    11  com.apple.security                0x941676e7 Security::MDSSession::DbFilesInfo::removeOutdatedPlugins() + 323
    12  com.apple.security                0x94165e76 Security::MDSSession::updateDataBases() + 2308
    13  com.apple.security                0x941653dc Security::MDSSession::DbOpen(char const*, cssm_net_address const*, unsigned int, Security::AccessCredentials const*, void const*, long&) + 204
    14  com.apple.security                0x941650f4 mds_DbOpen(long, char const*, cssm_net_address const*, unsigned int, cssm_access_credentials const*, void const*, long*) + 284
    15  com.apple.security                0x94164f84 Security::MDSClient::Directory::cdsa() const + 128
    16  com.apple.security                0x942b1a1d Security::MDSClient::Directory::dlGetFirst(cssm_query const&, cssm_db_record_attribute_data&, cssm_data*, cssm_db_unique_record*&) + 21
    17  com.apple.security                0x941649d5 Security::CssmClient::Table<Security::MDSClient::Common>::startQuery(Security:: CssmQuery const&, bool) + 193
    18  com.apple.security                0x9416453c Security::CssmClient::Table<Security::MDSClient::Common>::find(Security::CssmCl ient::Query const&) + 106
    19  com.apple.security                0x94162625 Security::KeychainCore::DynamicDLDBList::_load() + 339
    20  com.apple.security                0x94162484 Security::KeychainCore::DynamicDLDBList::searchList() + 62
    21  com.apple.security                0x941612ea Security::KeychainCore::StorageManager::getSearchList(std::vector<Security::Key chainCore::Keychain, std::allocator<Security::KeychainCore::Keychain> >&) + 254
    22  com.apple.security                0x94161116 Security::KeychainCore::StorageManager::optionalSearchList(void const*, std::vector<Security::KeychainCore::Keychain, std::allocator<Security::KeychainCore::Keychain> >&) + 80
    23  com.apple.security                0x941d034f SecKeychainFindInternetPassword + 101
    24  com.apple.iPhoto                  0x00060240 0x1000 + 389696
    25  com.apple.iPhoto                  0x0005fb68 0x1000 + 387944
    26  com.apple.iPhoto                  0x0005fa9e 0x1000 + 387742
    27  ....AccountConfigurationPlugin    0x01292e0d -[AccountConfigurationManagerBase loadPasswordFromKeychainForAccountConfiguration:] + 109
    28  ....AccountConfigurationPlugin    0x01294dd5 -[AccountConfiguration password] + 85
    29  ....AccountConfigurationPlugin    0x01291f57 -[AccountConfigurationManagerBase loadAccountInformation:] + 199
    30  com.apple.Foundation              0x933f2671 __NSThreadPerformPerform + 506
    31  com.apple.CoreFoundation          0x97a8e2c1 __CFRunLoopDoSources0 + 1201
    32  com.apple.CoreFoundation          0x97a8beef __CFRunLoopRun + 1071
    33  com.apple.CoreFoundation          0x97a8b3c4 CFRunLoopRunSpecific + 452
    34  com.apple.CoreFoundation          0x97a8b1f1 CFRunLoopRunInMode + 97
    35  com.apple.HIToolbox               0x91579e04 RunCurrentEventLoopInMode + 392
    36  com.apple.HIToolbox               0x91579af5 ReceiveNextEventCommon + 158
    37  com.apple.HIToolbox               0x91579a3e BlockUntilNextEventMatchingListInMode + 81
    38  com.apple.AppKit                  0x9716c595 _DPSNextEvent + 847
    39  com.apple.AppKit                  0x9716bdd6 -[NSApplication nextEventMatchingMask:untilDate:inMode:dequeue:] + 156
    40  com.apple.AppKit                  0x9712e1f3 -[NSApplication run] + 821
    41  com.apple.AppKit                  0x97126289 NSApplicationMain + 574
    42  com.apple.iPhoto                  0x0001159a 0x1000 + 66970
    43  com.apple.iPhoto                  0x00010a29 0x1000 + 64041
    Thread 1:  Dispatch queue: com.apple.libdispatch-manager
    0   libSystem.B.dylib                 0x93b0e382 kevent + 10
    1   libSystem.B.dylib                 0x93b0ea9c _dispatch_mgr_invoke + 215
    2   libSystem.B.dylib                 0x93b0df59 _dispatch_queue_invoke + 163
    3   libSystem.B.dylib                 0x93b0dcfe _dispatch_worker_thread2 + 240
    4   libSystem.B.dylib                 0x93b0d781 _pthread_wqthread + 390
    5   libSystem.B.dylib                 0x93b0d5c6 start_wqthread + 30
    Thread 2:
    0   libSystem.B.dylib                 0x93ae7b5a semaphore_timedwait_signal_trap + 10
    1   libSystem.B.dylib                 0x93b156e1 _pthread_cond_wait + 1066
    2   libSystem.B.dylib                 0x93b445a8 pthread_cond_timedwait_relative_np + 47
    3   com.apple.Foundation              0x934188e8 -[NSCondition waitUntilDate:] + 453
    4   com.apple.Foundation              0x933d13b1 -[NSConditionLock lockWhenCondition:beforeDate:] + 279
    5   com.apple.Foundation              0x933d1294 -[NSConditionLock lockWhenCondition:] + 69
    6   com.apple.proxtcore               0x0175b702 -[XTMsgQueue waitForMessage] + 50
    7   com.apple.proxtcore               0x0175a6b0 -[XTThread run:] + 416
    8   com.apple.Foundation              0x933dc4c4 -[NSThread main] + 45
    9   com.apple.Foundation              0x933dc474 __NSThread__main__ + 1499
    10  libSystem.B.dylib                 0x93b15259 _pthread_start + 345
    11  libSystem.B.dylib                 0x93b150de thread_start + 34
    Thread 3:
    0   libSystem.B.dylib                 0x93ae7afa mach_msg_trap + 10
    1   libSystem.B.dylib                 0x93ae8267 mach_msg + 68
    2   com.apple.CoreFoundation          0x97a8c2df __CFRunLoopRun + 2079
    3   com.apple.CoreFoundation          0x97a8b3c4 CFRunLoopRunSpecific + 452
    4   com.apple.CoreFoundation          0x97a8b1f1 CFRunLoopRunInMode + 97
    5   com.apple.Foundation              0x934161b3 -[NSRunLoop(NSRunLoop) runMode:beforeDate:] + 279
    6   com.apple.proxtcore               0x0175caed -[XTRunLoopThread run:] + 509
    7   com.apple.Foundation              0x933dc4c4 -[NSThread main] + 45
    8   com.apple.Foundation              0x933dc474 __NSThread__main__ + 1499
    9   libSystem.B.dylib                 0x93b15259 _pthread_start + 345
    10  libSystem.B.dylib                 0x93b150de thread_start + 34
    Thread 4:
    0   libSystem.B.dylib                 0x93ae7afa mach_msg_trap + 10
    1   libSystem.B.dylib                 0x93ae8267 mach_msg + 68
    2   com.apple.CoreFoundation          0x97a8c2df __CFRunLoopRun + 2079
    3   com.apple.CoreFoundation          0x97a8b3c4 CFRunLoopRunSpecific + 452
    4   com.apple.CoreFoundation          0x97a8b1f1 CFRunLoopRunInMode + 97
    5   com.apple.Foundation              0x934161b3 -[NSRunLoop(NSRunLoop) runMode:beforeDate:] + 279
    6   com.apple.proxtcore               0x0175caed -[XTRunLoopThread run:] + 509
    7   com.apple.Foundation              0x933dc4c4 -[NSThread main] + 45
    8   com.apple.Foundation              0x933dc474 __NSThread__main__ + 1499
    9   libSystem.B.dylib                 0x93b15259 _pthread_start + 345
    10  libSystem.B.dylib                 0x93b150de thread_start + 34
    Thread 5:
    0   libSystem.B.dylib                 0x93b0d412 __workq_kernreturn + 10
    1   libSystem.B.dylib                 0x93b0d9a8 _pthread_wqthread + 941
    2   libSystem.B.dylib                 0x93b0d5c6 start_wqthread + 30
    Thread 6:
    0   libSystem.B.dylib                 0x93ae7b5a semaphore_timedwait_signal_trap + 10
    1   libSystem.B.dylib                 0x93b156e1 _pthread_cond_wait + 1066
    2   libSystem.B.dylib                 0x93b445a8 pthread_cond_timedwait_relative_np + 47
    3   com.apple.Foundation              0x934188e8 -[NSCondition waitUntilDate:] + 453
    4   com.apple.Foundation              0x933d13b1 -[NSConditionLock lockWhenCondition:beforeDate:] + 279
    5   com.apple.Foundation              0x933d1294 -[NSConditionLock lockWhenCondition:] + 69
    6   com.apple.proxtcore               0x0175b702 -[XTMsgQueue waitForMessage] + 50
    7   com.apple.proxtcore               0x0175a6b0 -[XTThread run:] + 416
    8   com.apple.Foundation              0x933dc4c4 -[NSThread main] + 45
    9   com.apple.Foundation              0x933dc474 __NSThread__main__ + 1499
    10  libSystem.B.dylib                 0x93b15259 _pthread_start + 345
    11  libSystem.B.dylib                 0x93b150de thread_start + 34
    Thread 7:
    0   libSystem.B.dylib                 0x93ae7b5a semaphore_timedwait_signal_trap + 10
    1   libSystem.B.dylib                 0x93b156e1 _pthread_cond_wait + 1066
    2   libSystem.B.dylib                 0x93b445a8 pthread_cond_timedwait_relative_np + 47
    3   com.apple.Foundation              0x934188e8 -[NSCondition waitUntilDate:] + 453
    4   com.apple.Foundation              0x933d13b1 -[NSConditionLock lockWhenCondition:beforeDate:] + 279
    5   com.apple.Foundation              0x933d1294 -[NSConditionLock lockWhenCondition:] + 69
    6   com.apple.proxtcore               0x0175b702 -[XTMsgQueue waitForMessage] + 50
    7   com.apple.proxtcore               0x0175a6b0 -[XTThread run:] + 416
    8   com.apple.Foundation              0x933dc4c4 -[NSThread main] + 45
    9   com.apple.Foundation              0x933dc474 __NSThread__main__ + 1499
    10  libSystem.B.dylib                 0x93b15259 _pthread_start + 345
    11  libSystem.B.dylib                 0x93b150de thread_start + 34
    Thread 8:
    0   libSystem.B.dylib                 0x93ae7b5a semaphore_timedwait_signal_trap + 10
    1   libSystem.B.dylib                 0x93b156e1 _pthread_cond_wait + 1066
    2   libSystem.B.dylib                 0x93b445a8 pthread_cond_timedwait_relative_np + 47
    3   com.apple.Foundation              0x934188e8 -[NSCondition waitUntilDate:] + 453
    4   com.apple.Foundation              0x933d13b1 -[NSConditionLock lockWhenCondition:beforeDate:] + 279
    5   com.apple.Foundation              0x933d1294 -[NSConditionLock lockWhenCondition:] + 69
    6   com.apple.proxtcore               0x0175b702 -[XTMsgQueue waitForMessage] + 50
    7   com.apple.proxtcore               0x0175a6b0 -[XTThread run:] + 416
    8   com.apple.Foundation              0x933dc4c4 -[NSThread main] + 45
    9   com.apple.Foundation              0x933dc474 __NSThread__main__ + 1499
    10  libSystem.B.dylib                 0x93b15259 _pthread_start + 345
    11  libSystem.B.dylib                 0x93b150de thread_start + 34
    Thread 9:
    0   libSystem.B.dylib                 0x93ae7b5a semaphore_timedwait_signal_trap + 10
    1   libSystem.B.dylib                 0x93b156e1 _pthread_cond_wait + 1066
    2   libSystem.B.dylib                 0x93b445a8 pthread_cond_timedwait_relative_np + 47
    3   com.apple.Foundation              0x934188e8 -[NSCondition waitUntilDate:] + 453
    4   com.apple.Foundation              0x933d13b1 -[NSConditionLock lockWhenCondition:beforeDate:] + 279
    5   com.apple.Foundation              0x933d1294 -[NSConditionLock lockWhenCondition:] + 69
    6   com.apple.proxtcore               0x0175b702 -[XTMsgQueue waitForMessage] + 50
    7   com.apple.proxtcore               0x0175a6b0 -[XTThread run:] + 416
    8   com.apple.Foundation              0x933dc4c4 -[NSThread main] + 45
    9   com.apple.Foundation              0x933dc474 __NSThread__main__ + 1499
    10  libSystem.B.dylib                 0x93b15259 _pthread_start + 345
    11  libSystem.B.dylib                 0x93b150de thread_start + 34
    Thread 10:
    0   libSystem.B.dylib                 0x93ae7afa mach_msg_trap + 10
    1   libSystem.B.dylib                 0x93ae8267 mach_msg + 68
    2   com.apple.CoreFoundation          0x97a8c2df __CFRunLoopRun + 2079
    3   com.apple.CoreFoundation          0x97a8b3c4 CFRunLoopRunSpecific + 452
    4   com.apple.CoreFoundation          0x97a8b1f1 CFRunLoopRunInMode + 97
    5   com.apple.Foundation              0x934161b3 -[NSRunLoop(NSRunLoop) runMode:beforeDate:] + 279
    6   com.apple.proxtcore               0x0175caed -[XTRunLoopThread run:] + 509
    7   com.apple.Foundation              0x933dc4c4 -[NSThread main] + 45
    8   com.apple.Foundation              0x933dc474 __NSThread__main__ + 1499
    9   libSystem.B.dylib                 0x93b15259 _pthread_start + 345
    10  libSystem.B.dylib                 0x93b150de thread_start + 34
    Thread 11:
    0   libSystem.B.dylib                 0x93ae7b5a semaphore_timedwait_signal_trap + 10
    1   libSystem.B.dylib                 0x93b156e1 _pthread_cond_wait + 1066
    2   libSystem.B.dylib                 0x93b445a8 pthread_cond_timedwait_relative_np + 47
    3   com.apple.Foundation              0x934188e8 -[NSCondition waitUntilDate:] + 453
    4   com.apple.Foundation              0x933d13b1 -[NSConditionLock lockWhenCondition:beforeDate:] + 279
    5   com.apple.Foundation              0x933d1294 -[NSConditionLock lockWhenCondition:] + 69
    6   com.apple.proxtcore               0x0175b702 -[XTMsgQueue waitForMessage] + 50
    7   com.apple.proxtcore               0x0175a6b0 -[XTThread run:] + 416
    8   com.apple.Foundation              0x933dc4c4 -[NSThread main] + 45
    9   com.apple.Foundation              0x933dc474 __NSThread__main__ + 1499
    10  libSystem.B.dylib                 0x93b15259 _pthread_start + 345
    11  libSystem.B.dylib                 0x93b150de thread_start + 34
    Thread 12:
    0   libSystem.B.dylib                 0x93ae7b5a semaphore_timedwait_signal_trap + 10
    1   libSystem.B.dylib                 0x93b156e1 _pthread_cond_wait + 1066
    2   libSystem.B.dylib                 0x93b445a8 pthread_cond_timedwait_relative_np + 47
    3   com.apple.Foundation              0x934188e8 -[NSCondition waitUntilDate:] + 453
    4   com.apple.Foundation              0x933d13b1 -[NSConditionLock lockWhenCondition:beforeDate:] + 279
    5   com.apple.Foundation              0x933d1294 -[NSConditionLock lockWhenCondition:] + 69
    6   com.apple.proxtcore               0x0175b702 -[XTMsgQueue waitForMessage] + 50
    7   com.apple.proxtcore               0x0175a6b0 -[XTThread run:] + 416
    8   com.apple.Foundation              0x933dc4c4 -[NSThread main] + 45
    9   com.apple.Foundation              0x933dc474 __NSThread__main__ + 1499
    10  libSystem.B.dylib                 0x93b15259 _pthread_start + 345
    11  libSystem.B.dylib                 0x93b150de thread_start + 34
    Thread 13:
    0   libSystem.B.dylib                 0x93ae7b5a semaphore_timedwait_signal_trap + 10
    1   libSystem.B.dylib                 0x93b156e1 _pthread_cond_wait + 1066
    2   libSystem.B.dylib                 0x93b445a8 pthread_cond_timedwait_relative_np + 47
    3   com.apple.Foundation              0x934188e8 -[NSCondition waitUntilDate:] + 453
    4   com.apple.Foundation              0x933d13b1 -[NSConditionLock lockWhenCondition:beforeDate:] + 279
    5   com.apple.Foundation              0x933d1294 -[NSConditionLock lockWhenCondition:] + 69
    6   com.apple.proxtcore               0x0175b702 -[XTMsgQueue waitForMessage] + 50
    7   com.apple.proxtcore               0x0175a6b0 -[XTThread run:] + 416
    8   com.apple.Foundation              0x933dc4c4 -[NSThread main] + 45
    9   com.apple.Foundation              0x933dc474 __NSThread__main__ + 1499
    10  libSystem.B.dylib                 0x93b15259 _pthread_start + 345
    11  libSystem.B.dylib                 0x93b150de thread_start + 34
    Thread 14:
    0   libSystem.B.dylib                 0x93ae7b5a semaphore_timedwait_signal_trap + 10
    1   libSystem.B.dylib                 0x93b156e1 _pthread_cond_wait + 1066
    2   libSystem.B.dylib                 0x93b445a8 pthread_cond_timedwait_relative_np + 47
    3   com.apple.Foundation              0x934188e8 -[NSCondition waitUntilDate:] + 453
    4   com.apple.Foundation              0x933d13b1 -[NSConditionLock lockWhenCondition:beforeDate:] + 279
    5   com.apple.Foundation              0x933d1294 -[NSConditionLock lockWhenCondition:] + 69
    6   com.apple.proxtcore               0x0175b702 -[XTMsgQueue waitForMessage] + 50
    7   com.apple.proxtcore               0x0175a6b0 -[XTThread run:] + 416
    8   com.apple.Foundation              0x933dc4c4 -[NSThread main] + 45
    9   com.apple.Foundation              0x933dc474 __NSThread__main__ + 1499
    10  libSystem.B.dylib                 0x93b15259 _pthread_start + 345
    11  libSystem.B.dylib                 0x93b150de thread_start + 34
    Thread 15:
    0   libSystem.B.dylib                 0x93ae7b5a semaphore_timedwait_signal_trap + 10
    1   libSystem.B.dylib                 0x93b156e1 _pthread_cond_wait + 1066
    2   libSystem.B.dylib                 0x93b445a8 pthread_cond_timedwait_relative_np + 47
    3   com.apple.Foundation              0x934188e8 -[NSCondition waitUntilDate:] + 453
    4   com.apple.Foundation              0x933d13b1 -[NSConditionLock lockWhenCondition:beforeDate:] + 279
    5   com.apple.Foundation              0x933d1294 -[NSConditionLock lockWhenCondition:] + 69
    6   com.apple.proxtcore               0x0175b702 -[XTMsgQueue waitForMessage] + 50
    7   com.apple.proxtcore               0x0175a6b0 -[XTThread run:] + 416
    8   com.apple.Foundation              0x933dc4c4 -[NSThread main] + 45
    9   com.apple.Foundation              0x933dc474 __NSThread__main__ + 1499
    10  libSystem.B.dylib                 0x93b15259 _pthread_start + 345
    11  libSystem.B.dylib                 0x93b150de thread_start + 34
    Thread 16:
    0   libSystem.B.dylib                 0x93ae7b5a semaphore_timedwait_signal_trap + 10
    1   libSystem.B.dylib                 0x93b156e1 _pthread_cond_wait + 1066
    2   libSystem.B.dylib                 0x93b445a8 pthread_cond_timedwait_relative_np + 47
    3   com.apple.Foundation              0x934188e8 -[NSCondition waitUntilDate:] + 453
    4   com.apple.Foundation              0x933d13b1 -[NSConditionLock lockWhenCondition:beforeDate:] + 279
    5   com.apple.Foundation              0x933d1294 -[NSConditionLock lockWhenCondition:] + 69
    6   com.apple.proxtcore               0x0175b702 -[XTMsgQueue waitForMessage] + 50
    7   com.apple.proxtcore               0x0175a6b0 -[XTThread run:] + 416
    8   com.apple.Foundation              0x933dc4c4 -[NSThread main] + 45
    9   com.apple.Foundation              0x933dc474 __NSThread__main__ + 1499
    10  libSystem.B.dylib                 0x93b15259 _pthread_start + 345
    11  libSystem.B.dylib                 0x93b150de thread_start + 34
    Thread 17:
    0   libSystem.B.dylib                 0x93ae7b5a semaphore_timedwait_signal_trap + 10
    1   libSystem.B.dylib                 0x93b156e1 _pthread_cond_wait + 1066
    2   libSystem.B.dylib                 0x93b445a8 pthread_cond_timedwait_relative_np + 47
    3   com.apple.Foundation              0x934188e8 -[NSCondition waitUntilDate:] + 453
    4   com.apple.Foundation              0x933d13b1 -[NSConditionLock lockWhenCondition:beforeDate:] + 279
    5   com.apple.Foundation              0x933d1294 -[NSConditionLock lockWhenCondition:] + 69
    6   com.apple.proxtcore               0x0175b702 -[XTMsgQueue waitForMessage] + 50
    7   com.apple.proxtcore               0x0175a6b0 -[XTThread run:] + 416
    8   com.apple.Foundation              0x933dc4c4 -[NSThread main] + 45
    9   com.apple.Foundation              0x933dc474 __NSThread__main__ + 1499
    10  libSystem.B.dylib                 0x93b15259 _pthread_start + 345
    11  libSystem.B.dylib                 0x93b150de thread_start + 34
    Thread 18:
    0   libSystem.B.dylib                 0x93ae7b5a semaphore_timedwait_signal_trap + 10
    1   libSystem.B.dylib                 0x93b156e1 _pthread_cond_wait + 1066
    2   libSystem.B.dylib                 0x93b445a8 pthread_cond_timedwait_relative_np + 47
    3   com.apple.Foundation              0x934188e8 -[NSCondition waitUntilDate:] + 453
    4   com.apple.Foundation              0x933d13b1 -[NSConditionLock lockWhenCondition:beforeDate:] + 279
    5   com.apple.Foundation              0x933d1294 -[NSConditionLock lockWhenCondition:] + 69
    6   com.apple.proxtcore               0x0175b702 -[XTMsgQueue waitForMessage] + 50
    7   com.apple.proxtcore               0x0175a6b0 -[XTThread run:] + 416
    8   com.apple.Foundation              0x933dc4c4 -[NSThread main] + 45
    9   com.apple.Foundation              0x933dc474 __NSThread__main__ + 1499
    10  libSystem.B.dylib                 0x93b15259 _pthread_start + 345
    11  libSystem.B.dylib                 0x93b150de thread_start + 34
    Thread 19:
    0   libSystem.B.dylib                 0x93ae7b5a semaphore_timedwait_signal_trap + 10
    1   libSystem.B.dylib                 0x93b156e1 _pthread_cond_wait + 1066
    2   libSystem.B.dylib                 0x93b445a8 pthread_cond_timedwait_relative_np + 47
    3   com.apple.Foundation              0x934188e8 -[NSCondition waitUntilDate:] + 453
    4   com.apple.Foundation              0x933d13b1 -[NSConditionLock lockWhenCondition:beforeDate:] + 279
    5   com.apple.Foundation              0x933d1294 -[NSConditionLock lockWhenCondition:] + 69
    6   com.apple.proxtcore               0x0175b702 -[XTMsgQueue waitForMessage] + 50
    7   com.apple.proxtcore               0x0175a6b0 -[XTThread run:] + 416
    8   com.apple.Foundation              0x933dc4c4 -[NSThread main] + 45
    9   com.apple.Foundation              0x933dc474 __NSThread__main__ + 1499
    10  libSystem.B.dylib                 0x93b15259 _pthread_start + 345
    11  libSystem.B.dylib                 0x93b150de thread_start + 34
    Thread 20:
    0   libSystem.B.dylib                 0x93ae7b5a semaphore_timedwait_signal_trap + 10
    1   libSystem.B.dylib                 0x93b156e1 _pthread_cond_wait + 1066
    2   libSystem.B.dylib                 0x93b445a8 pthread_cond_timedwait_relative_np + 47
    3   com.apple.Foundation              0x934188e8 -[NSCondition waitUntilDate:] + 453
    4   com.apple.Foundation              0x933d13b1 -[NSConditionLock lockWhenCondition:beforeDate:] + 279
    5   com.apple.Foundation              0x933d1294 -[NSConditionLock lockWhenCondition:] + 69
    6   com.apple.proxtcore               0x0175b702 -[XTMsgQueue waitForMessage] + 50
    7   com.apple.proxtcore               0x0175a6b0 -[XTThread run:] + 416
    8   com.apple.Foundation              0x933dc4c4 -[NSThread main] + 45
    9   com.apple.Foundation              0x933dc474 __NSThread__main__ + 1499
    10  libSystem.B.dylib                 0x93b15259 _pthread_start + 345
    11  libSystem.B.dylib                 0x93b150de thread_start + 34
    Thread 21:
    0   libSystem.B.dylib                 0x93ae7b5a semaphore_timedwait_signal_trap + 10
    1   libSystem.B.dylib                 0x93b156e1 _pthread_cond_wait + 1066
    2   libSystem.B.dylib                 0x93b445a8 pthread_cond_timedwait_relative_np + 47
    3   com.apple.Foundation              0x934188e8 -[NSCondition waitUntilDate:] + 453
    4   com.apple.Foundation              0x933d13b1 -[NSConditionLock lockWhenCondition:beforeDate:] + 279
    5   com.apple.Foundation              0x933d1294 -[NSConditionLock lockWhenCondition:] + 69
    6   com.apple.proxtcore               0x0175b702 -[XTMsgQueue waitForMessage] + 50
    7   com.apple.proxtcore               0x0175a6b0 -[XTThread run:] + 416
    8   com.apple.Foundation              0x933dc4c4 -[NSThread main] + 45
    9   com.apple.Foundation              0x933dc474 __NSThread__main__ + 1499
    10  libSystem.B.dylib                 0x93b15259 _pthread_start + 345
    11  libSystem.B.dylib                 0x93b150de thread_start + 34
    Thread 22:
    0   libSystem.B.dylib                 0x93ae7b5a semaphore_timedwait_signal_trap + 10
    1   libSystem.B.dylib                 0x93b156e1 _pthread_cond_wait + 1066
    2   libSystem.B.dylib                 0x93b445a8 pthread_cond_timedwait_relative_np + 47
    3   com.apple.Foundation              0x934188e8 -[NSCondition waitUntilDate:] + 453
    4   com.apple.Foundation              0x933d13b1 -[NSConditionLock lockWhenCondition:beforeDate:] + 279
    5   com.apple.Foundation              0x933d1294 -[NSConditionLock lockWhenCondition:] + 69
    6   com.apple.proxtcore               0x0175b702 -[XTMsgQueue waitForMessage] + 50
    7   com.apple.proxtcore               0x0175a6b0 -[XTThread run:] + 416
    8   com.apple.Foundation              0x933dc4c4 -[NSThread main] + 45
    9   com.apple.Foundation              0x933dc474 __NSThread__main__ + 1499
    10  libSystem.B.dylib                 0x93b15259 _pthread_start + 345
    11  libSystem.B.dylib                 0x93b150de thread_start + 34
    Thread 23:
    0   libSystem.B.dylib                 0x93ae7b5a semaphore_timedwait_signal_trap + 10
    1   libSystem.B.dylib                 0x93b156e1 _pthread_cond_wait + 1066
    2   libSystem.B.dylib                 0x93b445a8 pthread_cond_timedwait_relative_np + 47
    3   com.apple.Foundation              0x934188e8 -[NSCondition waitUntilDate:] + 453
    4   com.apple.Foundation              0x933d13b1 -[NSConditionLock lockWhenCondition:beforeDate:] + 279
    5   com.apple.Foundation              0x933d1294 -[NSConditionLock lockWhenCondition:] + 69
    6   com.apple.proxtcore               0x0175b702 -[XTMsgQueue waitForMessage] + 50
    7   com.apple.proxtcore               0x0175a6b0 -[XTThread run:] + 416
    8   com.apple.Foundation              0x933dc4c4 -[NSThread main] + 45
    9   com.apple.Foundation              0x933dc474 __NSThread__main__ + 1499
    10  libSystem.B.dylib                 0x93b15259 _pthread_start + 345
    11  libSystem.B.dylib                 0x93b150de thread_start + 34
    Thread 24:
    0   libSystem.B.dylib                 0x93ae7b5a semaphore_timedwait_signal_trap + 10
    1   libSystem.B.dylib                 0x93b156e1 _pthread_cond_wait + 1066
    2   libSystem.B.dylib                 0x93b445a8 pthread_cond_timedwait_relative_np + 47
    3   com.apple.Foundation              0x934188e8 -[NSCondition waitUntilDate:] + 453
    4   com.apple.Foundation              0x933d13b1 -[NSConditionLock lockWhenCondition:beforeDate:] + 279
    5   com.apple.Foundation              0x933d1294 -[NSConditionLock lockWhenCondition:] + 69
    6   com.apple.proxtcore               0x0175b702 -[XTMsgQueue waitForMessage] + 50
    7   com.apple.proxtcore               0x0175a6b0 -[XTThread run:] + 416
    8   com.apple.Foundation              0x933dc4c4 -[NSThread main] + 45
    9   com.apple.Foundation              0x933dc474 __NSThread__main__ + 1499
    10  libSystem.B.dylib                 0x93b15259 _pthread_start + 345
    11  libSystem.B.dylib                 0x93b150de thread_start + 34
    Thread 25:
    0   libSystem.B.dylib                 0x93ae7afa mach_msg_trap + 10
    1   libSystem.B.dylib                 0x93ae8267 mach_msg + 68
    2   com.apple.iLifeSQLAccess          0x0184df41 -[RALatchTrigger wait] + 81
    3   com.apple.iLifeSQLAccess          0x0184ddc9 -[RAOperationQueueImpl _workThread] + 217
    4   com.apple.Foundation              0x933dc4c4 -[NSThread main] + 45
    5   com.apple.Foundation              0x933dc474 __NSThread__main__ + 1499
    6   libSystem.B.dylib                 0x93b15259 _pthread_start + 345
    7   libSystem.B.dylib                 0x93b150de thread_start + 34
    Thread 26:
    0   libSystem.B.dylib                 0x93ae7afa mach_msg_trap + 10
    1   libSystem.B.dylib                 0x93ae8267 mach_msg + 68
    2   com.apple.iLifeSQLAccess          0x0184df41 -[RALatchTrigger wait] + 81
    3   com.apple.iLifeSQLAccess          0x0184ddc9 -[RAOperationQueueImpl _workThread] + 217
    4   com.apple.Foundation              0x933dc4c4 -[NSThread main] + 45
    5   com.apple.Foundation              0x933dc474 __NSThread__main__ + 1499
    6   libSystem.B.dylib                 0x93b15259 _pthread_start + 345
    7   libSystem.B.dylib                 0x93b150de thread_start + 34
    Thread 27:
    0   libSystem.B.dylib                 0x93ae7b5a semaphore_timedwait_signal_trap + 10
    1   libSystem.B.dylib                 0x93b156e1 _pthread_cond_wait + 1066
    2   libSystem.B.dylib                 0x93b445a8 pthread_cond_timedwait_relative_np + 47
    3   com.apple.Foundation              0x934188e8 -[NSCondition waitUntilDate:] + 453
    4   com.apple.Foundation              0x933d13b1 -[NSConditionLock lockWhenCondition:beforeDate:] + 279
    5   com.apple.Foundation              0x933d1294 -[NSConditionLock lockWhenCondition:] + 69
    6   com.apple.RedRock                 0x01d46ac1 -[RKAsyncImageRenderer _backgroundRenderThread:] + 177
    7   com.apple.proxtcore               0x01765626 -[XTThreadSendOnlyDetached _detachedMessageHandler:] + 166
    8   com.apple.proxtcore               0x0175ccb5 -[XTSubscription postMessage:] + 181
    9   com.apple.proxtcore               0x0175c406 -[XTDistributor distributeMessage:] + 726
    10  com.apple.proxtcore               0x0175bf55 -[XTThread handleMessage:] + 1285
    11  com.apple.proxtcore               0x0175a6c6 -[XTThread run:] + 438
    12  com.apple.Foundation              0x933dc4c4 -[NSThread main] + 45
    13  com.apple.Foundation              0x933dc474 __NSThread__main__ + 1499
    14  libSystem.B.dylib                 0x93b15259 _pthread_start + 345
    15  libSystem.B.dylib                 0x93b150de thread_start + 34
    Thread 28:  Dispatch queue: com.apple.root.default-priority
    0   libSystem.B.dylib                 0x93b15aa2 __semwait_signal + 10
    1   libSystem.B.dylib                 0x93b1575e _pthread_cond_wait + 1191
    2   libSystem.B.dylib                 0x93b173f8 pthread_cond_wait$UNIX2003 + 73
    3   com.apple.Foundation              0x934046b3 -[NSCondition wait] + 316
    4   com.apple.Foundation              0x933f1d35 -[NSObject(NSThreadPerformAdditions) performSelector:onThread:withObject:waitUntilDone:modes:] + 1111
    5   com.apple.Foundation              0x9340480f -[NSObject(NSThreadPerformAdditions) performSelectorOnMainThread:withObject:waitUntilDone:] + 184
    6   ....AccountConfigurationPlugin    0x0129210f -[AccountConfigurationManagerBase accountInformationForAccountType:accountIdentifier:] + 143
    7   com.apple.iPhoto                  0x00060bdf 0x1000 + 392159
    8   ...le.iPhoto.MobileMePublisher    0x1f111f88 _removeUserName + 59848
    9   ....AccountConfigurationPlugin    0x0129605a -[AccountConfigurationProfileInformationDownloadOperation main] + 234
    10  com.apple.Foundation              0x93403b5a -[__NSOperationInternal start] + 705
    11  com.apple.Foundation              0x934f40bb ____NSOQSchedule_block_invoke_2 + 119
    12  libSystem.B.dylib                 0x93b1ba24 _dispatch_call_block_and_release + 16
    13  libSystem.B.dylib                 0x93b0dcf2 _dispatch_worker_thread2 + 228
    14  libSystem.B.dylib                 0x93b0d781 _pthread_wqthread + 390
    15  libSystem.B.dylib                 0x93b0d5c6 start_wqthread + 30
    Thread 29:
    0   libSystem.B.dylib                 0x93b15aa2 __semwait_signal + 10
    1   libSystem.B.dylib                 0x93b1575e _pthread_cond_wait + 1191
    2   libSystem.B.dylib                 0x93b173f8 pthread_cond_wait$UNIX2003 + 73
    3   com.apple.Foundation              0x934046b3 -[NSCondition wait] + 316
    4   com.apple.iPhoto                  0x0005c66a 0x1000 + 374378
    5   com.apple.iPhoto                  0x0005c5c2 0x1000 + 374210
    6   com.apple.CoreFoundation          0x97ac8ead __invoking___ + 29
    7   com.apple.CoreFoundation          0x97ac8e18 -[NSInvocation invoke] + 136
    8   com.apple.RedRock                 0x01d68e61 -[RKInvoker _invokeTarget:] + 33
    9   com.apple.RedRock                 0x01d7a6c4 -[RKInvoker _invokeTargetWithPool:] + 68
    10  com.apple.proxtcore               0x01765626 -[XTThreadSendOnlyDetached _detachedMessageHandler:] + 166
    11  com.apple.proxtcore               0x0175ccb5 -[XTSubscription postMessage:] + 181
    12  com.apple.proxtcore               0x0175c406 -[XTDistributor distributeMessage:] + 726
    13  com.apple.proxtcore               0x0175bf55 -[XTThread handleMessage:] + 1285
    14  com.apple.proxtcore               0x0175a6c6 -[XTThread run:] + 438
    15  com.apple.Foundation              0x933dc4c4 -[NSThread main] + 45
    16  com.apple.Foundation              0x933dc474 __NSThread__main__ + 1499
    17  libSystem.B.dylib                 0x93b15259 _pthread_start + 345
    18  libSystem.B.dylib                 0x93b150de thread_start + 34
    Thread 30 Crashed:
    0   libSystem.B.dylib                 0xffff0c58 __memcpy + 1208
    1   com.apple.ImageIO.framework       0x95120aa3 CGImageReadGetBytesAtOffset + 309
    2   com.apple.ImageIO.framework       0x95123a4d CGImageReadSessionGetBytes + 48
    3   com.apple.ImageIO.framework       0x9513a392 fill_input_buffer + 214
    4   libJPEG.dylib                     0x9a0bfcf3 decode_mcu_optimized + 3195
    5   libJPEG.dylib                     0x9a0bee74 decompress_onepass + 138
    6   libJPEG.dylib                     0x9a0ca4c1 process_data_simple_main + 52
    7   libJPEG.dylib                     0x9a0bea97 _cg_jpeg_read_scanlines + 150
    8   com.apple.ImageIO.framework       0x9513ca11 copyImageBlockSetJPEG + 2978
    9   com.apple.ImageIO.framework       0x95127f95 ImageProviderCopyImageBlockSetCallback + 174
    10  com.apple.CoreGraphics            0x90bb552b CGImageProviderCopyImageBlockSet + 228
    11  com.apple.CoreGraphics            0x90bb9d3c img_blocks_create + 348
    12  com.apple.CoreGraphics            0x90b51305 img_data_lock + 2921
    13  com.apple.CoreGraphics            0x90b4fb4a CGSImageDataLock + 172
    14  libRIP.A.dylib                    0x95839751 ripc_AcquireImage + 2446
    15  libRIP.A.dylib                    0x958373c6 ripc_DrawImage + 1245
    16  com.apple.CoreGraphics            0x90b4f7c4 CGContextDrawImage + 450
    17  com.apple.iPhoto                  0x000b1cfc 0x1000 + 724220
    18  com.apple.iPhoto                  0x003ed5ef 0x1000 + 4113903
    19  com.apple.iPhoto                  0x000b0d17 0x1000 + 720151
    20  com.apple.iPhoto                  0x0033e710 0x1000 + 3397392
    21  com.apple.iPhoto                  0x000b05c7 0x1000 + 718279
    22  com.apple.iPhoto                  0x001668b9 0x1000 + 1464505
    23  com.apple.iLifeFaceRecognition    0x012aa4b0 -[FaceRecognitionManager detectFacesInPhoto:userInfo:options:delegate:context:] + 149
    24  com.apple.RedRock                 0x01dc27c5 -[RKFaceDetectionWorker detectFacesForMaster:aggressive:] + 1125
    25  com.apple.iPhoto                  0x009ea972 0x1000 + 10393970
    26  com.apple.RedRock                 0x01dc2218 -[RKFaceDetectionWorker performJob:] + 440
    27  com.apple.proxtcore               0x0175ccb5 -[XTSubscription postMessage:] + 181
    28  com.apple.proxtcore               0x0175c406 -[XTDistributor distributeMessage:] + 726
    29  com.apple.proxtcore               0x0175bf55 -[XTThread handleMessage:] + 1285
    30  com.apple.proxtcore               0x0175a6c6 -[XTThread run:] + 438
    31  com.apple.Foundation              0x933dc4c4 -[NSThread main] + 45
    32  com.apple.Foundation              0x933dc474 __NSThread__main__ + 1499
    33  libSystem.B.dylib                 0x93b15259 _pthread_start + 345
    34  libSystem.B.dylib                 0x93b150de thread_start + 34
    Thread 31:
    0   libSystem.B.dylib                 0x93ae7afa mach_msg_trap + 10
    1   libSystem.B.dylib                 0x93ae8267 mach_msg + 68
    2   com.apple.iLifeSQLAccess          0x0184df41 -[RALatchTrigger wait] + 81
    3   com.apple.iLifeSQLAccess          0x0184ddc9 -[RAOperationQueueImpl _workThread] + 217
    4   com.apple.Foundation              0x933dc4c4 -[NSThread main] + 45
    5   com.apple.Foundation              0x933dc474 __NSThread__main__ + 1499
    6   libSystem.B.dylib                 0x93b15259 _pthread_start + 345
    7   libSystem.B.dylib                 0x93b150de thread_start + 34
    Thread 32:  com.apple.CFSocket.private
    0   libSystem.B.dylib                 0x93b06ac6 select$DARWIN_EXTSN + 10
    1   com.apple.CoreFoundation          0x97acbc53 __CFSocketManager + 1091
    2   libSystem.B.dylib                 0x93b15259 _pthread_start + 345
    3   libSystem.B.dylib                 0x93b150de thread_start + 34
    Thread 33:
    0   libSystem.B.dylib                 0x93b15aa2 __semwait_signal + 10
    1   libSystem.B.dylib                 0x93b1575e _pthread_cond_wait + 1191
    2   libSystem.B.dylib                 0x93b173f8 pthread_cond_wait$UNIX2003 + 73
    3   com.apple.Foundation              0x934046b3 -[NSCondition wait] + 316
    4   com.apple.Foundation              0x933f1d35 -[NSObject(NSThreadPerformAdditions) performSelector:onThread:withObject:waitUntilDone:modes:] + 1111
    5   com.apple.Foundation              0x9340480f -[NSObject(NSThreadPerformAdditions) performSelectorOnMainThread:withObject:waitUntilDone:] + 184
    6   com.apple.RedRock                 0x01d68c75 -[RKInvoker forwardInvocation:] + 133
    7   com.apple.CoreFoundation          0x97ac9ca4 ___forwarding___ + 1108
    8   com.apple.CoreFoundation          0x97ac97d2 _CF_forwarding_prep_0 + 50
    9   com.apple.iPhoto                  0x0008c98c 0x1000 + 571788
    10  com.apple.iPhoto                  0x0008c1c6 0x1000 + 569798
    11  com.apple.iPhoto                  0x0008bf7f 0x1000 + 569215
    12  com.apple.iPhoto                  0x0008be84 0x1000 + 568964
    13  com.apple.iPhoto                  0x0008bdd5 0x1000 + 568789
    14  com.apple.CoreFoundation          0x97ac8ead __invoking___ + 29
    15  com.apple.CoreFoundation          0x97ac8e18 -[NSInvocation invoke] + 136
    16  com.apple.RedRock                 0x01d68e61 -[RKInvoker _invokeTarget:] + 33
    17  com.apple.RedRock                 0x01d7a6c4 -[RKInvoker _invokeTargetWithPool:] + 68
    18  com.apple.proxtcore               0x01765626 -[XTThreadSendOnlyDetached _detachedMessageHandler:] + 166
    19  com.apple.proxtcore               0x0175ccb5 -[XTSubscription postMessage:] + 181
    20  com.apple.proxtcore               0x0175c406 -[XTDistributor distributeMessage:] + 726
    21  com.apple.proxtcore               0x0175bf55 -[XTThread handleMessage:] + 1285
    22  com.apple.proxtcore               0x0175a6c6 -[XTThread run:] + 438
    23  com.apple.Foundation              0x933dc4c4 -[NSThread main] + 45
    24  com.apple.Foundation              0x933dc474 __NSThread__main__ + 1499
    25  libSystem.B.dylib                 0x93b15259 _pthread_start + 345
    26  libSystem.B.dylib                 0x93b150de thread_start + 34
    Thread 34:
    0   libSystem.B.dylib                 0x93b15aa2 __semwait_signal + 10
    1   libSystem.B.dylib                 0x93b1575e _pthread_cond_wait + 1191
    2   libSystem.B.dylib                 0x93b173f8 pthread_cond_wait$UNIX2003 + 73
    3   com.apple.CoreVideo               0x92e2b6fe CVDisplayLink::runIOThread() + 1016
    4   com.apple.CoreVideo               0x92e2b2ea startIOThread(void*) + 156
    5   libSystem.B.dylib                 0x93b15259 _pthread_start + 345
    6   libSystem.B.dylib                 0x93b150de thread_start + 34
    Thread 30 crashed with X86 Thread State (32-bit):
      eax: 0xffff0c40  ebx: 0x00503619  ecx: 0x00000018  edx: 0xfffffb80
      edi: 0x232f9790  esi: 0x2398d44a  ebp: 0xb4c2a478  esp: 0xb4c2a470
       ss: 0x0000001f  efl: 0x00010282  eip: 0xffff0c58   cs: 0x00000017
       ds: 0x0000001f   es: 0x0000001f   fs: 0x0000001f   gs: 0x00000037
      cr2: 0x2398d000
    Binary Images:
        0x1000 -   0xd1afeb  com.apple.iPhoto 9.2.1 (9.2.1) <68601E93-E4CF-3B4C-AFFD-4781A92DD58B> /Applications/iPhoto.app/Contents/MacOS/iPhoto
      0xe83000 -   0xf6afef  org.python.python 2.6.1 (2.6.1) <4FFD855C-1C5A-9206-A695-8C9904F1DA84> /System/Library/Frameworks/Python.framework/Versions/2.6/Python
      0xfb5000 -  0x1155ffb  com.apple.geode 1.5 (151.51) <28D29759-F356-3608-B9CF-3031F3299B1B> /Applications/iPhoto.app/Contents/Frameworks/Geode.framework/Versions/A/Geode
    0x11f5000 -  0x11f7fff  com.apple.iLifePhotoStreamConfiguration 2.2 (2.2) <4FA61CE9-1718-3E07-9896-0023A2A49699> /Applications/iPhoto.app/Contents/Frameworks/iLifePhotoStreamConfiguration.fram ework/Versions/A/iLifePhotoStreamConfiguration
    0x11fd000 -  0x120cfff  com.apple.iLifeAssetManagement 2.0 (2.33) <8346DE35-5F86-3338-9913-B035B3EE5435> /Applications/iPhoto.app/Contents/Frameworks/iLifeAssetManagement.framework/Ver sions/A/iLifeAssetManagement
    0x1219000 -  0x1241ffb  com.apple.iPhoto.Tessera 1.1 (60.10) <7BA9184E-0A00-3083-8322-772ECBDD30C9> /Applications/iPhoto.app/Contents/Frameworks/Tessera.framework/Versions/A/Tesse ra
    0x1252000 -  0x1279ffb  com.apple.iPhoto.Tellus 1.3 (60.10) <4AABB0BC-AC97-3EE4-BF0F-D8499DDB57C0> /Applications/iPhoto.app/Contents/Frameworks/Tellus.framework/Versions/A/Tellus
    0x128e000 -  0x1298fff  com.apple.iphoto.AccountConfigurationPlugin 1.2 (1.2) <3B68F126-D783-3F86-AF04-A0F6A459BE67> /Applications/iPhoto.app/Contents/Frameworks/AccountConfigurationPlugin.framewo rk/Versions/A/AccountConfigurationPlugin
    0x12a3000 -  0x12baff7  com.apple.iLifeFaceRecognition 1.0 (21) <AD53D7A2-F0B2-FF76-5C6D-C23B234AB50E> /Library/Frameworks/iLifeFaceRecognition.framework/Versions/A/iLifeFaceRecognit ion
    0x12c9000 -  0x12f4fff  com.apple.DiscRecordingUI 5.0.9 (5090.4.2) <3E6CC284-2F1B-9EDB-0B56-872F962669A2> /System/Library/Frameworks/DiscRecordingUI.framework/Versions/A/DiscRecordingUI
    0x130c000 -  0x1317fff  com.apple.UpgradeChecker 9.2 (9.2) <2040F6E1-7E77-3C64-8B2C-F3B9503C7402> /Applications/iPhoto.app/Contents/Frameworks/UpgradeChecker.framework/Versions/ A/UpgradeChecker
    0x131f000 -  0x131ffff  com.apple.iLifeSlideshow 2.3.0 (847) <E98D197B-DAE9-3728-A2DA-C66966ABC6EF> /Library/Frameworks/iLifeSlideshow.framework/Versions/A/iLifeSlideshow
    0x1322000 -  0x1598ffb  com.apple.iLifePageLayout 1.3 (150.37) <F71F8978-B7FE-3E7A-91E7-C79862B7E827> /Library/Frameworks/iLifePageLayout.framework/Versions/A/iLifePageLayout
    0x1662000 -  0x16fdff7  com.apple.MobileMe 11 (1.0.3) <BCE66DE5-97D5-3E78-AC9C-17353AFA6A34> /Applications/iPhoto.app/Contents/Frameworks/MobileMe.framework/Versions/A/Mobi leMe
    0x1757000 -  0x17b7fff  com.apple.proxtcore 1.3 (140.57) <37B97974-E262-3CA8-AF41-2A522C849E82> /Applications/iPhoto.app/Contents/Frameworks/ProXTCore.framework/Versions/A/Pro XTCore
    0x1809000 -  0x18e8ff3  com.apple.iLifeSQLAccess 1.6 (30.12) <C59BE368-DD76-3E91-8F89-2A97E99FE282> /Library/Frameworks/iLifeSQLAccess.framework/Versions/A/iLifeSQLAccess
    0x1916000 -  0x1942fef  com.apple.ProUtils 1.1 (120.14) <44F86ACC-A361-3837-9068-B3B8802E6B39> /Applications/iPhoto.app/Contents/Frameworks/ProUtils.framework/Versions/A/ProU tils
    0x195d000 -  0x19b0ff7  com.apple.iLifeKit 1.3 (90.16) <607E7C33-6A90-39A3-96F2-6C4C8160A4DC> /Library/Frameworks/iLifeKit.framework/Versions/A/iLifeKit
    0x19e1000 -  0x1c19fff  com.apple.prokit 7.0.1 (1331.1) <327AFA15-E955-02EF-3E57-E2558B645698> /System/Library/PrivateFrameworks/ProKit.framework/Versions/A/ProKit
    0x1d21000 -  0x215efe3  com.apple.RedRock 1.8.1 (231.89) <6217B083-7AD4-355E-8ED3-53318A609015> /Applications/iPhoto.app/Contents/Frameworks/RedRock.framework/Versions/A/RedRo ck
    0x22ef000 -  0x22f6ff7  com.apple.MediaSync 1.1 (130.12) <3E7E1340-C3C8-3F1A-BB4B-E8C3A3EE7777> /Applications/iPhoto.app/Contents/Frameworks/MediaSync.framework/Versions/A/Med iaSync
    0x22fe000 -  0x22fffff +eOkaoCom.dylib ??? (???) <2DE16B47-23E7-73DB-1297-C928E40DFC31> /Library/Frameworks/iLifeFaceRecognition.framework/Versions/A/Resources/eOkaoCo m.dylib
    0x2303000 -  0x2328ff2 +eOkaoPt.dylib ??? (???) <831D49D0-43A0-21A0-2662-2207E3BE0FF6> /Library/Frameworks/iLifeFaceRecognition.framework/Versions/A/Resources/eOkaoPt .dylib
    0x232f000 -  0x2363fe7 +eOkaoDt.dylib ??? (???) <5693A28E-8C94-0F5F-150E-3B17CF753F64> /Library/Frameworks/iLifeFaceRecognition.framework/Versions/A/Resources/eOkaoDt .dylib
    0x2369000 -  0x24d0fff +eOkaoFr.dylib ??? (???) <E355FB47-C5EF-50CF-621A-9B17A50E2850> /Library/Frameworks/iLifeFaceRecognition.framework/Versions/A/Resources/eOkaoFr .dylib
    0x24d4000 -  0x24fdff7  com.apple.iLifeSlideshowCore 2.3.0 (233) <AFEB793C-AB48-3FEC-BE49-393824CB92F9> /Library/Frameworks/iLifeSlideshow.framework/Versions/A/Frameworks/iLifeSlidesh owCore.framework/Versions/A/iLifeSlideshowCore
    0x2510000 -  0x261ffef  com.apple.iLifeSlideshowProducer 2.3.0 (613) <160187AE-D805-3479-887E-B5A5FBE96F44> /Library/Frameworks/iLifeSlideshow.framework/Versions/A/Frameworks/iLifeSlidesh owProducer.framework/Versions/A/iLifeSlideshowProducer
    0x266d000 -  0x27cbfe3  com.apple.iLifeSlideshowRenderer 2.3.0 (676) <76D67C6D-9148-380F-A356-ADF82550500E> /Library/Frameworks/iLifeSlideshow.framework/Versions/A/Frameworks/iLifeSlidesh owRenderer.framework/Versions/A/iLifeSlideshowRenderer
    0x2829000 -  0x2842ff7  com.apple.iLifeSlideshowExporter 2.3.0 (252) <923A15E3-2BB3-35C6-AD09-36E1D8318BC6> /Library/Frameworks/iLifeSlideshow.framework/Versions/A/Frameworks/iLifeSlidesh owExporter.framework/Versions/A/iLifeSlideshowExporter
    0x284f000 -  0x2878fe3  com.apple.audio.CoreAudioKit 1.6.1 (1.6.1) <7FFBD485-5251-776A-CC44-4470DD84112B> /System/Library/Frameworks/CoreAudioKit.framework/Versions/A/CoreAudioKit
    0x2889000 -  0x290aff7  com.apple.NyxAudioAnalysis 12.2 (12.2) <278C9474-A560-4CCD-0414-DCAC5F2E2BB1> /Library/Frameworks/NyxAudioAnalysis.framework/Versions/A/NyxAudioAnalysis
    0x2929000 -  0x2950fff  com.apple.ExpressCheckout 1.0 (1.0) <F2DB3C97-F03F-3152-B436-B2DCB6100857> /Library/Frameworks/iLifePageLayout.framework/Versions/A/Frameworks/ExpressChec kout.framework/Versions/A/ExpressCheckout
    0x296a000 -  0x29a5ff3  com.apple.iLifeImageAnalysis 3.0 (3) <87BA0439-1AA8-321A-844A-35A5D1B7898D> /Library/Frameworks/iLifePageLayout.framework/Versions/A/Frameworks/iLifeImageA nalysis.framework/Versions/A/iLifeImageAnalysis
    0x2b31000 -  0x2b37fff  com.apple.iPhoto.RSSPublisher 1.1 (1.1) <FCD56B7E-C4BB-3310-8253-8AFFE6DC7754> /Applications/iPhoto.app/Contents/PlugIns/RSSPublisher.publisher/Contents/MacOS /RSSPublisher
    0x2b3e000 -  0x2b41ff7  com.apple.iphoto.accountconfig.Facebook 1.2 (1.2) <209B424C-22A7-3CC2-96F4-713BEAE22135> /Applications/iPhoto.app/Contents/PlugIns/Facebook.accountconfigplugin/Contents /MacOS/Facebook
    0x14ec9000 - 0x14ecdff7  libcldcpuengine.dylib 1.5.6 (compatibility 1.0.0) <EF10CD42-F20F-EB7B-FC29-2AA973D5758D> /System/Library/Frameworks/OpenCL.framework/Libraries/libcldcpuengine.dylib
    0x14ed2000 - 0x14ed3ff7  com.apple.textencoding.unicode 2.3 (2.3) <78A61FD5-70EE-19EA-48D4-3481C640B70D> /System/Library/TextEncodings/Unicode Encodings.bundle/Contents/MacOS/Unicode Encodings
    0x14f18000 - 0x14f1aff7  libclparser.dylib ??? (???) <F1C02810-AEEA-F661-FCED-DEA4EB7524D7> /System/Library/Frameworks/OpenCL.framework/Libraries/libclparser.dylib
    0x1b5fb000 - 0x1b621ffb  com.apple.iPhoto.FacebookPublisher 1.2 (1.2) <BC94960A-3D2A-3B0A-B6A0-F9F3C0011E37> /Applications/iPhoto.app/Contents/PlugIns/FacebookPublisher.publisher/Contents/ MacOS/FacebookPublisher
    0x1b62c000 - 0x1b64bff3  com.apple.iPhoto.FlickrPublisher 1.2 (1.2) <9D3721EC-F982-3D8B-9A7A-B188CCB2B4AA> /Applications/iPhoto.app/Contents/PlugIns/FlickrPublisher.publisher/Contents/Ma cOS/FlickrPublisher
    0x1b655000 - 0x1b65aff7  com.apple.iphoto.accountconfig.Email 9.2 (9.2) <916E237B-D991-3C6F-99CB-CBF9C1743948> /Applications/iPhoto.app/Contents/PlugIns/Email.accountconfigplugin/Contents/Ma cOS/Email
    0x1ddf4000 - 0x1df6dff7  GLEngine ??? (???) <64C74F67-44B5-7DEF-CCA6-C8A9FF9BB60A> /System/Library/Frameworks/OpenGL.framework/Resources/GLEngine.bundle/GLEngine
    0x1df9f000 - 0x1e3b2fef  com.apple.ATIRadeonX2000GLDriver 1.6.36 (6.3.6) <257CAA1D-6573-2932-E344-E96F6C9CDA84> /System/Library/Extensions/ATIRadeonX2000GLDriver.bundle/Contents/MacOS/ATIRade onX2000GLDriver
    0x1e3e4000 - 0x1e408fe7  GLRendererFloat ??? (???) <AD081A9B-1424-1F17-3C68-9803EBA37E8D> /System/Library/Frameworks/OpenGL.framework/Resources/GLRendererFloat.bundle/GL RendererFloat
    0x1e9bc000 - 0x1ea56ff7  unorm8_argb.dylib 1.5.6 (compatibility 1.0.0) <F486B4F7-B6B0-88F5-8A0C-570566F74618> /System/Library/Frameworks/OpenCL.framework/Libraries/ImageFormats/unorm8_argb. dylib
    0x1efa7000 - 0x1efaafff  com.apple.iphoto.accountconfig.Flickr 1.1 (1) <BF134E42-6068-3E8F-928D-B56DFC9E3E8F> /Applications/iPhoto.app/Contents/PlugIns/Flickr.accountconfigplugin/Contents/M acOS/Flickr
    0x1efaf000 - 0x1efb4ffb  com.apple.iphoto.accountconfig.MobileMe 1.1 (1) <BFCC1111-5742-3F60-993A-28D9C00BF15B> /Applications/iPhoto.app/Contents/PlugIns/MobileMe.accountconfigplugin/Contents /MacOS/MobileMe
    0x1f100000 - 0x1f137ff7  com.apple.iPhoto.MobileMePublisher 1.2 (1.2) <FCD043A6-97BE-340E-A930-676FBAAB708C> /Applications/iPhoto.app/Contents/PlugIns/MobileMePublisher.publisher/Contents/ MacOS/MobileMePublisher
    0x8fe00000 - 0x8fe4162b  dyld 132.1 (???) <39AC3185-E633-68AA-7CD6-1230E7F1CEF4> /usr/lib/dyld
    0x90003000 - 0x90017fe7  libbsm.0.dylib ??? (???) <14CB053A-7C47-96DA-E415-0906BA1B78C9> /usr/lib/libbsm.0.dylib
    0x90018000 - 0x90028ff7  com.apple.DSObjCWrappers.Framework 10.6 (134) <81A0B409-3906-A98F-CA9B-A49E75007495> /System/Library/PrivateFrameworks/DSObjCWrappers.framework/Versions/A/DSObjCWra ppers
    0x90029000 - 0x90072fe7  libTIFF.dylib ??? (???) <579DC328-567D-A74C-4BCE-1D1C729E3F6D> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ImageIO.framework/Versions/A/Resources/libTIFF.dylib
    0x900b7000 - 0x900b7ff7  com.apple.ApplicationServices 38 (38) <8012B504-3D83-BFBB-DA65-065E061CFE03> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Application Services
    0x900b8000 - 0x900cdff7  com.apple.iChat.InstantMessage 5.0.5 (747) <4E1D077E-3733-5565-ADB9-C9B2C3EC89BE> /System/Library/Frameworks/InstantMessage.framework/Versions/A/InstantMessage
    0x900ce000 - 0x900d3ff7  com.apple.OpenDirectory 10.6 (10.6) <C1B46982-7D3B-3CC4-3BC2-3E4B595F0231> /System/Library/Frameworks/OpenDirectory.framework/Versions/A/OpenDirectory
    0x902b3000 - 0x902beff7  com.apple.CrashReporterSupport 10.6.7 (258) <8F3E7415-1FFF-0C20-2EAB-6A23B9728728> /System/Library/PrivateFrameworks/CrashReporterSupport.framework/Versions/A/Cra shReporterSupport
    0x90955000 - 0x90a2ffff  com.apple.DesktopServices 1.5.11 (1.5.11) <800F2040-9211-81A

  • HT4864 Thank you! This may sound lame but are these instructions for the blackberry? I'm receiving iCloud emails without problems on my MacBook Pro and I'd rather not mess w/ settings there.

    Thank you! This may sound lame but are these instructions for my blackberry? I'm receiving iCloud emails without problems on my MacBook Pro and I'd rather not mess w/ settings there. Thanks again!

    You don't need to start a new thread to continue a conversation, you can just tack onto the original one. The settings I referred you to are for the Blackberry, since that's the device which is not receiving mail: anything which is working can be left alone.

  • How can I kill all Threads of the same class from within the run() method?

    Ok
    I have a class called Consumer that extends Thread
    I have several Consumer threans running... but, when a certain condition is true (within the run() method) in ANY of the threads, I want to kill ALL the threads of that object.
    is this possible?

    I know this is gonna be too demanding, but can someone please tell me why my Consumer's run() method never reaches the System.out.println( "ALL CONSUMING DONE") line
    Create a multi-threaded prime number calculator that is based on the producer-consumer model
    using semaphores. Your program should be able to check for prime numbers in a range specified
    by the user and with a variable number of threads. Example:
    $ java PrimeFind 3 5000 10000
    should use 1 producer and 2 consumers (3 threads in total, obviously the minimum is 2) to find all
    the prime numbers in the range [5000,10000].
    The producer should: use a buffer to store candidate numbers that have to be checked for
    primality.
    Consumers should: read from the buffer, check if a number is prime and update the status of the
    program accordingly (e.g. show the number on the screen, or save it to a file)
    import java.util.concurrent.Semaphore;
    import java.io.*;
    public class Assign1 {
    static int fromThisNumber;
    static int toThisNumber;
    static int numberOfThreads;
    static int buffer[];
    static Semaphore ready;          /*This semaphore is used by the Producer to signal
                                         an "OK" to the consumers*/
    static Semaphore critical;  /*This is a Mutex semaphore. It allows only 1 consumer
                                         to enter his critical section.
    static Semaphore counter;     /*This semaphore acts as a counter.
                                        Instead of having a global variable
                                         incremented each time, we just release()
                                         this semephore when we find a prime number
                                         Because remember that release() increments permits
    static Producer prod;
    static Consumer cons[];
    static int in=0;
    static int out=0;
    static PrintWriter outFile;
         public static void main (String args[]){
              try{
                   outFile=new PrintWriter(new FileWriter("primes.txt"));
                   }catch(Exception e){}
              numberOfThreads=Integer.parseInt(args[0]);
              fromThisNumber=Integer.parseInt(args[1]);
              toThisNumber=Integer.parseInt(args[2]);
              buffer=new int[Integer.parseInt(args[2])-Integer.parseInt(args[1])+1];
              ready=new Semaphore(0,false); /*We initialise it to 0 because we wait
                                                      for the Producer to produce atleast a
                                                      item. Suppose ready was 1 and if
                                                      Consumer ran first he would be in an
                                                      empty buffer */
              critical=new Semaphore (1,false);/*We initialise it to 1 because when
                                                         the first Consumer thread tries
                                                         to enter its critical section, it
                                                         should be allowed to;
                                                         Subsequent threads will have to
                                                         wait since only 1 thread can
                                                         access its critical section at a time*/
              counter=new Semaphore(0,false); // duh!
              cons=new Consumer[numberOfThreads-1]; /*numberOfThreads-1 because 1 thread
                                                                is taken by the Producer*/
              //Creating Producer object
              prod=new Producer();
              //Creating the Consumer object and start the thread.
              for(int i=0;i<cons.length;i++)
                        cons=new Consumer();
                        cons[i].start();
              prod.start();          
              //Printing to screen and file
    /*          for(int i=0;i<buffer.length;i++)
                   if(buffer[i]!=0)
                             System.out.println(buffer[i]);
                             outFile.println(buffer[i]);
              System.out.println("Total primes found between "+args[1]+" and "+toThisNumber+": "+counter.availablePermits()+"\n primes.txt written");
              outFile.println("Total primes found between "+args[1]+" and "+toThisNumber+": "+counter.availablePermits());
              outFile.close();*/                    
    static class Producer extends Thread {
         public void run(){try{
              while(in<buffer.length)     /*'in' should always be more than 'out'.Oherwise the consumer will try to access an empty index*/
                   {     System.out.println("producing");     
                        buffer[in]=fromThisNumber;
                        in++;
                        fromThisNumber++;
                        ready.release();
              catch (Exception e){e.printStackTrace();}
              System.out.println("ALL PRODUCING DONE");
    static class Consumer extends Thread {
         int tempout=0;
         public void run(){try{
              System.out.println("before while"+this.getId());
              while(tempout<=in)
                   System.out.println("before ready"+this.getId()+" "+ready.availablePermits()+" "+in);
                   ready.acquire();
                   System.out.println("before critical.acquire"+this.getId());
                   critical.acquire();
                   tempout=out;
                   out++;
                   critical.release();               
                   if(!isPrime(buffer[tempout]))
                        {System.out.println(buffer[tempout]+" by "+this.getId());buffer[tempout]=0;}
                   else {counter.release();System.out.println("prime added: "+buffer[tempout]+" by "+this.getId());}
                   critical.acquire();
                   tempout=out;
                   System.out.println("tempout:"+tempout+" of "+this.getId());
                   critical.release();
              System.out.println("ALL CONSUMING DONE"+this.getId());
         catch(Exception e){e.printStackTrace();}
         //Prime number-checking method     
         public boolean isPrime(int n){
              for(int i=2;i<=(n/2);i++)
                   if(n%i==0)
                        return false;
              return true;
    ======================
    import java.util.concurrent.Semaphore;
    import java.io.*;
    /* 3 questions to ask Barlas
    * Why error if I start the Consumer threads before Producer
    * Why does the counter semaphore always give a +1 result at the end
    * Is there a way I can verify that all the work is not being done by only 1 consumer thread? In other words, the workload is being shared properly
    * if I put ready.acquire() outside or inside the while loop, its not making any difference, why?
    * Strangely, its not making any difference if I playing with the release() and aquire() of the semaphores, WHY?!?!
    public class Assign1 {
    static int fromThisNumber;
    static int toThisNumber;
    static int numberOfThreads;
    static int buffer[];
    static Semaphore ready;          /*This semaphore is used by the Producer to signal
                                       an "OK" to the consumers*/
    static Semaphore critical; /*This is a Mutex semaphore. It allows only 1 consumer
                                       to enter his critical section.
    static Semaphore counter;     /*This semaphore acts as a counter.
                                  Instead of having a global variable
                                       incremented each time, we just release()
                                       this semephore when we find a prime number
                                       Because remember that release() increments permits
    static Producer prod;
    static Consumer cons[];
    static int in=0;
    static int out=0;
    static PrintWriter outFile;
         public static void main (String args[]){
              try{
                   outFile=new PrintWriter(new FileWriter("primes.txt"));
                   }catch(Exception e){}
              numberOfThreads=Integer.parseInt(args[0]);
              fromThisNumber=Integer.parseInt(args[1]);
              toThisNumber=Integer.parseInt(args[2]);
              buffer=new int[Integer.parseInt(args[2])-Integer.parseInt(args[1])+1];
              ready=new Semaphore(0,false); /*We initialise it to 0 because we wait
                                                      for the Producer to produce atleast a
                                                      item. Suppose ready was 1 and if
                                                      Consumer ran first he would be in an
                                                      empty buffer */
              critical=new Semaphore (1,false);/*We initialise it to 1 because when
                                                      the first Consumer thread tries
                                                      to enter its critical section, it
                                                      should be allowed to;
                                                      Subsequent threads will have to
                                                      wait since only 1 thread can
                                                      access its critical section at a time*/
              counter=new Semaphore(0,false); // duh!
              cons=new Consumer[numberOfThreads-1]; /*numberOfThreads-1 because 1 thread
                                                                is taken by the Producer*/
              //Creating Producer object
              prod=new Producer();
              //Creating the Consumer object and start the thread.
              for(int i=0;i<cons.length;i++)
                        cons[i]=new Consumer();
                        cons[i].start();
              prod.start();          
              //Printing to screen and file
    /*          for(int i=0;i<buffer.length;i++)
                   if(buffer[i]!=0)
                             System.out.println(buffer[i]);
                             outFile.println(buffer[i]);
              System.out.println("Total primes found between "+args[1]+" and "+toThisNumber+": "+counter.availablePermits()+"\n primes.txt written");
              outFile.println("Total primes found between "+args[1]+" and "+toThisNumber+": "+counter.availablePermits());
              outFile.close();*/                    
    static class Producer extends Thread {
         public void run(){try{
              while(in<buffer.length)     /*'in' should always be more than 'out'.Oherwise the consumer will try to access an empty index*/
                   {     System.out.println("producing");     
                        buffer[in]=fromThisNumber;
                        in++;
                        fromThisNumber++;
                        ready.release();
              catch (Exception e){e.printStackTrace();}
              System.out.println("ALL PRODUCING DONE");
    static class Consumer extends Thread {
         int tempout=0;
         public void run(){try{
              System.out.println("before while"+this.getId());
              while(tempout<=in)
                   System.out.println("before ready"+this.getId()+" "+ready.availablePermits()+" "+in);
                   ready.acquire();
                   System.out.println("before critical.acquire"+this.getId());
                   critical.acquire();
                   tempout=out;
                   out++;
                   critical.release();               
                   if(!isPrime(buffer[tempout]))
                        {System.out.println(buffer[tempout]+" by "+this.getId());buffer[tempout]=0;}
                   else {counter.release();System.out.println("prime added: "+buffer[tempout]+" by "+this.getId());}
                   critical.acquire();
                   tempout=out;
                   System.out.println("tempout:"+tempout+" of "+this.getId());
                   critical.release();
              System.out.println("ALL CONSUMING DONE"+this.getId());
         catch(Exception e){e.printStackTrace();}
         //Prime number-checking method     
         public boolean isPrime(int n){
              for(int i=2;i<=(n/2);i++)
                   if(n%i==0)
                        return false;
              return true;
    ===========================
    BTW, when I tried to change extends Thread to implements Runnable I got some kinda of error.
    Actually, my program is pretty complete... its just that something if messed up in my Consumer's run() method's while loop... I think
    I know guys its crazy to ask ya'll to look at so much code, but.... I'd really appreciate it. This assignment is killing me, been at it since 10 hours now....

  • I changed my wheel group properties to no access at top disk level.  I messed up, how can I change back in single user mode "command s" as I am now in Thailand and not able to access startup disks?

    I messed up, I changed my "Wheel group" properties to No Access ( or something other than the default) at the top level of my startup disk "Macintosh HD".   Now my computer won't start up, I just get the spinning wheel of death.    I also am in Thailand right now, so I cannot go to a Genius at an apple store, nor do I have startup disks available.
    So I was hoping there was a way to change back the properties of my disk (Volume) in single user mode (via Command +s) during startup, i.e. can I do a chmod command on the Macintosh HD listing under the Volume Directory.    Or where do i fix this?   Is it fixable without startup disks, etc...
    THANKS FOR ANY HELP!!!!
    If you could also please let me know you have an answer, I WOULD REALLY APPRECIATE IT!!! 
    thanks so much
    mark
    <Edited by Host>

    Thomas,
    Thanks for the info on command-R, didn't know about that!!!
    Yes I changed the sharing "Wheel Group" permissions on my hard drive via Get Info.    But that's all I did.    And then most of the apps wouldn't respond with anything.    So not knowing I did something stupid, I decided to re-boot, and then nothing but the Wheel of Death at startup.
    I was trying to limit access to my computer on this network, changed my public folder settings, and then I thought why not the whole hard drive, but at that time I had no idea what the "Wheel Group" was... so I shouldn't have touched it, BUT IT DID ...... argggggg....
    I managed to go to an internet cafe & research the problem yesterday.    I used the command +s single mode to get in, and then did the necessary steps to mount the drive so I could make changes.   I basically did this:
    Boot into single-user mode (boot while holding down CMD-S)
    Follow the on-screen instructions to mount the file system as read-write (a fsck command followed by a mount command)
    Type the following: "chmod o+r /" followed by "chmod o+x /"
    Type "exit" to leave single user mode and complete the boot sequence.
    I found it at this link http://forums.macrumors.com/showthread.php?t=416180
    It worked... thank God!!!   Well so far so good.   
    I was going to try my own fix by chmod on the Hard drive listed under Volumes directory, but that doesn't seem to match the info under Get Info Window.    So I just used the fix above.    I probably should now go and do "Disk Utility - repair permissions", however I am a little gun shy right now, so I will probably wait until I am back in the States so I can go to an Apple store if it messes up.   Right now I'm following the "if it ain't broke, don't fix it" MOTTO...
    So Thomas I just wanted to say THANKS for replying so quickly, and I really appreciate your help!!!
    (yes I know I shouldn't have used my email addresses, but I WAS DESPERATE, but that's still no excuse)
    Hopefully maybe this thread will help someone else out in the future....
    Okay, thanks again!
    Mark

  • Just installed 10.6.8, and now iTunes won't recognize my iPad2 when I plug it in.  Did I mess up some settings?

    After moving up to OS10.6.8, iTunes no longer reognizes my iPad2 when I connect them.  Is it the new system, or did I mess up settings on the Pad?  I want to install iOS5 on the iPad.

    See this thread: iTunes 12.1 Not Finding iPhone

Maybe you are looking for

  • I can't delete some photo/video iPhone 4S iOS7.0.4 (11B554a)

    Hello,   I am not able to delete some photos and videos on my iPhone 4S, (32gb, ios 7.0.4).  It is 3gb worth of videos and photos.  The photos are not in my camera roll (i deleted that to zero) and the videos are not in the video app.   When I go to

  • Z10 connected to car via Bluetooth handsfree link not providing song information after 10.2.1 update.

    I've been using a Z10 for about 6 months and I connect the phone to my car (a 2012 Honda Civic) via the Bluetooth handsfree link to receive phone calls and to play songs that are stored on my phone's SD card. When I play a song, the song title, album

  • Can't connect to Report Server via Management Studio

    Hi, I have a local installation of SQL Server 2005 (Developer Edition) on XP Professional SP2, with Reporting Services, Integration Services, and Analysis Server installed. I can connect to Integration Services and Analysis Server via the SQL Server

  • AxWindowsMediaPlayer problem with using subtitle sami.file in winform

    Hello every body I have a problem with using sami caption in axWindowsMediaPlayer; how can I use it? I used axWindowsMediaPlayer1.closedCaption.SAMIFileName="FileNameAddress"; and axWindowsMediaPlayer1.ShowPropertyPages();//and select sami file but i

  • Closing POP-UP fails

    Hi experts, I have an issue to close cascading pop-up. I am displaying a first pop-up to user so he can choose fields for marketing target group extraction to file. Once the user had chosen the relevant fields, he can click on a "Save variant" button