Why receiver is stopped

i am creating rtp mixer .
for that i have made a program which receive rtp stream and then transmit it .
The problem with this code is that it first create receiver(it is a player) from the received rtp stream but receiver is stopped when treansmitter
(it is a processor) is created.
Earlier i was creaing the playe and processor from the same dataSourc so i thought it was creating problem . so i created transmitter (processor)
from the cloned dataSource . but the problem reamain as it was
what is the reason for this.
please help me because i am already late in this project .
very very thank u.
my code is :
import java.awt.*;
import java.io.IOException;
import java.net.*;
import java.awt.event.*;
import java.util.ArrayList;
import java.util.Vector;
import javax.media.*;
import javax.media.rtp.*;
import javax.media.rtp.event.*;
import javax.media.rtp.rtcp.SourceDescription;
import javax.media.control.TrackControl;
import javax.media.protocol.DataSource;
import javax.media.protocol.*;
public class AVReceive implements ReceiveStreamListener, SessionListener,
          ControllerListener {
     String session[];
     static RTPManager mgrs;
     Vector playerWindows = null;
     static ArrayList list = new ArrayList();
     private Processor processor = null;
     String result = null;
     DataSource mds;
     private Integer stateLock = new Integer(0);
     DataSource dataOutput;
     public static int incr = 0;
     public static int inc;
     DataSource cloneableDataSource = null;
DataSource clonedDataSource = null;
     private boolean failed = false;
     boolean dataReceived = false;
     DataSource ds = null;
     Object dataSync = new Object();
     protected boolean initialize() {
          try {
               InetAddress ipAddr;
               SessionAddress localAddr = new SessionAddress();
               SessionAddress destAddr;
               playerWindows = new Vector();
               mgrs = (RTPManager) RTPManager.newInstance();
               mgrs.addSessionListener(this);
               mgrs.addReceiveStreamListener(this);
               localAddr = new SessionAddress(InetAddress.getLocalHost(), 5004);
               mgrs.initialize(localAddr);
               destAddr = new SessionAddress(InetAddress.getLocalHost(), 20000);
               mgrs.addTarget(destAddr);
          } catch (Exception e) {
               System.err.println("Cannot create the RTP Session: "
                         + e.getMessage());
               return false;
          return true;
     public boolean isDone() {
          return playerWindows.size() == 0;
     protected void close() {
          for (int i = 0; i < playerWindows.size(); i++) {
               try {
                    ((PlayerWindow) playerWindows.elementAt(i)).close();
               } catch (Exception e) {
          playerWindows.removeAllElements();
          if (mgrs != null) {
               mgrs.removeTargets("Closing session from AVReceive");
               mgrs.dispose();
               mgrs = null;
     PlayerWindow find(Player p) {
          for (int i = 0; i < playerWindows.size(); i++) {
               PlayerWindow pw = (PlayerWindow) playerWindows.elementAt(i);
               if (pw.player == p)
                    return pw;
          return null;
     PlayerWindow find(ReceiveStream strm) {
          for (int i = 0; i < playerWindows.size(); i++) {
               PlayerWindow pw = (PlayerWindow) playerWindows.elementAt(i);
               if (pw.stream == strm)
                    return pw;
          return null;
     public synchronized void update(SessionEvent evt) {
          if (evt instanceof NewParticipantEvent) {
               Participant p = ((NewParticipantEvent) evt).getParticipant();
               System.out.println(" A new participant has just joined: "
                         + p.getCNAME());
     public synchronized void update(ReceiveStreamEvent evt) {
          Participant participant = evt.getParticipant();
          ReceiveStream stream = evt.getReceiveStream();
          if (evt instanceof NewReceiveStreamEvent) {
               try {
                    stream = ((NewReceiveStreamEvent) evt).getReceiveStream();
                    if (stream != null)
                         System.out.println(" - Recevied new RTP stream");
                    ds = stream.getDataSource();
          Player p = javax.media.Manager.createPlayer(ds);
                    if (p == null) {
                         System.out.println("can not create player");
                         return;
                    System.out.println("player is created ");
                    p.addControllerListener(this);
                    p.realize();
                    synchronized (dataSync) {
                         dataSync.notifyAll();
                    inc++;
                    PlayerWindow pw = new PlayerWindow(p, stream, inc);
                    playerWindows.addElement(pw);
               } catch (Exception e) {
                    System.err.println("NewReceiveStreamEvent exception "
                              + e.getMessage());
                    return;
          } else if (evt instanceof StreamMappedEvent) {
               if (stream != null && stream.getDataSource() != null) {
                    System.out.println(" has now been identified as sent by: "
                              + participant.getCNAME());
                    incr++;
                    try {
                         Vector sourceDescriptions = stream.getParticipant()
                                   .getSourceDescription();
                                             for (int i = 0; i < sourceDescriptions.size(); i++) {
                              SourceDescription description = (SourceDescription) sourceDescriptions
                                        .get(i);
                              if (description.getType() == SourceDescription.SOURCE_DESC_CNAME) {
                                   String ip[] = description.getDescription().split(
                    } catch (Exception e) {
                         System.out.println(" exception is " + e);
                    System.out.println(" creating transmitter ");
                    createProcessor();
                    processor.start();
                    PlayerWindow pw = new PlayerWindow(processor);
                    playerWindows.addElement(pw);
                    pw.initialize1();
                    pw.setVisible(true);
                    createTransmitter();
          } else if (evt instanceof ByeEvent) {
               System.err.println(" - Got \"bye\" from: "
                         + participant.getCNAME());
               PlayerWindow pw = find(stream);
               if (pw != null) {
                    pw.close();
                    playerWindows.removeElement(pw);
     private String createProcessor() {
cloneableDataSource
= Manager.createCloneableDataSource(ds);
          try {
               processor = javax.media.Manager.createProcessor(cloneableDataSource);
          } catch (NoProcessorException npe) {
               return "Couldn't create processor";
          } catch (IOException ioe) {
               return "IOException creating processor";
          boolean result = waitForState(processor, Processor.Configured);
          if (result == false)
               return "Couldn't configure processor";
          TrackControl[] tracks = processor.getTrackControls();
          if (tracks == null || tracks.length < 1)
               return "Couldn't find tracks in processor";
          ContentDescriptor cd = new ContentDescriptor(ContentDescriptor.RAW_RTP);
          processor.setContentDescriptor(cd);
          Format supported[];
          Format chosen;
          boolean atLeastOneTrack = false;
          for (int i = 0; i < tracks.length; i++) {
               if (tracks.isEnabled()) {
                    supported = tracks[i].getSupportedFormats();
                    if (supported.length > 0) {
                         chosen = supported[0];
                         tracks[i].setFormat(chosen);
                         System.err
                                   .println("Track " + i + " is set to transmit as:");
                         System.err.println(" " + chosen);
                         atLeastOneTrack = true;
                    } else
                         tracks[i].setEnabled(false);
               } else
                    tracks[i].setEnabled(false);
          if (!atLeastOneTrack)
               return "Couldn't set any of the tracks to a valid RTP format";
          result = waitForState(processor, Controller.Realized);
          if (result == false)
               return "Couldn't realize processor";
          dataOutput = processor.getDataOutput();
          System.out.println("dataoutput is " + dataOutput);
          return null;
     private void createTransmitter() {
          System.out.println("inside transmitter");
          PushBufferDataSource pbds = (PushBufferDataSource) dataOutput;
          PushBufferStream pbss[] = pbds.getStreams();
          System.out.println(" length of stream "+pbss.length);
          SessionAddress localAddr, destAddr1, destAddr2;
          InetAddress ipAddr1, ipAddr2;
          SendStream sendStream;
          int port = 0;
          SourceDescription srcDesList[];
          try {
               sendStream = mgrs.createSendStream(dataOutput, 0);
               System.out.println(" send stream is " + sendStream);
               sendStream.start();
          } catch (Exception e) {
               e.getMessage();
     Integer getStateLock() {
          return stateLock;
     void setFailed() {
          failed = true;
     private synchronized boolean waitForState(Processor p, int state) {
          p.addControllerListener(new StateListener());
          failed = false;
          System.out.println("inside configuring");
          if (state == Processor.Configured) {
               System.out.println(" ok 4 ");
               p.configure();
          } else if (state == Processor.Realized) {
               p.realize();
          while (p.getState() < state && !failed) {
               synchronized (getStateLock()) {
                    try {
                         getStateLock().wait();
                    } catch (InterruptedException ie) {
                         return false;
          System.out.println(" ok 3 ");
          if (failed)
               return false;
          else
               return true;
     public synchronized void controllerUpdate(ControllerEvent ce) {
          Player p = (Player) ce.getSourceController();
          if (p == null)
               return;
          if (ce instanceof RealizeCompleteEvent) {
               synchronized (dataSync) {
                    dataSync.notifyAll();
               System.out.println(" player has been realized");
               PlayerWindow pw = find(p);
               if (pw == null) {
                    System.err.println("Internal error!");
                    System.exit(-1);
               pw.initialize();
               pw.setVisible(true);
               p.start();
          if (ce instanceof ControllerErrorEvent) {
               p.removeControllerListener(this);
               PlayerWindow pw = find(p);
               if (pw != null) {
                    pw.close();
                    playerWindows.removeElement(pw);
     class StateListener implements ControllerListener {
          public void controllerUpdate(ControllerEvent ce) {
               if (ce instanceof ControllerClosedEvent) {
                    setFailed();
               if (ce instanceof ControllerEvent) {
                    synchronized (getStateLock()) {
                    getStateLock().notifyAll();
     class PlayerWindow extends Frame implements ActionListener {
          public int inc;
          PlayerWindow() {
          Player player;
          ReceiveStream stream;
          PlayerWindow(Player p, ReceiveStream strm, int inc) {
               player = p;
               stream = strm;
               this.inc = inc;
          PlayerWindow(Player p) {
               player = p;
          public void initialize() {
               add(new PlayerPanel(player, inc));
          public void initialize1() {
               add(new PlayerPanel1(player, inc));
          public void close() {
               player.close();
               setVisible(false);
               dispose();
          public void addNotify() {
               super.addNotify();
               pack();
          public void actionPerformed(ActionEvent e) {
               if (e.getActionCommand() == "stop1") {
                    PlayerWindow pw = find(stream);
                    if (pw != null) {
                         pw.close();
                         playerWindows.removeElement(pw);
     class PlayerPanel extends Panel {
          Component vc, cc;
          PlayerPanel(Player p, int inc) {
               setLayout(new BorderLayout());
               if ((cc = p.getControlPanelComponent()) != null)
                    add("South", cc);
               System.out.println("increment is " + inc);
               Integer in = new Integer(inc);
               Button counter = new Button("receiver" + in.toString());
               Button stop1 = new Button("stop1");
               add("Center", stop1);
               add("North", counter);
               PlayerWindow pw = find(p);
               stop1.addActionListener(pw);
          public Dimension getPreferredSize() {
               int w = 0, h = 200;
               if (cc != null) {
                    Dimension size = cc.getPreferredSize();
                    if (w == 0)
                         w = size.width * 2;
                    h += size.height;
               return new Dimension(w, h);
     class PlayerPanel1 extends Panel {
          Component vc, cc;
          PlayerPanel1(Player p, int inc) {
               setLayout(new BorderLayout());
               if ((cc = p.getControlPanelComponent()) != null)
                    add("South", cc);
               System.out.println("increment is " + inc);
               Integer in = new Integer(inc);
               Button counter = new Button("transmitter" + in.toString());
               Button stop1 = new Button("start");
               add("Center", stop1);
               add("North", counter);
               PlayerWindow pw = find(p);
               stop1.addActionListener(pw);
          public Dimension getPreferredSize() {
               int w = 0, h = 200;
               if (cc != null) {
                    Dimension size = cc.getPreferredSize();
                    if (w == 0)
                         w = size.width * 2;
                    h += size.height;
               return new Dimension(w, h);
     public static void main(String argv[]) {
          AVReceive avReceive1 = new AVReceive();
          if (!avReceive1.initialize()) {
               System.err.println("Failed to initialize the sessions.");
               System.exit(-1);
          try {
               while (true)
                    Thread.sleep(1000);
          } catch (Exception e) {

hi jcparques
thank for ur response .
but i m not able to see ur code .
so please allow me to see ur code.
i have sent request to join ur project but i got denied reply.
so accept my request.
thank u.

Similar Messages

  • Why did i stop receiving texts on my computer?

    why did i stop receiving texts on my computer

    If you are forwarding text messages from your phone, on the iPhone, go to [Settings > Messages > Text Message Forwarding] here, make sure that it lists your mac (the toggle switch is on or green). If not, turn it on and enter the code on your mac on the phone.
    If you are talking about not receiving iMessage on your mac, open messages and press [⌘(command) + ,] and go to accounts tab. Make sure that this bar shows your apple ID and the message emails and numbers. LIKE THIS:  https://www.flickr.com/photos/121340273@N04/16835123442/

  • Why have I stopped receiving email on my iPhone 5s

    Why have I stopped recieving email on my iPhone 5s?

    Hi Byrd2570,
    Welcome to the Support Communities!  Try these initial troubleshooting steps for the issue you are having with email on your iPhone 5s.  What type of email account is it?  Are you able to access your incoming messages directly from the email provider's website?  Is the email account working on your computer?
    Get help with Mail on iPhone, iPad, and iPod touch - Apple Support
    http://support.apple.com/en-us/ts3899
    First, try these basic troubleshooting steps:
    To make sure that you're connected to the Internet, open Safari and go to www.apple.com.
    Log in to your email provider's website to make sure that the account is active and the password is correct.
    Make sure your settings are correct using Mail Settings Lookup.
    Restart your iOS device.
    Delete the affected email account from your device.
    Tap Settings > Mail, Contacts, Calendars.
    Tap the affected email account.
    Tap Delete Account.
    Add your account again.
    I hope this information helps ....
    - Judy

  • Why does mail stop working?

    Why does mail stop working when it has worked fine for years?

    OK, thank you.  I use apple for e-mail.  I have an @me address and I have long subscribed to mobile me, which has recently become icloud.  Yesterday the @me mail account appeared to stop recognizing my e-mail password for my primary mail account on my two imacs but not on my ipad.  The most recent e-mail I have received on my imacs is 7:16am yesterday, but I know from my ipad that I have received numerous e-mails since then.  I have other mail accounts, including one for the school where I teach.  I am receiving e-mail on the school account ok.
    I made no changes to my password or otherwise for my primary mail account any time recently.  I also still have my @mac address.
    Generally, I do not understand icloud.  I do not understand how to sync information across computers.
    When I go to preferences in mail and I click and accounts and account information, I do not understand anything that I see there.  When I try to re-type my password, there seems to be no way to save it except to switch to another mail account.  I know from past experience that if I attempt to fix whatever might be wrong with mail I do not know what I am doing.
    Any information would be helpful.  Thank you.

  • Why has Siri stopped working on iPhone 4 after upgrading to IOS 5?

    Why has Siri stopped working on iPhone 4 after upgrading to IOS 5? I've tried the disable and reboot but continue to get the network error.

    Apple has not been forthcoming on the explanation. My Siri worked on my iphone4 (not 4s) immediately after upgrading to IOS5, but I take it they have redirected the servers that used to support Siri to only work with Iphone4s.
    It is one thing for apple to only bundle the improved Siri with IPhone 4S, or  for them to remove Siri from the Ap store.
    But it is another thing all together for apple to purchase a company, and then cease the service that many of us paid for.
    Attempts to contact apple at apple store and via email have been unhelpful.
    Apple Fan--

  • Why does Spotify stopped playing when i do something else like browse facebook, go see my messages?

    why does Spotify stopped playing whenever i do something else on my phone like browse facebook, or read my phone messages, or open a link to read something? some other music apps like Jango lets you do whatever you want, but it keeps playing ur playlist.. i'm not even gonna mention how pitifully miniscule Spotify's music library is compared to this apps...ooops

    Hi. I feel your pain my friend.  This is so annoying it makes me want to cancel my "pro" subscription. I think it has to do with other audio from a web page (includes Facebook) overriding Spotify's audio. I have looked all over Spotify to see if there is an override the override setting.  I can't find it. Maybe this bumps up this thread so we get some sort of answer.  I wouldn't mind it even if we got it's not possible. At least then we'd know. That's the problem with forum posting - you never know if you're going to get an answer pee what kind of answer it may be.  As the headline says this forum is not sourced from Spotify. hoibie

  • Why does pandora stop playing when i unlock my phone

    Why does pandora stop playing when i unlock my phone?

    Hello wayne1722
    If you are having issues with the Pandora app, check out the article for troubleshooting the issue.
    iOS: Troubleshooting apps purchased from the App Store
    http://support.apple.com/kb/TS1702
    Thanks for using Apple Support Communities.
    Regards,
    -Norm G.

  • Why the Podcast stops when screen off? (iOS6)

    Why the Podcast stops when screen off? (iOS6)

    iHeartRadio is an app from an independent vendor. It is not from Apple, and Apple can't do anything to fix a broken app. Contact Clear Channel, the developer.

  • Why does Siri stop working, or become unavailable?

    The topic says it all. Why is it that sometimes, even in a 4G area, Siri suddenly doesn't  work?

    There are a few reasons why siri will stop listening:
    1. It is having problems connecting to the network so can't search for what you are looking for. You are prompted with something like: I am sorry I can't connect right now.
    2. There is a pause when you are dictating something to siri so it assumes you are done. Pauses of about 2 or 3 seconds should do it.
    3. You accidentally press the siri button indicating you are done dictating to siri.
    If none of these are the problem, I don't know what else to do. How often is this occuring?

  • Why does it stop?

    Process:    
    Adobe InDesign CS2 [184]
    Path:       
    /Applications/Adobe InDesign CS2/Adobe InDesign CS2.app/Contents/MacOS/Adobe InDesign CS2
    Identifier: 
    com.adobe.InDesign
    Version:    
    4.0.5.688 (4050)
    Code Type:  
    PPC (Translated)
    Parent Process:  launchd [75]
    Date/Time:  
    2013-09-15 22:47:24.702 +0200
    OS Version: 
    Mac OS X 10.6.3 (10D575)
    Report Version:  6
    Interval Since Last Report:     
    1493 sec
    Crashes Since Last Report:      
    3
    Per-App Interval Since Last Report:  38008 sec
    Per-App Crashes Since Last Report:   2
    Anonymous UUID:                 
    B77CCE2E-0F75-4885-8F90-2D06B891BFE2
    Exception Type:  EXC_BAD_ACCESS (SIGBUS)
    Exception Codes: KERN_PROTECTION_FAILURE at 0x00000000000000c8
    Crashed Thread:  0  Dispatch queue: com.apple.main-thread
    Thread 0 Crashed:  Dispatch queue: com.apple.main-thread
    0   com.adobe.InDesign       
    0xb80c5d10 0xb8000000 + 810256
    1   com.adobe.InDesign       
    0xb80c0037 0xb8000000 + 786487
    2   com.adobe.InDesign       
    0xb80dd8e8 0xb8000000 + 907496
    3   com.adobe.InDesign       
    0xb8145397 spin_lock_wrapper + 1791
    4   com.adobe.InDesign       
    0xb801ceb7 0xb8000000 + 118455
    Thread 1:
    0   libSystem.B.dylib        
    0x801402fa mach_msg_trap + 10
    1   libSystem.B.dylib        
    0x80140a67 mach_msg + 68
    2   com.adobe.InDesign       
    0xb819440f CallPPCFunctionAtAddressInt + 206231
    3   libSystem.B.dylib        
    0x8016da19 _pthread_start + 345
    4   libSystem.B.dylib        
    0x8016d89e thread_start + 34
    Thread 2:
    0   com.adobe.InDesign       
    0xb815acc0 spin_lock_wrapper + 90152
    1   com.adobe.InDesign       
    0xb8179c5b CallPPCFunctionAtAddressInt + 97763
    2   com.adobe.InDesign       
    0xb80c6b13 0xb8000000 + 813843
    3   com.adobe.InDesign       
    0xb80c0037 0xb8000000 + 786487
    4   com.adobe.InDesign       
    0xb80dd8e8 0xb8000000 + 907496
    5   com.adobe.InDesign       
    0xb8145397 spin_lock_wrapper + 1791
    6   com.adobe.InDesign       
    0xb801ceb7 0xb8000000 + 118455
    Thread 3:
    0   com.adobe.InDesign       
    0xb815a8ff spin_lock_wrapper + 89191
    1   com.adobe.InDesign       
    0xb8176e5d CallPPCFunctionAtAddressInt + 85989
    2   com.adobe.InDesign       
    0xb80e88cb 0xb8000000 + 952523
    3   ???                      
    0x7e166066 0 + 2115395686
    Thread 4:
    0   com.adobe.InDesign       
    0xb815a8ff spin_lock_wrapper + 89191
    1   com.adobe.InDesign       
    0xb8176e5d CallPPCFunctionAtAddressInt + 85989
    2   com.adobe.InDesign       
    0xb80c6b13 0xb8000000 + 813843
    3   com.adobe.InDesign       
    0xb80c0037 0xb8000000 + 786487
    4   com.adobe.InDesign       
    0xb80dd8e8 0xb8000000 + 907496
    5   com.adobe.InDesign       
    0xb8145397 spin_lock_wrapper + 1791
    6   com.adobe.InDesign       
    0xb801ceb7 0xb8000000 + 118455
    Thread 5:
    0   com.adobe.InDesign       
    0xb815aa8b spin_lock_wrapper + 89587
    1   com.adobe.InDesign       
    0xb818c3eb CallPPCFunctionAtAddressInt + 173427
    2   com.adobe.InDesign       
    0xb818eeec CallPPCFunctionAtAddressInt + 184436
    3   com.adobe.InDesign       
    0xb80e88cb 0xb8000000 + 952523
    4   ???                      
    0x7e0a90f6 0 + 2114621686
    Thread 6:
    0   com.adobe.InDesign       
    0xb815a8ff spin_lock_wrapper + 89191
    1   com.adobe.InDesign       
    0xb8176e5d CallPPCFunctionAtAddressInt + 85989
    2   com.adobe.InDesign       
    0xb80e88cb 0xb8000000 + 952523
    3   ???                      
    0x7e166066 0 + 2115395686
    Thread 7:
    0   com.adobe.InDesign       
    0xb815a8c8 spin_lock_wrapper + 89136
    1   com.adobe.InDesign       
    0xb8176d61 CallPPCFunctionAtAddressInt + 85737
    2   com.adobe.InDesign       
    0xb80c6b13 0xb8000000 + 813843
    3   com.adobe.InDesign       
    0xb80c0037 0xb8000000 + 786487
    4   com.adobe.InDesign       
    0xb80dd8e8 0xb8000000 + 907496
    5   com.adobe.InDesign       
    0xb8145c1d spin_lock_wrapper + 3973
    6   com.adobe.InDesign       
    0xb801ceb7 0xb8000000 + 118455
    Thread 8:
    0   com.adobe.InDesign       
    0xb815a8ff spin_lock_wrapper + 89191
    1   com.adobe.InDesign       
    0xb8176e5d CallPPCFunctionAtAddressInt + 85989
    2   com.adobe.InDesign       
    0xb80e88cb 0xb8000000 + 952523
    3   ???                      
    0x7e166066 0 + 2115395686
    Thread 9:
    0   com.adobe.InDesign       
    0xb815aa8b spin_lock_wrapper + 89587
    1   com.adobe.InDesign       
    0xb818c3eb CallPPCFunctionAtAddressInt + 173427
    2   com.adobe.InDesign       
    0xb818eeec CallPPCFunctionAtAddressInt + 184436
    3   com.adobe.InDesign       
    0xb80e88cb 0xb8000000 + 952523
    4   ???                      
    0x7e4a10f2 0 + 2118783218
    Thread 10:
    0   com.adobe.InDesign       
    0xb815a8ff spin_lock_wrapper + 89191
    1   com.adobe.InDesign       
    0xb8176e5d CallPPCFunctionAtAddressInt + 85989
    2   com.adobe.InDesign       
    0xb80e88cb 0xb8000000 + 952523
    3   ???                      
    0x7e166066 0 + 2115395686
    Thread 11:
    0   com.adobe.InDesign       
    0xb815a8ff spin_lock_wrapper + 89191
    1   com.adobe.InDesign       
    0xb8176e5d CallPPCFunctionAtAddressInt + 85989
    2   com.adobe.InDesign       
    0xb80c6b13 0xb8000000 + 813843
    3   com.adobe.InDesign       
    0xb80c0037 0xb8000000 + 786487
    4   com.adobe.InDesign       
    0xb80dd8e8 0xb8000000 + 907496
    5   com.adobe.InDesign       
    0xb8145397 spin_lock_wrapper + 1791
    6   com.adobe.InDesign       
    0xb801ceb7 0xb8000000 + 118455
    Thread 12:
    0   com.adobe.InDesign       
    0xb815a8ff spin_lock_wrapper + 89191
    1   com.adobe.InDesign       
    0xb8176e5d CallPPCFunctionAtAddressInt + 85989
    2   com.adobe.InDesign       
    0xb80c6b13 0xb8000000 + 813843
    3   com.adobe.InDesign       
    0xb80c0037 0xb8000000 + 786487
    4   com.adobe.InDesign       
    0xb80dd8e8 0xb8000000 + 907496
    5   com.adobe.InDesign       
    0xb8145397 spin_lock_wrapper + 1791
    6   com.adobe.InDesign       
    0xb801ceb7 0xb8000000 + 118455
    Thread 13:
    0   com.adobe.InDesign       
    0xb815ac81 spin_lock_wrapper + 90089
    1   com.adobe.InDesign       
    0xb816ad6f CallPPCFunctionAtAddressInt + 36599
    2   com.adobe.InDesign       
    0xb80c6b13 0xb8000000 + 813843
    3   com.adobe.InDesign       
    0xb80c0037 0xb8000000 + 786487
    4   com.adobe.InDesign       
    0xb80dd8e8 0xb8000000 + 907496
    5   com.adobe.InDesign       
    0xb8145c1d spin_lock_wrapper + 3973
    6   com.adobe.InDesign       
    0xb801ceb7 0xb8000000 + 118455
    Thread 14:
    0   com.adobe.InDesign       
    0xb815a8ff spin_lock_wrapper + 89191
    1   com.adobe.InDesign       
    0xb8176e5d CallPPCFunctionAtAddressInt + 85989
    2   com.adobe.InDesign       
    0xb80e88cb 0xb8000000 + 952523
    3   ???                      
    0x7e166066 0 + 2115395686
    Thread 15:
    0   com.adobe.InDesign       
    0xb815a8ff spin_lock_wrapper + 89191
    1   com.adobe.InDesign       
    0xb8176e5d CallPPCFunctionAtAddressInt + 85989
    2   com.adobe.InDesign       
    0xb80c6b13 0xb8000000 + 813843
    3   com.adobe.InDesign       
    0xb80c0037 0xb8000000 + 786487
    4   com.adobe.InDesign       
    0xb80dd8e8 0xb8000000 + 907496
    5   com.adobe.InDesign       
    0xb8145397 spin_lock_wrapper + 1791
    6   com.adobe.InDesign       
    0xb801ceb7 0xb8000000 + 118455
    Thread 16:
    0   com.adobe.InDesign       
    0xb815a8ff spin_lock_wrapper + 89191
    1   com.adobe.InDesign       
    0xb8176e5d CallPPCFunctionAtAddressInt + 85989
    2   com.adobe.InDesign       
    0xb80c6b13 0xb8000000 + 813843
    3   com.adobe.InDesign       
    0xb80c0037 0xb8000000 + 786487
    4   com.adobe.InDesign       
    0xb80dd8e8 0xb8000000 + 907496
    5   com.adobe.InDesign       
    0xb8145397 spin_lock_wrapper + 1791
    6   com.adobe.InDesign       
    0xb801ceb7 0xb8000000 + 118455
    Thread 17:
    0   com.adobe.InDesign       
    0xb815a8ff spin_lock_wrapper + 89191
    1   com.adobe.InDesign       
    0xb8176e5d CallPPCFunctionAtAddressInt + 85989
    2   com.adobe.InDesign       
    0xb80c6b13 0xb8000000 + 813843
    3   com.adobe.InDesign       
    0xb80c0037 0xb8000000 + 786487
    4   com.adobe.InDesign       
    0xb80dd8e8 0xb8000000 + 907496
    5   com.adobe.InDesign       
    0xb8145397 spin_lock_wrapper + 1791
    6   com.adobe.InDesign       
    0xb801ceb7 0xb8000000 + 118455
    Thread 18:
    0   com.adobe.InDesign       
    0xb815a8ff spin_lock_wrapper + 89191
    1   com.adobe.InDesign       
    0xb8176e5d CallPPCFunctionAtAddressInt + 85989
    2   com.adobe.InDesign       
    0xb80e88cb 0xb8000000 + 952523
    3   ???                      
    0x7e166066 0 + 2115395686
    Thread 0 crashed with X86 Thread State (32-bit):
      eax: 0x000000c8  ebx: 0xb80c5ce8  ecx: 0x00000000  edx: 0x00000002
      edi: 0x000000c8  esi: 0x80a059a0  ebp: 0xb7fffa08  esp: 0xb7fff9d0
       ss: 0x0000001f  efl: 0x00010202  eip: 0xb80c5d10   cs: 0x00000017
       ds: 0x0000001f   es: 0x0000001f   fs: 0x00000000   gs: 0x00000037
      cr2: 0x000000c8
    Binary Images:
    0x80000000 - 0x8005bff7  com.apple.framework.IOKit 2.0 (???) <69E4FE93-376C-565E-650F-04FAD213AA24> /System/Library/Frameworks/IOKit.framework/Versions/A/IOKit
    0x8007a000 - 0x800e4fe7  libstdc++.6.dylib 7.9.0 (compatibility 7.0.0) <411D87F4-B7E1-44EB-F201-F8B4F9227213> /usr/lib/libstdc++.6.dylib
    0x8013f000 - 0x802e4feb  libSystem.B.dylib 125.0.1 (compatibility 1.0.0) <06A5336A-A6F6-4E62-F55F-4909A64631C2> /usr/lib/libSystem.B.dylib
    0x80364000 - 0x804ddffb  com.apple.CoreFoundation 6.6.1 (550.19) <1E97FB1E-9E42-B8EB-E463-5C75315FDA31> /System/Library/Frameworks/CoreFoundation.framework/Versions/A/CoreFoundation
    0x805d5000 - 0x805e3fe7  libz.1.dylib 1.2.3 (compatibility 1.0.0) <82B2C254-6F8D-7BEA-4C18-038E90CAE19B> /usr/lib/libz.1.dylib
    0x805e8000 - 0x805f4ff7  libkxld.dylib ??? (???) <13F26BB6-C2F7-9D74-933E-09AD8B509ECD> /usr/lib/system/libkxld.dylib
    0x805f8000 - 0x8063eff7  libauto.dylib ??? (???) <85670A64-3B67-8162-D441-D8E0BE15CA94> /usr/lib/libauto.dylib
    0x8064b000 - 0x807cdfe7  libicucore.A.dylib 40.0.0 (compatibility 1.0.0) <96A45E03-2B29-83EB-0FC6-2C932E398722> /usr/lib/libicucore.A.dylib
    0x8082f000 - 0x808dcfe7  libobjc.A.dylib 227.0.0 (compatibility 1.0.0) <DF8E4CFA-3719-3415-0BF1-E8C5E561C3B1> /usr/lib/libobjc.A.dylib
    0x808f0000 - 0x808f3fe7  libmathCommon.A.dylib 315.0.0 (compatibility 1.0.0) <1622A54F-1A98-2CBE-B6A4-2122981A500E> /usr/lib/system/libmathCommon.A.dylib
    0x8fe00000 - 0x8fe4162b  dyld 132.1 (???) <5C229EB2-F7CA-A638-41B6-5755DE940108> /usr/lib/dyld
    0xb8000000 - 0xb81defff +com.adobe.InDesign 4.0.5.688 (4050) <C6CB6BA8-8BA2-8F0A-4A49-912B00D2FF10> /Applications/Adobe InDesign CS2/Adobe InDesign CS2.app/Contents/MacOS/Adobe InDesign CS2
    0xffff0000 - 0xffff1fff  libSystem.B.dylib ??? (???) <06A5336A-A6F6-4E62-F55F-4909A64631C2> /usr/lib/libSystem.B.dylib
    Translated Code Information:
    objc[184]: garbage collection is ON
    Rosetta Version:  22.26
    Args: 
    /Applications/Adobe InDesign CS2/Adobe InDesign CS2.app/Contents/MacOS/Adobe InDesign CS2 -psn_0_65552
    Exception: EXC_BAD_ACCESS (0x0001)
    Thread 0: (0xf1b27d74, 0xb815a8ff)
    0x00383038: /usr/lib/libSystem.B.dylib : __dispatch_semaphore_wait_slow + 248
    0x00381724: /usr/lib/libSystem.B.dylib : __dispatch_worker_thread + 116
    0x002a17e8: /usr/lib/libSystem.B.dylib : __pthread_body + 40
    0x00000000: No symbol
    PPC Thread State
    srr0: 0x00000000
    srr1: 0x00000000
    vrsave: 0x00000000
    cr:  0xXXXXXXXX
    xer: 0x20000000
    lr: 0x00383050
    ctr: 0x00201140
    r00: 0xffffffda
    r01: 0xf1aa6dc0
    r02: 0x00000000
    r03: 0x00002403
    r04: 0x00000040
    r05: 0x3b914d02
    r06: 0x00000020
    r07: 0x00000000
    r08: 0x3b914d02
    r09: 0x00000000
    r10: 0x3b914d02
    r11: 0x003d7664
    r12: 0x00201140
    r13: 0x00000000
    r14: 0x00000000
    r15: 0x00000000
    r16: 0x00000000
    r17: 0x00000000
    r18: 0x00000000
    r19: 0x00000000
    r20: 0x00000000
    r21: 0x003dd6ec
    r22: 0x003dd6e0
    r23: 0x003dd6e8
    r24: 0x00000070
    r25: 0xd77470ae
    r26: 0x003dd378
    r27: 0x00000040
    r28: 0x0000000f
    r29: 0x2243cd02
    r30: 0x003dd6c0
    r31: 0x00382f48
    Thread 1: (0xe7ea684c, 0xb815aa8b)
    0x01e0a90c: /System/Library/Frameworks/CoreFoundation.framework/Versions/A/CoreFoundation : ___CFRunLoopModeIsEmpty + 160
    0x01e0efb8: /System/Library/Frameworks/CoreFoundation.framework/Versions/A/CoreFoundation : ___CFRunLoopRun + 2396
    0x01e10208: /System/Library/Frameworks/CoreFoundation.framework/Versions/A/CoreFoundation : _CFRunLoopRunSpecific + 656
    0x01e10468: /System/Library/Frameworks/CoreFoundation.framework/Versions/A/CoreFoundation : _CFRunLoopRun + 72
    0x05c0864c: /System/Library/PrivateFrameworks/DesktopServicesPriv.framework/Versions/A/DesktopService sPriv : TSystemNotificationTask::SystemNotificationTaskProc(void*) + 556
    0x020ace7c: /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/CarbonCore.framew ork/Versions/A/CarbonCore : _PrivateMPEntryPoint + 100
    0x002a17e8: /usr/lib/libSystem.B.dylib : __pthread_body + 40
    0x00000000: No symbol
    PPC Thread State
    srr0: 0x00000000
    srr1: 0x00000000
    vrsave: 0x00000000
    cr:  0xXXXXXXXX
    xer: 0x00000000
    lr: 0x00201804
    ctr: 0x002010d0
    r00: 0xffffffe1
    r01: 0xf0488060
    r02: 0x01f1a404
    r03: 0xf048817c
    r04: 0x07000006
    r05: 0x00000000
    r06: 0x00000800
    r07: 0x0000a603
    r08: 0x00000000
    r09: 0x00000000
    r10: 0x00000000
    r11: 0x003d717c
    r12: 0x002010d0
    r13: 0x00000000
    r14: 0x7fffffff
    r15: 0xffffffff
    r16: 0x0000005e
    r17: 0x6804b42d
    r18: 0x003de6b0
    r19: 0x01ec3cd0
    r20: 0x01f19a60
    r21: 0xf048817c
    r22: 0xf048817c
    r23: 0x00000000
    r24: 0x00000800
    r25: 0x0000a603
    r26: 0x00000000
    r27: 0x00000000
    r28: 0x07000006
    r29: 0x07000006
    r30: 0x00000000
    r31: 0x01e0e664
    Thread 2: (0xf21aee34, 0xb815a8ff)
    0x00383038: /usr/lib/libSystem.B.dylib : __dispatch_semaphore_wait_slow + 248
    0x00381724: /usr/lib/libSystem.B.dylib : __dispatch_worker_thread + 116
    0x002a17e8: /usr/lib/libSystem.B.dylib : __pthread_body + 40
    0x00000000: No symbol
    PPC Thread State
    srr0: 0x00000000
    srr1: 0x00000000
    vrsave: 0x00000000
    cr:  0xXXXXXXXX
    xer: 0x20000000
    lr: 0x00383050
    ctr: 0x00201140
    r00: 0xffffffda
    r01: 0xf212ddc0
    r02: 0x00000000
    r03: 0x00002803
    r04: 0x00000040
    r05: 0x3b9a82ae
    r06: 0x00000020
    r07: 0x00000000
    r08: 0x3b9a82ae
    r09: 0x00000000
    r10: 0x3b9a82ae
    r11: 0x003d7664
    r12: 0x00201140
    r13: 0x00000000
    r14: 0x00000000
    r15: 0x00000000
    r16: 0x00000000
    r17: 0x00000000
    r18: 0x00000000
    r19: 0x00000000
    r20: 0x00000000
    r21: 0x003dd7ec
    r22: 0x003dd7e0
    r23: 0x003dd7e8
    r24: 0x00000070
    r25: 0xf270f5a9
    r26: 0x003dd568
    r27: 0x00000040
    r28: 0x0000000f
    r29: 0x224d02ae
    r30: 0x003dd7c0
    r31: 0x00382f48
    Thread 3: (0xe33aee34, 0xb815a8ff)
    0x00383038: /usr/lib/libSystem.B.dylib : __dispatch_semaphore_wait_slow + 248
    0x00381724: /usr/lib/libSystem.B.dylib : __dispatch_worker_thread + 116
    0x002a17e8: /usr/lib/libSystem.B.dylib : __pthread_body + 40
    0x00000000: No symbol
    PPC Thread State
    srr0: 0x00000000
    srr1: 0x00000000
    vrsave: 0x00000000
    cr:  0xXXXXXXXX
    xer: 0x20000000
    lr: 0x00383050
    ctr: 0x00201140
    r00: 0xffffffda
    r01: 0xf0407dc0
    r02: 0x00000000
    r03: 0x00002403
    r04: 0x00000040
    r05: 0x3b9a8e3c
    r06: 0x00000020
    r07: 0x00000000
    r08: 0x3b9a8e3c
    r09: 0x00000000
    r10: 0x3b9a8e3c
    r11: 0x003d7664
    r12: 0x00201140
    r13: 0x00000000
    r14: 0x00000000
    r15: 0x00000000
    r16: 0x00000000
    r17: 0x00000000
    r18: 0x00000000
    r19: 0x00000000
    r20: 0x00000000
    r21: 0x003dd6ec
    r22: 0x003dd6e0
    r23: 0x003dd6e8
    r24: 0x0000007a
    r25: 0x8b96c9e1
    r26: 0x003dd378
    r27: 0x00000040
    r28: 0x0000000f
    r29: 0x224d0e3c
    r30: 0x003dd6c0
    r31: 0x00382f48
    Thread 4: (0xefcece34, 0xb815a8ff)
    0x00383038: /usr/lib/libSystem.B.dylib : __dispatch_semaphore_wait_slow + 248
    0x00381724: /usr/lib/libSystem.B.dylib : __dispatch_worker_thread + 116
    0x002a17e8: /usr/lib/libSystem.B.dylib : __pthread_body + 40
    0x00000000: No symbol
    PPC Thread State
    srr0: 0x00000000
    srr1: 0x00000000
    vrsave: 0x00000000
    cr:  0xXXXXXXXX
    xer: 0x20000000
    lr: 0x00383050
    ctr: 0x00201140
    r00: 0xffffffda
    r01: 0xf069cdc0
    r02: 0x00000000
    r03: 0x00002603
    r04: 0x00000040
    r05: 0x3b9a312a
    r06: 0x00000020
    r07: 0x00000000
    r08: 0x3b9a312a
    r09: 0x00000000
    r10: 0x3b9a312a
    r11: 0x003d7664
    r12: 0x00201140
    r13: 0x00000000
    r14: 0x00000000
    r15: 0x00000000
    r16: 0x00000000
    r17: 0x00000000
    r18: 0x00000000
    r19: 0x00000000
    r20: 0x00000000
    r21: 0x003dd76c
    r22: 0x003dd760
    r23: 0x003dd768
    r24: 0x00000070
    r25: 0xf3eab809
    r26: 0x003dd470
    r27: 0x00000040
    r28: 0x0000000f
    r29: 0x224cb12a
    r30: 0x003dd740
    r31: 0x00382f48
    Thread 5: (0xb02a2e34, 0xb815a8ff)
    0x020abf30: /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/CarbonCore.framew ork/Versions/A/CarbonCore : _MPWaitOnSemaphore + 40
    0x01039f90: @executable_path/../Frameworks/AdobeACE.framework/Versions/A/AdobeACE : ACESemaphoreList::Wait(unsigned long) + 36
    0x0103a1dc: @executable_path/../Frameworks/AdobeACE.framework/Versions/A/AdobeACE : ACEMPThread::Task() + 76
    0x01039ba0: @executable_path/../Frameworks/AdobeACE.framework/Versions/A/AdobeACE : _TaskGlue + 28
    0x020ace7c: /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/CarbonCore.framew ork/Versions/A/CarbonCore : _PrivateMPEntryPoint + 100
    0x002a17e8: /usr/lib/libSystem.B.dylib : __pthread_body + 40
    0x00000000: No symbol
    PPC Thread State
    srr0: 0x00000000
    srr1: 0x00000000
    vrsave: 0x00000000
    cr:  0xXXXXXXXX
    xer: 0x00000000
    lr: 0x020abf74
    ctr: 0x00201140
    r00: 0xffffffda
    r01: 0xf0284d20
    r02: 0x07530ce0
    r03: 0x00004b03
    r04: 0x7fffffff
    r05: 0x00000000
    r06: 0x00000000
    r07: 0x00000000
    r08: 0x00000002
    r09: 0x4d555458
    r10: 0x00000000
    r11: 0x003d7664
    r12: 0x00201140
    r13: 0x00000000
    r14: 0x00000000
    r15: 0x00000000
    r16: 0x00000000
    r17: 0x00000000
    r18: 0x00000000
    r19: 0x00000000
    r20: 0x00000000
    r21: 0x00000000
    r22: 0x00000000
    r23: 0x00000000
    r24: 0x00000000
    r25: 0x00000000
    r26: 0x00000000
    r27: 0x00000000
    r28: 0x00000000
    r29: 0x7fffffff
    r30: 0x00000000
    r31: 0x020abf14
    Thread 6: (0xe9f04d74, 0xb815a8ff)
    0x00383038: /usr/lib/libSystem.B.dylib : __dispatch_semaphore_wait_slow + 248
    0x00381724: /usr/lib/libSystem.B.dylib : __dispatch_worker_thread + 116
    0x002a17e8: /usr/lib/libSystem.B.dylib : __pthread_body + 40
    0x00000000: No symbol
    PPC Thread State
    srr0: 0x00000000
    srr1: 0x00000000
    vrsave: 0x00000000
    cr:  0xXXXXXXXX
    xer: 0x20000000
    lr: 0x00383050
    ctr: 0x00201140
    r00: 0xffffffda
    r01: 0xf058adc0
    r02: 0x00000000
    r03: 0x00002703
    r04: 0x00000040
    r05: 0x3b9a74c2
    r06: 0x00000020
    r07: 0x00000000
    r08: 0x3b9a74c2
    r09: 0x00000000
    r10: 0x3b9a74c2
    r11: 0x003d7664
    r12: 0x00201140
    r13: 0x00000000
    r14: 0x00000000
    r15: 0x00000000
    r16: 0x00000000
    r17: 0x00000000
    r18: 0x00000000
    r19: 0x00000000
    r20: 0x00000000
    r21: 0x003dd7ac
    r22: 0x003dd7a0
    r23: 0x003dd7a8
    r24: 0x0000006d
    r25: 0xb1aae81d
    r26: 0x003dd4ec
    r27: 0x00000040
    r28: 0x0000000f
    r29: 0x224cf4c2
    r30: 0x003dd780
    r31: 0x00382f48
    Thread 7: (0xeff93d74, 0xb815a8ff)
    0x00383038: /usr/lib/libSystem.B.dylib : __dispatch_semaphore_wait_slow + 248
    0x00381724: /usr/lib/libSystem.B.dylib : __dispatch_worker_thread + 116
    0x002a17e8: /usr/lib/libSystem.B.dylib : __pthread_body + 40
    0x00000000: No symbol
    PPC Thread State
    srr0: 0x00000000
    srr1: 0x00000000
    vrsave: 0x00000000
    cr:  0xXXXXXXXX
    xer: 0x20000000
    lr: 0x00383050
    ctr: 0x00201140
    r00: 0xffffffda
    r01: 0xf1922dc0
    r02: 0x00000000
    r03: 0x00002803
    r04: 0x00000040
    r05: 0x3b9a7afd
    r06: 0x00000020
    r07: 0x00000000
    r08: 0x3b9a7afd
    r09: 0x00000000
    r10: 0x3b9a7afd
    r11: 0x003d7664
    r12: 0x00201140
    r13: 0x00000000
    r14: 0x00000000
    r15: 0x00000000
    r16: 0x00000000
    r17: 0x00000000
    r18: 0x00000000
    r19: 0x00000000
    r20: 0x00000000
    r21: 0x003dd7ec
    r22: 0x003dd7e0
    r23: 0x003dd7e8
    r24: 0x00000070
    r25: 0xf26ce354
    r26: 0x003dd568
    r27: 0x00000040
    r28: 0x0000000f
    r29: 0x224cfafd
    r30: 0x003dd7c0
    r31: 0x00382f48
    Thread 8: (0xb0324d78, 0xb815a8c8)
    0x0029dfdc: /usr/lib/libSystem.B.dylib : __pthread_cond_wait + 968
    0x48080448: ./TINthread.dylib : ThreadUtils::ConditionVariable::Wait(ThreadUtils::MutualExclusion&) + 24
    0x4807b708: ./TINthread.dylib : ThreadUtils::ThreadPool::Dispatcher() + 180
    0x4807b1a4: ./TINthread.dylib : ThreadUtils::ThreadPool::ThreadProc(void*) + 20
    0x002a17e8: /usr/lib/libSystem.B.dylib : __pthread_body + 40
    0x00000000: No symbol
    PPC Thread State
    srr0: 0x00000000
    srr1: 0x00000000
    vrsave: 0x00000000
    cr:  0xXXXXXXXX
    xer: 0x00000000
    lr: 0x0029dfdc
    ctr: 0x00201130
    r00: 0xffffffdb
    r01: 0xf0305d30
    r02: 0x0000185b
    r03: 0x00006703
    r04: 0x00006803
    r05: 0x00000028
    r06: 0x00000030
    r07: 0x00006603
    r08: 0x00000000
    r09: 0x00000001
    r10: 0x00000000
    r11: 0x0041188c
    r12: 0x00201130
    r13: 0x00000000
    r14: 0x00000000
    r15: 0x00000000
    r16: 0x00000000
    r17: 0x00000000
    r18: 0x00000000
    r19: 0x00000000
    r20: 0x00000000
    r21: 0x00000000
    r22: 0x00000000
    r23: 0x00000000
    r24: 0x00000000
    r25: 0x00000000
    r26: 0x003de6fc
    r27: 0x00000000
    r28: 0x53d25800
    r29: 0x00000000
    r30: 0x53d25860
    r31: 0x0029dc20
    Thread 9: (0xea3c8d74, 0xb815a8ff)
    0x00383038: /usr/lib/libSystem.B.dylib : __dispatch_semaphore_wait_slow + 248
    0x00381724: /usr/lib/libSystem.B.dylib : __dispatch_worker_thread + 116
    0x002a17e8: /usr/lib/libSystem.B.dylib : __pthread_body + 40
    0x00000000: No symbol
    PPC Thread State
    srr0: 0x00000000
    srr1: 0x00000000
    vrsave: 0x00000000
    cr:  0xXXXXXXXX
    xer: 0x20000000
    lr: 0x00383050
    ctr: 0x00201140
    r00: 0xffffffda
    r01: 0xf060bdc0
    r02: 0x00000000
    r03: 0x00002703
    r04: 0x00000040
    r05: 0x3b9a6934
    r06: 0x00000020
    r07: 0x00000000
    r08: 0x3b9a6934
    r09: 0x00000000
    r10: 0x3b9a6934
    r11: 0x003d7664
    r12: 0x00201140
    r13: 0x00000000
    r14: 0x00000000
    r15: 0x00000000
    r16: 0x00000000
    r17: 0x00000000
    r18: 0x00000000
    r19: 0x00000000
    r20: 0x00000000
    r21: 0x003dd7ac
    r22: 0x003dd7a0
    r23: 0x003dd7a8
    r24: 0x0000006d
    r25: 0xb55086bc
    r26: 0x003dd4ec
    r27: 0x00000040
    r28: 0x0000000f
    r29: 0x224ce934
    r30: 0x003dd780
    r31: 0x00382f48
    Thread 10: (0xb019ed74, 0xb815a8ff)
    0x00383038: /usr/lib/libSystem.B.dylib : __dispatch_semaphore_wait_slow + 248
    0x00381724: /usr/lib/libSystem.B.dylib : __dispatch_worker_thread + 116
    0x002a17e8: /usr/lib/libSystem.B.dylib : __pthread_body + 40
    0x00000000: No symbol
    PPC Thread State
    srr0: 0x00000000
    srr1: 0x00000000
    vrsave: 0x00000000
    cr:  0xXXXXXXXX
    xer: 0x20000000
    lr: 0x00383050
    ctr: 0x00201140
    r00: 0xffffffda
    r01: 0xf0182dc0
    r02: 0x00000000
    r03: 0x00002703
    r04: 0x00000040
    r05: 0x3b9a55fb
    r06: 0x00000020
    r07: 0x00000000
    r08: 0x3b9a55fb
    r09: 0x00000000
    r10: 0x3b9a55fb
    r11: 0x003d7664
    r12: 0x00201140
    r13: 0x00000000
    r14: 0x00000000
    r15: 0x00000000
    r16: 0x00000000
    r17: 0x00000000
    r18: 0x00000000
    r19: 0x00000000
    r20: 0x00000000
    r21: 0x003dd7ac
    r22: 0x003dd7a0
    r23: 0x003dd7a8
    r24: 0x00000076
    r25: 0xb54a69eb
    r26: 0x003dd4ec
    r27: 0x00000040
    r28: 0x0000000f
    r29: 0x224cd5fb
    r30: 0x003dd780
    r31: 0x00382f48
    Thread 11: (0xea44abcc, 0xb815ac81)
    0x01e1ba38: /System/Library/Frameworks/CoreFoundation.framework/Versions/A/CoreFoundation : ___CFSocketManager + 856
    0x002a17e8: /usr/lib/libSystem.B.dylib : __pthread_body + 40
    0x00000000: No symbol
    PPC Thread State
    srr0: 0x00000000
    srr1: 0x00000000
    vrsave: 0x00000000
    cr:  0xXXXXXXXX
    xer: 0x20000000
    lr: 0x01e1badc
    ctr: 0x00261b3c
    r00: 0x0000005d
    r01: 0xf0613a90
    r02: 0x01f1b6e8
    r03: 0x00000060
    r04: 0xd56fb7f0
    r05: 0xd56fb610
    r06: 0x00000000
    r07: 0x00000000
    r08: 0x00000000
    r09: 0x01f1bb90
    r10: 0x0351e7f8
    r11: 0x01f06444
    r12: 0x00261b3c
    r13: 0x01f1bb90
    r14: 0x01f1bb90
    r15: 0xd56fb610
    r16: 0x01ec4e54
    r17: 0x01f1b6e8
    r18: 0x00000000
    r19: 0xd56fb7f0
    r20: 0xf060be60
    r21: 0xd56fb920
    r22: 0xd56fbcf0
    r23: 0x01f1a1f0
    r24: 0x00000000
    r25: 0x00000001
    r26: 0x00000060
    r27: 0xea560c50
    r28: 0x00000000
    r29: 0xd56fabf0
    r30: 0x00000000
    r31: 0x01e1b6e8
    Thread 12: Crashed (0xb7fff9d0, 0xb80c5d10)
    0x0145e9b4: @executable_path/../Frameworks/AdobeMPS.framework/Versions/A/AdobeMPS : _derivedShowClassDesc + 0
    0x01386fbc: @executable_path/../Frameworks/AdobeMPS.framework/Versions/A/AdobeMPS : _ExpandVMSection + 408
    0x013878c8: @executable_path/../Frameworks/AdobeMPS.framework/Versions/A/AdobeMPS : _ReadFileVM + 264
    0x0138797c: @executable_path/../Frameworks/AdobeMPS.framework/Versions/A/AdobeMPS : _StartVM + 60
    0x013525ac: @executable_path/../Frameworks/AdobeMPS.framework/Versions/A/AdobeMPS : _BuildInitialState + 48
    0x01352af0: @executable_path/../Frameworks/AdobeMPS.framework/Versions/A/AdobeMPS : _InitPostScript + 364
    0x013654ec: @executable_path/../Frameworks/AdobeMPS.framework/Versions/A/AdobeMPS : _PSInitVM + 288
    0x01365bc0: @executable_path/../Frameworks/AdobeMPS.framework/Versions/A/AdobeMPS : _InitInterpreter + 216
    0x01365c4c: @executable_path/../Frameworks/AdobeMPS.framework/Versions/A/AdobeMPS : _InitPSInterpreter + 64
    0x01355410: @executable_path/../Frameworks/AdobeMPS.framework/Versions/A/AdobeMPS : _PSRIPInitialize + 1124
    0x011191ac: @executable_path/../Frameworks/AdobeMPS.framework/Versions/A/AdobeMPS : PS3DistillerGlue::Initialize(_t_CommonParserParams const&, _t_MPSPostScript3ParserParams const&) + 508
    0x01116204: @executable_path/../Frameworks/AdobeMPS.framework/Versions/A/AdobeMPS : MPSServer_Parser_PS3::Parse(ImpsServer_Dictionary*, ImpsServer_Stream*, ImpsServer_Stream*, ImpsServer_Stream*) + 340
    0x5d445cd4: ./EPS Page Item.framework/Versions/A/EPS Page Item : _GetPlugIn + 261076
    0x5d408664: ./EPS Page Item.framework/Versions/A/EPS Page Item : _GetPlugIn + 9572
    0x5d406560: ./EPS Page Item.framework/Versions/A/EPS Page Item : _GetPlugIn + 1120
    0x2c196ad4: @executable_path/PublicLib.dylib : CShape::Draw(GraphicsData*, long) + 436
    0x2c195c9c: @executable_path/PublicLib.dylib : CShape::DrawHierarchy(GraphicsData*, long) + 188
    0x2c199b74: @executable_path/PublicLib.dylib : CGraphicFrameShape::DrawShape(GraphicsData*, long) + 2740
    0x2c196ad4: @executable_path/PublicLib.dylib : CShape::Draw(GraphicsData*, long) + 436
    0xb5289438: ./Layer.framework/Versions/A/Layer : dyld_stub_binding_helper + 20200
    0x28cc5cc8: ./Generic Page Item.framework/Versions/A/Generic Page Item : _GetPlugIn + 179480
    0xb5288848: ./Layer.framework/Versions/A/Layer : dyld_stub_binding_helper + 17144
    0xb52892f8: ./Layer.framework/Versions/A/Layer : dyld_stub_binding_helper + 19880
    0x80d03c34: No symbol
    0x80d05574: No symbol
    0x80d06290: No symbol
    0x1be32ee8: ./AppFramework.framework/Versions/A/AppFramework : _GetPlugIn + 87400
    0x20e674e4: ./Layout UI.framework/Versions/A/Layout UI : dyld_stub_binding_helper + 20500
    0x20e6979c: ./Layout UI.framework/Versions/A/Layout UI : dyld_stub_binding_helper + 29388
    0x20e6a200: ./Layout UI.framework/Versions/A/Layout UI : dyld_stub_binding_helper + 32048
    0x20e6b618: ./Layout UI.framework/Versions/A/Layout UI : dyld_stub_binding_helper + 37192
    0x2b01cb88: @executable_path/WidgetBinLib.dylib : PanelView::DrawChild(IPanelControlData*, short, IGraphicsContext*) + 488
    0x2b01cd04: @executable_path/WidgetBinLib.dylib : PanelView::Draw(IViewPort*, OpaqueRgnHandle*) + 164
    0x2b01cb88: @executable_path/WidgetBinLib.dylib : PanelView::DrawChild(IPanelControlData*, short, IGraphicsContext*) + 488
    0x2b01cd04: @executable_path/WidgetBinLib.dylib : PanelView::Draw(IViewPort*, OpaqueRgnHandle*) + 164
    0x2b01cb88: @executable_path/WidgetBinLib.dylib : PanelView::DrawChild(IPanelControlData*, short, IGraphicsContext*) + 488
    0x2b01cd04: @executable_path/WidgetBinLib.dylib : PanelView::Draw(IViewPort*, OpaqueRgnHandle*) + 164
    0x2b01cb88: @executable_path/WidgetBinLib.dylib : PanelView::DrawChild(IPanelControlData*, short, IGraphicsContext*) + 488
    0x2b01cd04: @executable_path/WidgetBinLib.dylib : PanelView::Draw(IViewPort*, OpaqueRgnHandle*) + 164
    0x2b0a586c: @executable_path/WidgetBinLib.dylib : MWindow::Paint(IViewPort*, OpaqueRgnHandle*) + 332
    0x2b0a5bb4: @executable_path/WidgetBinLib.dylib : MWindow::SystemPaint() + 276
    0x2b0ad32c: @executable_path/WidgetBinLib.dylib : CWindowEH::Update(IEvent*) + 76
    0x2b0ac51c: @executable_path/WidgetBinLib.dylib : MWindowEH::Update(IEvent*) + 172
    0x2b0aa878: @executable_path/WidgetBinLib.dylib : CDefaultEH::Update(IEvent*) + 72
    0x2c1d68c4: @executable_path/PublicLib.dylib : CEventDispatcher::DispatchToEventHandlers(IEvent*) + 356
    0x2c1d694c: @executable_path/PublicLib.dylib : CEventDispatcher::DispatchEvent(IEvent*, IEvent::SystemHandledState) + 28
    0x1daff82c: ./Application UI.framework/Versions/A/Application UI : _GetPlugIn + 371404
    0x1dafcf2c: ./Application UI.framework/Versions/A/Application UI : _GetPlugIn + 360908
    0x0168b81c: /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/HIToolbox.framework/Ver sions/A/HIToolbox : DispatchEventToHandlers(EventTargetRec*, OpaqueEventRef*, HandlerCallRec*) + 1524
    0x0168c1d8: /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/HIToolbox.framework/Ver sions/A/HIToolbox : SendEventToEventTargetInternal(OpaqueEventRef*, OpaqueEventTargetRef*, HandlerCallRec*) + 456
    0x0168c4b8: /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/HIToolbox.framework/Ver sions/A/HIToolbox : _SendEventToEventTargetWithOptions + 72
    0x01687fcc: /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/HIToolbox.framework/Ver sions/A/HIToolbox : ToolboxEventDispatcherHandler(OpaqueEventHandlerCallRef*, OpaqueEventRef*, void*) + 2500
    0x0168bc54: /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/HIToolbox.framework/Ver sions/A/HIToolbox : DispatchEventToHandlers(EventTargetRec*, OpaqueEventRef*, HandlerCallRec*) + 2604
    0x0168c1d8: /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/HIToolbox.framework/Ver sions/A/HIToolbox : SendEventToEventTargetInternal(OpaqueEventRef*, OpaqueEventTargetRef*, HandlerCallRec*) + 456
    0x0168c518: /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/HIToolbox.framework/Ver sions/A/HIToolbox : _SendEventToEventTarget + 72
    0x1be027f4: ./AppFramework.framework/Versions/A/AppFramework : dyld_stub_binding_helper + 3124
    0x1be2151c: ./AppFramework.framework/Versions/A/AppFramework : _GetPlugIn + 15260
    0x00002c58: No symbol
    0x000024fc: No symbol
    0x00002370: No symbol
    0xa8f7ffbf: No symbol
    PPC Thread State
    srr0: 0x00000000
    srr1: 0x00000000
    vrsave: 0x00000000
    cr:  0xXXXXXXXX
    xer: 0x00000000
    lr: 0x0138490c
    ctr: 0x00000000
    r00: 0x01386fbc
    r01: 0xbfff9c60
    r02: 0x00000000
    r03: 0xec16b0ac
    r04: 0xffdb8010
    r05: 0xffffffff
    r06: 0x00000001
    r07: 0x00000000
    r08: 0x00000000
    r09: 0xbfff9bb0
    r10: 0x0002c000
    r11: 0x00000000
    r12: 0x00000000
    r13: 0xcc4693d8
    r14: 0x00001800
    r15: 0x00020077
    r16: 0x00000000
    r17: 0xc602ca5c
    r18: 0x00000001
    r19: 0x000af311
    r20: 0x5d4b5e40
    r21: 0x0146787c
    r22: 0x0135299c
    r23: 0xbfffa240
    r24: 0x00000000
    r25: 0x01386e44
    r26: 0xec17d638
    r27: 0x00000000
    r28: 0x0002b500
    r29: 0xec16b0ac
    r30: 0x00000000
    r31: 0x00000001
    Thread 13: (0xf1c2ad74, 0xb815a8ff)
    0x00383038: /usr/lib/libSystem.B.dylib : __dispatch_semaphore_wait_slow + 248
    0x00381724: /usr/lib/libSystem.B.dylib : __dispatch_worker_thread + 116
    0x002a17e8: /usr/lib/libSystem.B.dylib : __pthread_body + 40
    0x00000000: No symbol
    PPC Thread State
    srr0: 0x00000000
    srr1: 0x00000000
    vrsave: 0x00000000
    cr:  0xXXXXXXXX
    xer: 0x20000000
    lr: 0x00383050
    ctr: 0x00201140
    r00: 0xffffffda
    r01: 0xf1ba9dc0
    r02: 0x00000000
    r03: 0x00002403
    r04: 0x00000040
    r05: 0x3b950881
    r06: 0x00000020
    r07: 0x00000000
    r08: 0x3b950881
    r09: 0x00000000
    r10: 0x3b950881
    r11: 0x003d7664
    r12: 0x00201140
    r13: 0x00000000
    r14: 0x00000000
    r15: 0x00000000
    r16: 0x00000000
    r17: 0x00000000
    r18: 0x00000000
    r19: 0x00000000
    r20: 0x00000000
    r21: 0x003dd6ec
    r22: 0x003dd6e0
    r23: 0x003dd6e8
    r24: 0x00000070
    r25: 0xd776b675
    r26: 0x003dd378
    r27: 0x00000040
    r28: 0x0000000f
    r29: 0x22478881
    r30: 0x003dd6c0
    r31: 0x00382f48
    Thread 14: (0xe9e82e34, 0xb815a8ff)
    0x00383038: /usr/lib/libSystem.B.dylib : __dispatch_semaphore_wait_slow + 248
    0x00381724: /usr/lib/libSystem.B.dylib : __dispatch_worker_thread + 116
    0x002a17e8: /usr/lib/libSystem.B.dylib : __pthread_body + 40
    0x00000000: No symbol
    PPC Thread State
    srr0: 0x00000000
    srr1: 0x00000000
    vrsave: 0x00000000
    cr:  0xXXXXXXXX
    xer: 0x20000000
    lr: 0x00383050
    ctr: 0x00201140
    r00: 0xffffffda
    r01: 0xf0509dc0
    r02: 0x00000000
    r03: 0x00002703
    r04: 0x00000040
    r05: 0x3b9a8dd6
    r06: 0x00000020
    r07: 0x00000000
    r08: 0x3b9a8dd6
    r09: 0x00000000
    r10: 0x3b9a8dd6
    r11: 0x003d7664
    r12: 0x00201140
    r13: 0x00000000
    r14: 0x00000000
    r15: 0x00000000
    r16: 0x00000000
    r17: 0x00000000
    r18: 0x00000000
    r19: 0x00000000
    r20: 0x00000000
    r21: 0x003dd7ac
    r22: 0x003dd7a0
    r23: 0x003dd7a8
    r24: 0x0000007a
    r25: 0xfa08c2c2
    r26: 0x003dd4ec
    r27: 0x00000040
    r28: 0x0000000f
    r29: 0x224d0dd6
    r30: 0x003dd780
    r31: 0x00382f48
    Thread 15: (0xb009ad38, 0xb815acc0)
    0x00381a4c: /usr/lib/libSystem.B.dylib : __dispatch_mgr_invoke + 228
    0x00381430: /usr/lib/libSystem.B.dylib : __dispatch_queue_invoke + 308
    0x003815c0: /usr/lib/libSystem.B.dylib : __dispatch_worker_thread2 + 372
    0x003816fc: /usr/lib/libSystem.B.dylib : __dispatch_worker_thread + 76
    0x002a17e8: /usr/lib/libSystem.B.dylib : __pthread_body + 40
    0x00000000: No symbol
    PPC Thread State
    srr0: 0x00000000
    srr1: 0x00000000
    vrsave: 0x00000000
    cr:  0xXXXXXXXX
    xer: 0x20000000
    lr: 0x00381a14
    ctr: 0x00244cec
    r00: 0x0000016b
    r01: 0xf0080bb0
    r02: 0x00000000
    r03: 0x00000004
    r04: 0x00000000
    r05: 0x00000000
    r06: 0xf0080d0c
    r07: 0x00000001
    r08: 0xf0080d28
    r09: 0x00000000
    r10: 0x00000004
    r11: 0x003d6520
    r12: 0x00244cec
    r13: 0x10624dd3
    r14: 0x003d0b24
    r15: 0xf0080c0c
    r16: 0xf0080c8c
    r17: 0x003f1970
    r18: 0xf0080d28
    r19: 0x003eb500
    r20

    Thank you!
    Am 15.09.13 23:21, schrieb Bob Levine:
    >
          Re: why does it stop?
    created by Bob Levine <http://forums.adobe.com/people/BobLevine> in
    /InDesign/ - View the full discussion
    <http://forums.adobe.com/message/5683991#5683991

  • Why does siri stop listening so quickly, I cant even finish my question or command half the time before it starts trying to search

    Most of the time siri works fairly well, but there are a good amount of times where it just stops "listening" and starts searching. Like ill say Find directions to...and it jumps ahead and starts searching before i can say where i want directions too. ***.

    There are a few reasons why siri will stop listening:
    1. It is having problems connecting to the network so can't search for what you are looking for. You are prompted with something like: I am sorry I can't connect right now.
    2. There is a pause when you are dictating something to siri so it assumes you are done. Pauses of about 2 or 3 seconds should do it.
    3. You accidentally press the siri button indicating you are done dictating to siri.
    If none of these are the problem, I don't know what else to do. How often is this occuring?

  • Hey. I have recently made an update on my daughters iMac, particularly update OS X 10.9.4, when finished, its still asking for update and the same update stills remarked in the apple update menu and at the App store app. Why doesn't stop asking f.ud?

    Hey. I have recently made an update on my daughters iMac, particularly the update OS X 10.9.4, when finished, its still asking for update and the same update stills remarked as ready in the apple update menu and remarked as 1 to go at the App store app. Why doesn't stop asking for update when its done like 5 times or more? Thanks for taking your time!

    If you don't already have a current backup, back up all data, then reinstall the OS.* You don't need to erase the startup volume, and you won't need the backup unless something goes wrong. If the system was upgraded from an older version of OS X, you may need the Apple ID and password you used.
    If you use FileVault 2, then before running the Installer you must launch Disk Utility and select the icon of the FileVault startup volume ("Macintosh HD," unless you gave it a different name.) It will be nested below another icon with the same name. Click the Unlock button in the toolbar and enter your login password when prompted. Then quit Disk Utility to be returned to the main Recovery screen.
    There are ways to back up a computer that isn't fully functional. Ask if you need guidance.
    If you installed the Java runtime distributed by Apple and still need it, you'll have to reinstall it. The same goes for Xcode. All other data will be preserved.
    *The linked support article refers to OS X 10.9 ("Mavericks"), but the procedure is the same for OS X 10.7 ("Lion") and later.

  • Why my firefox stopped loading when I want to open a new tab? this will continue if I do not move the mouse. this also happen when I download.

    why my firefox stopped loading when I want to open a new tab? this will continue if I do not move the mouse. this is also happen when I download. if I does not move the mouse, the download process stops or stagnant ormanaged to download but not full

    hey, just to keep you updated - there is now a fix available for firefox 25, which should address the particular problem of pages not loading unless the mouse is moved.
    if you have downgraded to firefox 24 to work around the issue, please go to ''firefox > options > advanced > update'' and turn automatic updates back on. then go to ''firefox > help > about firefox'' which should trigger the update to firefox 25.0.1.
    <br>in case you need to download the setup file for firefox 25.0.1 separately you can do so from https://www.mozilla.org/firefox/channel/#firefox

  • Why my video stops for sometime while playing on vlc player

    Why my video stops for sometime while playing on vlc player?
    It started from last week. Whenever I play a video it stops for about 5-10 seconds and then continue playing. I have played mp4 and avi format.
    But unable to understand the reason behind it. If someone out here know the reason and also how to fix this issue, please lease let me know.

    Nope,
    But I just discovered that that it is actually not only the sound that stops working but rather the whole video that has a "hick-up" and then when it continues the sound is gone. If I fastforward/rewind then it seem like the player rocovers and play the stream correctly again.
    What are the Mp4 clip prefs you have used when converting?
    I am planning to try some other settings when converting to see if that makes any difference but I doubt it will help. I think we will have to wait for a "better" i.e. working Video Player for the iPod ...

  • Why does iMovie stop importing my tape from the camcorder even though it says it is still importing?

    Why does iMovie stop importing my tape from the camcorder even though it says it is still importing?

    It's difficult to be sure without doing some network packet sniffing, but if it were another app syncing, it would be an awful coincidence, since it seems to happen only while I'm in Reminders.app -- as soon as I click the home button and go back to the home screen, it stops; when I launch Reminders again, it starts again.
    Moreover, it happens when I am not in the house, which rules out iTunes syncing.
    Note that it's not the syncing spinner (i.e. two arrows chasing each other in a circle) -- it's the data access spinner (like the wait spinner in many apps and the apple.com search box).

Maybe you are looking for

  • Can't HP Officejet pro 8100 do wifi access point?

    Yesterday my HP Officejet pro 8100 arrived and I try to connect via wifi. I thinked that It need a infrastructure access point to print via wifi. When I powered on the printer I osserved that It create an access point autonomously with SSID: HP-Setup

  • Script not working in SharePoint content editor webpart

    Hi All, <html> <head> <script type="text/javascript" src="https://www.google.com/jsapi"></script> <script language="javascript" type="text/javascript"> $(document).ready(function () { //Call your function here like //retrieveListItems(); ExecuteOrDel

  • PSE 10 is not shown in windows 8 "set your default programs"

    PSE 10 isn't shown as an option in windows 8 "set your default programs". Selecting individual file types doesn't help me much when, apart from .jpgs and .tiffs, I don't know all the file types PSE 10 can open and I want it to open everything it can.

  • NOT POWER UP

    NOT POWER UP

  • My Macbook and Macbook pro are both sluggish this week

    Is anyone using a macbook pro or older macbook with mobilme having these computers suddenly working very  sluggishly.  what might be worng.  ( Mail, address book, even the web is extremely slow suddenly)  Anyone have any ideas for me.  What should I