Reflection in  Numbers and Primitive Arguments  in a Method

Hi ,
I am trying to invoke a method which has primitive or Number arguments, my problem is that when i do method.invoke( ) it gives an instantiation exception, because it was trying to do clazzT.newInstance( ) where clazzT happened to be int.class ... ? so how do i create a new Instance of such a primitive to add it to argument list while doing method.invoke ?
so what i mean is, have a method like :
public void doSomething(int x){
}and i am trying to do a method.invoke( ) in a for loop with all the methods of the classes ...
anyone!? please i am trying to figure this out for a while!? :)
Rick

public class AnnotationFinderLogger implements InvocationHandler{
     private static final String CONST_NULL = "null";
     private Object target;
      * @param target
     public AnnotationFinderLogger(Object target){
          this.target = target;
      * @param <T>
      * @param clazz
      * @throws Throwable
     public <T> void find(Class<T> clazz) throws Throwable{
          if(clazz == null){
               throw new NullPointerException("[ Reason ] : " + clazz);
          Annotation annotation = clazz.getAnnotation(IsLoggable.class);
          if(annotation == null) {
               // skip it
               return;
          }else if(annotation.annotationType().equals(IsLoggable.class)){
               T t = clazz.newInstance();
               System.out.println("[ length ] = [ " + t.getClass().getMethods().length + " ] ");
               // instantiate proxy for the class given
               createProxy(t);
               Method[] methods = clazz.getMethods();
               for(Method method : methods){
                    if(method.getAnnotation(Log.class) != null && Modifier.isPublic(method.getModifiers())){
                         Object[] args;
                         // adds to the list of parameters by invoking clazz.newInstance( ) to gain the Object
                         List<Object> tempList = inspectParameterTypes(method);
                         args = tempList.toArray();
                         this.invoke(t, method, args);
      * @param <T>
      * @param t
     private <T> Object createProxy(T t) {
          return Proxy.newProxyInstance(Thread.currentThread().getContextClassLoader(),
                                        new Class[] {}, new AnnotationFinderLogger(t));
      * @param method
      * @return
      * @throws InstantiationException
      * @throws IllegalAccessException
      * @throws NoSuchMethodException
      * @throws SecurityException
     private List<Object> inspectParameterTypes(Method method) throws InstantiationException, IllegalAccessException, SecurityException, NoSuchMethodException {
          Class<?>[] arrayClass = method.getParameterTypes();
          // Assume no more than 6 args, Suns convention ;)
          Object[] args = null;
          List<Object> tempList = new ArrayList<Object>();
          // loop through parameter types
          for(Class<?> clazzT : arrayClass){
               System.out.println(" clazzT = " + clazzT.getName());     
               if(!clazzT.isPrimitive() && !clazzT.isArray()){
                    Object o  = clazzT.newInstance();
                    tempList.add(o);
               }else if(clazzT.isAssignableFrom(int.class)){
                    Integer argument = int.class.newInstance();
                    tempList.add(argument);
          return tempList;
     @Override
     public Object invoke(Object proxy, Method method, Object[] args) throws Throwable {
          System.out.println(" [ Begin ] : [ " + method.getName() + " ] ");
          for(int i = 0 ; i < args.length; i++){
               System.out.println(" [ Arguments] : [ " + args[i] + " ] ");
          Object returnValue = method.invoke(target, args);
          System.out.println(" [ Exiting ] : [ " + method.getName() + " ] ");
          System.out.println(" [ Return Values ] : [ " + returnValue + " ] ");
          return returnValue;
}here's my proxy code. I am checking for @Log annotation and then invoking the methods, when i invoke the methods i have to pass in the argument types, in that case i would need to check if its a primitive or not etc ...
I am kinda lost now ... x_x
Regards
Vyas, Anirudh

Similar Messages

  • About Numbers and margins

    Hello
    I'm using the Numbers's french version.
    When I open the Inspector of sheets and set every margins, header and footer to zero, the document is built with a margin of 0.5 cm on each side.
    It's a bit surprising because the Inspector doesn't reflect these margins and after closing/reopening it displays the null entered values.
    Is it the same with english version ?
    At this time I am unable to guess if it is a general anomaly or if it is one dedicated to the localised version.
    I already posted a report thru the official channel. Here it is:
    +When I set margins and headers size to zero, they are in fact set to 0,5 cm.+
    +It's really surprising because the Inspector doesn't not take this odd value in account.+
    +It displays the wished values which it doesn't apply them.+
    +So, I assumes that it is really a bug.+
    +May you look at that.+
    +I must add that I met this behaviour with a french system an a french Numbers.+
    +Maybe it's specific to this localised version (as others bugs).+
    +Your report page need a bit of update. It's unaware of 10.4.11 which I am using ;-)+
    +Yvan KOENIG+
    +To be a true "AppleWorks successor", iWork must offer a true database offering at least what AppleWorks does. Bento is not such a tool, it's just a pretty shoebox!+
    Yvan KOENIG (from FRANCE lundi 26 novembre 2007 20:26:51)

    Hello WWJD
    If I set all margins to zero as you did,
    it remains margins as you can see on the screenshots.
    I was unable to move the square to the real top of page with the arrow.
    I was just able to move it 7 mm lower the top coordinate was displaid as Y=0.
    To reach the real top, I am forced to enter the Inspector of Objects and set by hand the to coordinate to X=-0,80 Y=-0,70
    Same thing with the Table for which I set X=-0,80
    Yvan KOENIG (from FRANCE mercredi 28 novembre 2007 15:28:16)

  • Fixed-length numbers and strings

    Hello,
    I have to make a critical decision about API usage. I would be grateful if some of you could share their experiences. This will help me make an informed decision and avoid potential trouble further down the line.
    I have to use fixed-length integer numbers and fixed-length strings such as for example:
    -A string that is exactly 5-letter long (no longer and no shorter than 5 letters). e.g. "abcde"
    -A number that is exactly 8-digit long (no longer and no shorter than 8 digits). e.g. "12345678"
    Ideally I would get some sort of exception when the "container" for the letters or digits contains less or more than what the spec says.
    I am not sure which classes or primitives could meet my needs. As far as the fixed-length string is concerned I initially thought of using a array of chars but an array of chars is not that easy to manipulate and contains "garbage" until you explicitely fill it in with data. I'd rather some sort of class.
    Can anyone please advise me?
    Thanks in advance,
    Julien.

    Why not use the same thing like in the case of the String
    /**Warning: this is an example and not very good design.*/
    public class FixedInteger {
       private int min, max;
       private int value;
       public int getValue() { return value;}
       public void setValue(int v) {
            if (v >= min && v < max) {
                throw new Exception();
            value = v;
       /**ex. min = 10000, max = 100000 for 5 digit numbers*/
       public FixedInteger(int min, int max, int value) {
           this.min = min; this.max = max;
           setValue(value);
    }You can do tricks like convert it to immutabla like the String and Integer class in the Java Api
    Edited by: szgy on Oct 5, 2007 2:22 PM

  • Invoking a method using reflection with json data as argument

    Hi,
    I want to invoke a method using reflection and this method have one argument . Now I want to pass a json data as an argument to this method .Please see the following code.
    int HelloWorld(int Id){
    return Id;
    json data{"Id":43}
    how can I use the reflection to use the json.
    Please provide your guidelines

    Thanks for your reply, I am building a windows console application .And I want to convert the json data to object array to use in Method Base.Invoke method.
    Regards,
    Ethan
    Maybe you could select the correct language development forum here:
    http://social.msdn.microsoft.com/Forums/vstudio/en-US/home?category=vslanguages&filter=alltypes&sort=lastpostdesc
    Best Regards,
    We are trying to better understand customer views on social support experience, so your participation in this interview project would be greatly appreciated if you have time. Thanks for helping make community forums a great place.
    Click
    HERE to participate the survey.

  • Why does Mobile Data notification keep coming up saying 'Mobile Data is turned off for "Numbers" and I have to click on OK to get rid of it? I KNOW it's turned off for that program because that is what I want it to be set at. What I DON'T want is to have

    Why does Mobile Data notification keep coming up saying 'Mobile Data is turned off for "Numbers" and I have to click on OK to get rid of it? I KNOW it's turned off for that program because that is what I want it to be set at. What I DON'T want is to have to click on OK EVERY TIME I open the program when I'm away from wifi.

    That is how it works in general, not just for Numbers. It irritates me on other apps at times, although I can see an argument that if it didn't do that then people would complain about missing functionality after they forgot they had turned data off for an app. At any rate, this is a user to user support forum and we can't do anything about it. If you want to make a suggestion to Apple, following is a place to do that: http://www.apple.com/feedback/

  • I have pages, numbers and keynote on my macbook pro, but when i try to use the apps on my new iMac it will not let me save

    I purchased Pages, Numbers and Keynote for my MacBook Pro and iPad last year.  I just purchased a new iMac for my wife and it came with iWorks.  When I try to save a document on the iMac it tells me I must buy an iWorks serial number, but the App Store shows the applications as installed and will not process the request.  How do I correct?

    Did you pay for iWorks to come preinstalled on the iMac? Because it sounds like what you have is a trial version, which is why it is stating that you need to buy a serial number.
    I suggest that you delete the entire trial iWorks suite. Once they are safely in the Trash where the Mac App Store can't see them, you can sign into your account on the MAS and download the MAS versions that you own a license to use.

  • Numbers (and pages and keynote) doesn't open

    Hey people. once more I have an issue with my mac retina iOS Lion 10.8.2. I just downloaded Numbers 2.3 on my mac but, when I try to open it, just doesn't show anything, after that i need to force close. This is te report. I hope someone can help me, thanks
    Date/Time:       2013-02-27 20:04:16 -0500
    OS Version:      10.8.2 (Build 12C3006)
    Architecture:    x86_64
    Report Version:  11
    Command:         Numbers
    Path:            /Applications/Numbers.app/Contents/MacOS/Numbers
    Version:         2.3 (554)
    Build Version:   40
    Project Name:    iWorkAppBundler
    Source Version:  9850000
    App Item ID:     409203825
    App External ID: 12013123
    Parent:          launchd [151]
    PID:             1354
    Event:           hang
    Duration:        1.80s
    Steps:           19 (100ms sampling interval)
    Hardware model:  MacBookPro10,1
    Active cpus:     8
    Free pages:      1409893 pages (+5445)
    Pageins:         0 pages
    Pageouts:        0 pages
    Process:         Numbers [1354]
    Path:            /Applications/Numbers.app/Contents/MacOS/Numbers
    Architecture:    i386
    Parent:          launchd [151]
    UID:             501
    Task size:       5692 pages (-2064)
      Thread 0x51eb3    priority <multiple>
      18 ??? (Numbers + 322094) [0x4fa2e]
        18 ??? (Numbers + 45128) [0xc048]
          18 ??? (Numbers + 45259) [0xc0cb]
            18 -[NSApplication run] + 855 (AppKit) [0x986946cc]
              18 -[NSApplication nextEventMatchingMask:untilDate:inMode:dequeue:] + 119 (AppKit) [0x9869e26c]
                18 _DPSNextEvent + 1655 (AppKit) [0x9869eddd]
                  18 AEProcessAppleEvent + 100 (HIToolbox) [0x96271e48]
                    18 aeProcessAppleEvent + 318 (AE) [0x9768f89d]
                      18 dispatchEventAndSendReply(AEDesc const*, AEDesc*) + 44 (AE) [0x9768f9de]
                        18 aeDispatchAppleEvent(AEDesc const*, AEDesc*, unsigned long, unsigned char*) + 331 (AE) [0x976b9535]
                          18 _NSAppleEventManagerGenericHandler + 173 (Foundation) [0x940b4b8e]
                            18 -[NSAppleEventManager dispatchRawAppleEvent:withRawReply:handlerRefCon:] + 430 (Foundation) [0x940b4d91]
                              18 __76-[NSAppleEventManager setEventHandler:andSelector:forEventClass:andEventID:]_block_invoke_0 + 121 (Foundation) [0x940b523a]
                                18 -[NSObject performSelector:withObject:withObject:] + 77 (libobjc.A.dylib) [0x95043628]
                                  18 -[NSApplication(NSAppleEventHandling) _handleCoreEvent:withReplyEvent:] + 378 (AppKit) [0x986a28b4]
                                    18 -[NSApplication(NSAppleEventHandling) _handleAEOpenEvent:] + 751 (AppKit) [0x986a2d9f]
                                      18 -[NSApplication _sendFinishLaunchingNotification] + 249 (AppKit) [0x986a5e48]
                                        18 -[NSApplication _postDidFinishNotification] + 367 (AppKit) [0x986a618e]
                                          18 -[NSNotificationCenter postNotificationName:object:userInfo:] + 92 (Foundation) [0x9409a788]
                                            18 _CFXNotificationPost + 2794 (CoreFoundation) [0x925fe43a]
                                              18 ___CFXNotificationPost_block_invoke_0 + 257 (CoreFoundation) [0x926b2e01]
                                                18 __57-[NSNotificationCenter addObserver:selector:name:object:]_block_invoke_0 + 49 (Foundation) [0x940b1c52]
                                                  18 ??? (Numbers + 48349) [0xccdd]
                                                    18 -[SFAppApplicationDelegate applicationDidFinishLaunching:] + 926 (SFApplication) [0x2cf4762]
                                                      18 -[SFAppApplicationDelegate continueReopeningIfNeeded] + 90 (SFApplication) [0x2cf7ea4]
                                                        18 -[NSApplication _continueReopening] + 272 (AppKit) [0x988f6a2f]
                                                          18 __78-[NSDocumentController(NSInternal) _autoreopenDocumentsWithCompletionHandler:]_block_invoke_01493 + 160 (AppKit) [0x98a05e02]
                                                            18 __94-[NSPersistentUIManager finishedRestoringWindowsWithZOrder:registerAsReady:completionHandler:]_block_in voke_01187 + 40 (AppKit) [0x98e6c049]
                                                              18 __58-[NSApplication(NSAppleEventHandling) _handleAEOpenEvent:]_block_invoke_0 + 281 (AppKit) [0x986a5233]
                                                                18 -[NSApplication _whenReopeningIsAllowedDo:] + 164 (AppKit) [0x986a507e]
                                                                  18 __block_global_0 + 36 (AppKit) [0x988fa83f]
                                                                    18 -[NSApplication _doOpenUntitled] + 352 (AppKit) [0x986a56e8]
                                                                      18 -[NSDocumentController(NSInternal) _showOpenPanel] + 87 (AppKit) [0x98596905]
                                                                        18 ??? (Numbers + 484804) [0x775c4]
                                                                          18 -[SFAppDocumentController openDocument:] + 174 (SFApplication) [0x2cfc394]
                                                                            18 -[NSDocumentController openDocument:] + 413 (AppKit) [0x9853d26d]
                                                                              18 -[NSDocumentController beginOpenPanelWithCompletionHandler:] + 94 (AppKit) [0x9859696f]
                                                                                18 -[NSDocumentController _setupOpenPanel] + 38 (AppKit) [0x98596ba7]
                                                                                  18 +[NSOpenPanel openPanel] + 33 (AppKit) [0x98596c6a]
                                                                                    18 +[NSSavePanel _crunchyRawUnbonedPanel] + 217 (AppKit) [0x98596d4e]
                                                                                       18 -[NSSavePanel initWithContentRect:styleMask:backing:defer:] + 387 (AppKit) [0x98599350]
                                                                                         18 -[NSSavePanel(NSSavePanelLayout) _initContentView] + 2668 (AppKit) [0x9859b14d]
                                                                                           18 -[NSSavePanel(NSSavePanelLayout) _setupFileBrowserView] + 167 (AppKit) [0x9859b519]
                                                                                             18 -[NSSavePanel(NSSavePanelLayout) _makeFileBrowserView] + 199 (AppKit) [0x9859b74e]
                                                                                               18 -[NSSavePanel _ubiquityContainerURLs] + 63 (AppKit) [0x985401ef]
                                                                                                 18 -[NSFileManager URLForUbiquityContainerIdentifier:] + 332 (Foundation) [0x9408337d]
                                                                                                   18 dispatch_semaphore_wait + 36 (libdispatch.dylib) [0x90ef31f5]
                                                                                                     18 semaphore_wait_trap + 10 (libsystem_kernel.dylib) [0x957b980e]
                                                                                                      *18 semaphore_wait_continue + 0 (mach_kernel) [0xffffff8000233ec0]
    *1  return_from_trap + 156 (mach_kernel) [0xffffff80002cd38c]
       *1  i386_astintr + 35 (mach_kernel) [0xffffff80002b8403]
         *1  ast_taken + 209 (mach_kernel) [0xffffff800021b6e1]
           *1  bsd_ast + 839 (mach_kernel) [0xffffff8000567cf7]
             *1  postsig_locked + 663 (mach_kernel) [0xffffff8000567867]
               *1  exit1_internal + 567 (mach_kernel) [0xffffff8000555677]
                 *1  task_terminate_internal + 435 (mach_kernel) [0xffffff8000235a53]
                   *1  vm_map_remove + 80 (mach_kernel) [0xffffff800026a970]
                     *1  ??? (mach_kernel + 420508) [0xffffff8000266a9c]
                       *1  pmap_remove + 501 (mach_kernel) [0xffffff80002a2e05]
                         *1  pmap_remove_range + 148 (mach_kernel) [0xffffff80002a2574]
      Thread 0x51ed6    DispatchQueue 7959657    priority 44       
      18 start_wqthread + 30 (libsystem_c.dylib) [0x92e1fcca]
        18 _pthread_wqthread + 441 (libsystem_c.dylib) [0x92e37e12]
          18 _dispatch_worker_thread2 + 285 (libdispatch.dylib) [0x90ef0f02]
            18 _dispatch_call_block_and_release + 15 (libdispatch.dylib) [0x90ef3f8f]
              18 __71-[NSApplication(NSUbiquity) _asynchronouslyPrefetchUbiqityContainerURL]_block_invoke_0 + 44 (AppKit) [0x98602cd0]
                18 -[NSFileManager URLForUbiquityContainerIdentifier:] + 332 (Foundation) [0x9408337d]
                  18 dispatch_semaphore_wait + 36 (libdispatch.dylib) [0x90ef31f5]
                    18 semaphore_wait_trap + 10 (libsystem_kernel.dylib) [0x957b980e]
                     *18 semaphore_wait_continue + 0 (mach_kernel) [0xffffff8000233ec0]
      Thread 0x51ed4    DispatchQueue 1701273966 priority 48       
      18 _dispatch_mgr_thread + 53 (libdispatch.dylib) [0x90ef27a9]
        18 kevent + 10 (libsystem_kernel.dylib) [0x957bc9ae]
         *18 ??? (mach_kernel + 3467616) [0xffffff800054e960]
      Thread 0x51ee5    priority 46       
      18 thread_start + 34 (libsystem_c.dylib) [0x92e1fcee]
        18 _pthread_start + 344 (libsystem_c.dylib) [0x92e35557]
          18 __NSThread__main__ + 1396 (Foundation) [0x940ec15b]
            18 -[NSThread main] + 45 (Foundation) [0x940ec1d8]
              18 -[SFAppApplicationDelegate _doSyncManagerSetup:] + 59 (SFApplication) [0x2cf762b]
                18 -[SFUSyncManager documentsPath] + 34 (SFUtility) [0x18ed252]
                  18 -[SFUSyncManager(SFUSyncManagerPrivateMethods) _containerURL] + 229 (SFUtility) [0x18ed965]
                    18 -[NSFileManager URLForUbiquityContainerIdentifier:] + 332 (Foundation) [0x9408337d]
                      18 dispatch_semaphore_wait + 36 (libdispatch.dylib) [0x90ef31f5]
                        18 semaphore_wait_trap + 10 (libsystem_kernel.dylib) [0x957b980e]
                         *18 semaphore_wait_continue + 0 (mach_kernel) [0xffffff8000233ec0]
      Binary Images:
                  0x1000 -           0x167fff  com.apple.iWork.Numbers 2.3 (554) <1540DC91-ED75-AD99-24BD-22010B9894D5> /Applications/Numbers.app/Contents/MacOS/Numbers
               0x1857000 -          0x1911ff3  com.apple.Keynote.sfutility 1.0 (0.0.1d1) <ED93C91F-C30E-541E-BDD3-04A25579EAFB> /Applications/Numbers.app/Contents/Frameworks/SFUtility.framework/Versions/A/SF Utility
               0x2ce2000 -          0x2da0fff  com.apple.sf.sfapplication 1.0 (1.0) <ED347FE0-B441-1346-3267-5A3D36F4292F> /Applications/Numbers.app/Contents/Frameworks/SFApplication.framework/Versions/ A/SFApplication
              0x90eee000 -         0x90f00ff7  libdispatch.dylib <86EF7D45-2D97-3465-A449-95038AE5DABA> /usr/lib/system/libdispatch.dylib
              0x925b5000 -         0x9279dff3  com.apple.CoreFoundation 6.8 (744.12) <E939CEA0-493C-3233-9983-5070981BB350> /System/Library/Frameworks/CoreFoundation.framework/Versions/A/CoreFoundation
              0x92e1f000 -         0x92edcfeb  libsystem_c.dylib <B1F6916A-F558-38B5-A18C-D9733625FDC9> /usr/lib/system/libsystem_c.dylib
              0x9404e000 -         0x9436bff3  com.apple.Foundation 6.8 (945.11) <03B242AC-519C-3683-AA52-E73536B3D55F> /System/Library/Frameworks/Foundation.framework/Versions/C/Foundation
              0x95025000 -         0x95132057  libobjc.A.dylib <FA455371-7395-3D58-A89B-D1520612D1BC> /usr/lib/libobjc.A.dylib
              0x957a7000 -         0x957c1ffc  libsystem_kernel.dylib <561E35E5-E32E-3BFB-9E8B-C977BA6C4F85> /usr/lib/system/libsystem_kernel.dylib
              0x9620e000 -         0x965f1ff3  com.apple.HIToolbox 2.0 <5A312E41-9940-363E-B891-90C4672E6850> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/HIToolbox.fra mework/Versions/A/HIToolbox
              0x97687000 -         0x976e0fff  com.apple.AE 645.3 (645.3) <6745659F-006D-3F25-94D6-DF944E9A01FD> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/AE.fram ework/Versions/A/AE
              0x9853b000 -         0x990f7ffb  com.apple.AppKit 6.8 (1187.34) <06EDB1D1-3B8A-3699-8E3A-D8F50A27AB7C> /System/Library/Frameworks/AppKit.framework/Versions/C/AppKit
    *0xffffff8000200000 - 0xffffff8000734d7c  mach_kernel <0AFA55FD-872F-3BBE-8630-214EB586A16D> /mach_kernel
    Process:         accountsd [1270]
    Path:            /System/Library/Frameworks/Accounts.framework/Versions/A/Support/accountsd
    Architecture:    x86_64
    Parent:          launchd [151]
    UID:             501
    Sudden Term:     Clean (allows idle exit)
    Task size:       1444 pages
      Thread 0x46ce1    DispatchQueue 1          priority 31       
      19 start + 1 (libdyld.dylib) [0x7fff8a76a7e1]
        19 ??? (accountsd + 3048) [0x10eceebe8]
          19 CFRunLoopRunSpecific + 290 (CoreFoundation) [0x7fff884486b2]
            19 __CFRunLoopRun + 1078 (CoreFoundation) [0x7fff88448ee6]
              19 __CFRunLoopServiceMachPort + 195 (CoreFoundation) [0x7fff88443803]
                19 mach_msg_trap + 10 (libsystem_kernel.dylib) [0x7fff911c5686]
                 *19 ipc_mqueue_receive_continue + 0 (mach_kernel) [0xffffff8000213030]
      Thread 0x46ce5    DispatchQueue 2          priority 33       
      19 _dispatch_mgr_thread + 54 (libdispatch.dylib) [0x7fff8eef59ee]
        19 kevent + 10 (libsystem_kernel.dylib) [0x7fff911c7d16]
         *19 ??? (mach_kernel + 3467616) [0xffffff800054e960]
      Binary Images:
             0x10ecee000 -        0x10eceefff  accountsd <0982A50A-159D-3E63-A2EC-6447F3706436> /System/Library/Frameworks/Accounts.framework/Versions/A/Support/accountsd
          0x7fff88414000 -     0x7fff885fdfff  com.apple.CoreFoundation 6.8 (744.12) <EF002794-DAEF-31C6-866C-E3E3AC387A9F> /System/Library/Frameworks/CoreFoundation.framework/Versions/A/CoreFoundation
          0x7fff8a768000 -     0x7fff8a76bff7  libdyld.dylib <F59367C9-C110-382B-A695-9035A6DD387E> /usr/lib/system/libdyld.dylib
          0x7fff8eef1000 -     0x7fff8ef06ff7  libdispatch.dylib <D26996BF-FC57-39EB-8829-F63585561E09> /usr/lib/system/libdispatch.dylib
          0x7fff911b5000 -     0x7fff911d0ff7  libsystem_kernel.dylib <EC0A9F5B-C9F5-336B-A7DD-49A718042F39> /usr/lib/system/libsystem_kernel.dylib
    *0xffffff8000200000 - 0xffffff8000734d7c  mach_kernel <0AFA55FD-872F-3BBE-8630-214EB586A16D> /mach_kernel
    Process:         AntiVirus [81]
    Path:            /Library/Application Support/MacKeeper/AntiVirus.app/Contents/MacOS/AntiVirus
    Architecture:    i386
    Parent:          launchd [1]
    UID:             0
    Task size:       44712 pages
    Process:         aosnotifyd [102]
    Path:            /usr/sbin/aosnotifyd
    Architecture:    x86_64
    Parent:          launchd [1]
    UID:             0
    Task size:       2236 pages
      Thread 0x310      DispatchQueue 1          priority 31       
      19 start + 1 (libdyld.dylib) [0x7fff8a76a7e1]
        19 ??? (aosnotifyd + 36447) [0x106e9de5f]
          19 ??? (aosnotifyd + 35537) [0x106e9dad1]
            19 -[NSRunLoop(NSRunLoop) runMode:beforeDate:] + 268 (Foundation) [0x7fff8a05e89e]
              19 CFRunLoopRunSpecific + 290 (CoreFoundation) [0x7fff884486b2]
                19 __CFRunLoopRun + 1078 (CoreFoundation) [0x7fff88448ee6]
                  19 __CFRunLoopServiceMachPort + 195 (CoreFoundation) [0x7fff88443803]
                    19 mach_msg_trap + 10 (libsystem_kernel.dylib) [0x7fff911c5686]
                     *19 ipc_mqueue_receive_continue + 0 (mach_kernel) [0xffffff8000213030]
      Thread 0x35f      DispatchQueue 2          priority 33       
      19 _dispatch_mgr_thread + 54 (libdispatch.dylib) [0x7fff8eef59ee]
        19 kevent + 10 (libsystem_kernel.dylib) [0x7fff911c7d16]
         *19 ??? (mach_kernel + 3467616) [0xffffff800054e960]
      Thread 0x3b1      priority 63       
      19 thread_start + 13 (libsystem_c.dylib) [0x7fff8d498181]
        19 _pthread_start + 327 (libsystem_c.dylib) [0x7fff8d4ab742]
          19 __NSThread__main__ + 1345 (Foundation) [0x7fff8a059612]
            19 +[NSURLConnection(Loader) _resourceLoadLoop:] + 356 (Foundation) [0x7fff89ffb586]
              19 CFRunLoopRunSpecific + 290 (CoreFoundation) [0x7fff884486b2]
                19 __CFRunLoopRun + 1078 (CoreFoundation) [0x7fff88448ee6]
                  19 __CFRunLoopServiceMachPort + 195 (CoreFoundation) [0x7fff88443803]
                    19 mach_msg_trap + 10 (libsystem_kernel.dylib) [0x7fff911c5686]
                     *19 ipc_mqueue_receive_continue + 0 (mach_kernel) [0xffffff8000213030]
      Thread 0x5da      priority 31       
      19 thread_start + 13 (libsystem_c.dylib) [0x7fff8d498181]
        19 _pthread_start + 327 (libsystem_c.dylib) [0x7fff8d4ab742]
          19 __select + 10 (libsystem_kernel.dylib) [0x7fff911c7322]
           *19 ??? (mach_kernel + 3576576) [0xffffff8000569300]
      Thread 0x5243e    priority 33       
      19 start_wqthread + 13 (libsystem_c.dylib) [0x7fff8d498171]
        19 _pthread_wqthread + 412 (libsystem_c.dylib) [0x7fff8d4adcb3]
          19 __workq_kernreturn + 10 (libsystem_kernel.dylib) [0x7fff911c76d6]
           *19 ??? (mach_kernel + 3906640) [0xffffff80005b9c50]
      Thread 0x52441    priority <multiple>
      19 start_wqthread + 13 (libsystem_c.dylib) [0x7fff8d498171]
        19 _pthread_wqthread + 412 (libsystem_c.dylib) [0x7fff8d4adcb3]
          19 __workq_kernreturn + 10 (libsystem_kernel.dylib) [0x7fff911c76d6]
           *19 ??? (mach_kernel + 3906640) [0xffffff80005b9c50]
      Binary Images:
             0x106e95000 -        0x106edcff7  aosnotifyd <A9359981-2023-3781-93F1-89D423F0F712> /usr/sbin/aosnotifyd
          0x7fff88414000 -     0x7fff885fdfff  com.apple.CoreFoundation 6.8 (744.12) <EF002794-DAEF-31C6-866C-E3E3AC387A9F> /System/Library/Frameworks/CoreFoundation.framework/Versions/A/CoreFoundation
          0x7fff89fc4000 -     0x7fff8a320fff  com.apple.Foundation 6.8 (945.11) <A5D41956-A354-3ACC-9355-BE200072223B> /System/Library/Frameworks/Foundation.framework/Versions/C/Foundation
          0x7fff8a768000 -     0x7fff8a76bff7  libdyld.dylib <F59367C9-C110-382B-A695-9035A6DD387E> /usr/lib/system/libdyld.dylib
          0x7fff8d497000 -     0x7fff8d563fe7  libsystem_c.dylib <8CBCF9B9-EBB7-365E-A3FF-2F3850763C6B> /usr/lib/system/libsystem_c.dylib
          0x7fff8eef1000 -     0x7fff8ef06ff7  libdispatch.dylib <D26996BF-FC57-39EB-8829-F63585561E09> /usr/lib/system/libdispatch.dylib
          0x7fff911b5000 -     0x7fff911d0ff7  libsystem_kernel.dylib <EC0A9F5B-C9F5-336B-A7DD-49A718042F39> /usr/lib/system/libsystem_kernel.dylib
    *0xffffff8000200000 - 0xffffff8000734d7c  mach_kernel <0AFA55FD-872F-3BBE-8630-214EB586A16D> /mach_kernel
    Process:         App Store [1346]
    Path:            /Applications/App Store.app/Contents/MacOS/App Store
    Architecture:    x86_64
    Parent:          launchd [151]
    UID:             501
    Task size:       40269 pages
      Thread 0x51739    DispatchQueue 1          priority 46       
      19 ??? (App Store + 6164) [0x1033bc814]
        19 NSApplicationMain + 869 (AppKit) [0x7fff8dd03cb6]
          19 -[NSApplication run] + 517 (AppKit) [0x7fff8dd5f283]
            19 -[NSApplication nextEventMatchingMask:untilDate:inMode:dequeue:] + 128 (AppKit) [0x7fff8dd67ed2]
              19 _DPSNextEvent + 685 (AppKit) [0x7fff8dd68613]
                19 BlockUntilNextEventMatchingListInMode + 62 (HIToolbox) [0x7fff901b9cd3]
                  19 ReceiveNextEventCommon + 356 (HIToolbox) [0x7fff901b9e42]
                    19 RunCurrentEventLoopInMode + 209 (HIToolbox) [0x7fff901ba0a4]
                      19 CFRunLoopRunSpecific + 290 (CoreFoundation) [0x7fff884486b2]
                        19 __CFRunLoopRun + 1078 (CoreFoundation) [0x7fff88448ee6]
                          19 __CFRunLoopServiceMachPort + 195 (CoreFoundation) [0x7fff88443803]
                            19 mach_msg_trap + 10 (libsystem_kernel.dylib) [0x7fff911c5686]
                             *19 ipc_mqueue_receive_continue + 0 (mach_kernel) [0xffffff8000213030]
      Thread 0x5174c    DispatchQueue 2          priority 48       
      19 _dispatch_mgr_thread + 54 (libdispatch.dylib) [0x7fff8eef59ee]
        19 kevent + 10 (libsystem_kernel.dylib) [0x7fff911c7d16]
         *19 ??? (mach_kernel + 3467616) [0xffffff800054e960]
      Thread 0x5175b    priority 62       
      19 thread_start + 13 (libsystem_c.dylib) [0x7fff8d498181]
        19 _pthread_start + 327 (libsystem_c.dylib) [0x7fff8d4ab742]
          19 __NSThread__main__ + 1345 (Foundation) [0x7fff8a059612]
            19 +[NSURLConnection(Loader) _resourceLoadLoop:] + 356 (Foundation) [0x7fff89ffb586]
              19 CFRunLoopRunSpecific + 290 (CoreFoundation) [0x7fff884486b2]
                19 __CFRunLoopRun + 1078 (CoreFoundation) [0x7fff88448ee6]
                  19 __CFRunLoopServiceMachPort + 195 (CoreFoundation) [0x7fff88443803]
                    19 mach_msg_trap + 10 (libsystem_kernel.dylib) [0x7fff911c5686]
                     *19 ipc_mqueue_receive_continue + 0 (mach_kernel) [0xffffff8000213030]
      Thread 0x517b1    priority 46       
      19 thread_start + 13 (libsystem_c.dylib) [0x7fff8d498181]
        19 _pthread_start + 327 (libsystem_c.dylib) [0x7fff8d4ab742]
          19 ***::wtfThreadEntryPoint(void*) + 15 (JavaScriptCore) [0x7fff894a436f]
            19 JSC::BlockAllocator::blockFreeingThreadMain() + 90 (JavaScriptCore) [0x7fff8948ed0a]
              19 ***::ThreadCondition::timedWait(***::Mutex&, double) + 118 (JavaScriptCore) [0x7fff8926cd96]
                19 __psynch_cvwait + 10 (libsystem_kernel.dylib) [0x7fff911c70fa]
                 *19 psynch_cvcontinue + 0 (mach_kernel) [0xffffff80005b4b10]
      Thread 0x517b2    priority 46       
      19 thread_start + 13 (libsystem_c.dylib) [0x7fff8d498181]
        19 _pthread_start + 327 (libsystem_c.dylib) [0x7fff8d4ab742]
          19 ***::wtfThreadEntryPoint(void*) + 15 (JavaScriptCore) [0x7fff894a436f]
            19 JSC::MarkStackThreadSharedData::markingThreadMain() + 214 (JavaScriptCore) [0x7fff893f1606]
              19 JSC::SlotVisitor::drainFromShared(JSC::SlotVisitor::SharedDrainMode) + 212 (JavaScriptCore) [0x7fff893f1724]
                19 __psynch_cvwait + 10 (libsystem_kernel.dylib) [0x7fff911c70fa]
                 *19 psynch_cvcontinue + 0 (mach_kernel) [0xffffff80005b4b10]
      Thread 0x517b3    priority 46       
      19 thread_start + 13 (libsystem_c.dylib) [0x7fff8d498181]
        19 _pthread_start + 327 (libsystem_c.dylib) [0x7fff8d4ab742]
          19 ***::wtfThreadEntryPoint(void*) + 15 (JavaScriptCore) [0x7fff894a436f]
            19 JSC::MarkStackThreadSharedData::markingThreadMain() + 214 (JavaScriptCore) [0x7fff893f1606]
              19 JSC::SlotVisitor::drainFromShared(JSC::SlotVisitor::SharedDrainMode) + 212 (JavaScriptCore) [0x7fff893f1724]
                19 __psynch_cvwait + 10 (libsystem_kernel.dylib) [0x7fff911c70fa]
                 *19 psynch_cvcontinue + 0 (mach_kernel) [0xffffff80005b4b10]
      Thread 0x517b4    priority 46       
      19 thread_start + 13 (libsystem_c.dylib) [0x7fff8d498181]
        19 _pthread_start + 327 (libsystem_c.dylib) [0x7fff8d4ab742]
          19 ***::wtfThreadEntryPoint(void*) + 15 (JavaScriptCore) [0x7fff894a436f]
            19 JSC::MarkStackThreadSharedData::markingThreadMain() + 214 (JavaScriptCore) [0x7fff893f1606]
              19 JSC::SlotVisitor::drainFromShared(JSC::SlotVisitor::SharedDrainMode) + 212 (JavaScriptCore) [0x7fff893f1724]
                19 __psynch_cvwait + 10 (libsystem_kernel.dylib) [0x7fff911c70fa]
                 *19 psynch_cvcontinue + 0 (mach_kernel) [0xffffff80005b4b10]
      Thread 0x517b7    priority 46       
      19 thread_start + 13 (libsystem_c.dylib) [0x7fff8d498181]
        19 _pthread_start + 327 (libsystem_c.dylib) [0x7fff8d4ab742]
          19 __select + 10 (libsystem_kernel.dylib) [0x7fff911c7322]
           *19 ??? (mach_kernel + 3576576) [0xffffff8000569300]
      Thread 0x51845    priority 46       
      19 thread_start + 13 (libsystem_c.dylib) [0x7fff8d498181]
        19 _pthread_start + 327 (libsystem_c.dylib) [0x7fff8d4ab742]
          19 ***::wtfThreadEntryPoint(void*) + 15 (JavaScriptCore) [0x7fff894a436f]
            19 WebCore::StorageThread::threadEntryPoint() + 154 (WebCore) [0x7fff9120806a]
              19 ***::PassOwnPtr<WebCore::StorageTask> ***::MessageQueue<WebCore::StorageTask>::waitForMessageFilteredWithTimeout<bool (WebCore::StorageTask*)>(***::MessageQueueWaitResult&, bool (&)(WebCore::StorageTask*), double) + 81 (WebCore) [0x7fff91cb59b1]
                19 ***::ThreadCondition::timedWait(***::Mutex&, double) + 61 (JavaScriptCore) [0x7fff8926cd5d]
                  19 __psynch_cvwait + 10 (libsystem_kernel.dylib) [0x7fff911c70fa]
                   *19 psynch_cvcontinue + 0 (mach_kernel) [0xffffff80005b4b10]
      Thread 0x51aa8    priority 53       
      19 thread_start + 13 (libsystem_c.dylib) [0x7fff8d498181]
        19 _pthread_start + 327 (libsystem_c.dylib) [0x7fff8d4ab742]
          19 startIOThread(void*) + 148 (CoreVideo) [0x7fff8f248013]
            19 CVDisplayLink::runIOThread() + 680 (CoreVideo) [0x7fff8f2482d4]
              19 __psynch_cvwait + 10 (libsystem_kernel.dylib) [0x7fff911c70fa]
               *19 psynch_cvcontinue + 0 (mach_kernel) [0xffffff80005b4b10]
      Thread 0x520cd    priority <multiple>
      19 start_wqthread + 13 (libsystem_c.dylib) [0x7fff8d498171]
        19 _pthread_wqthread + 412 (libsystem_c.dylib) [0x7fff8d4adcb3]
          19 __workq_kernreturn + 10 (libsystem_kernel.dylib) [0x7fff911c76d6]
           *19 ??? (mach_kernel + 3906640) [0xffffff80005b9c50]
      Thread 0x5230f    priority 48       
      19 start_wqthread + 13 (libsystem_c.dylib) [0x7fff8d498171]
        19 _pthread_wqthread + 412 (libsystem_c.dylib) [0x7fff8d4adcb3]
          19 __workq_kernreturn + 10 (libsystem_kernel.dylib) [0x7fff911c76d6]
           *19 ??? (mach_kernel + 3906640) [0xffffff80005b9c50]
      Binary Images:
             0x1033bb000 -        0x10343bfff  com.apple.appstore 1.2.1 (129.7) <31AAF1C2-2BE9-393B-ABFD-6D869F72E909> /Applications/App Store.app/Contents/MacOS/App Store
          0x7fff88414000 -     0x7fff885fdfff  com.apple.CoreFoundation 6.8 (744.12) <EF002794-DAEF-31C6-866C-E3E3AC387A9F> /System/Library/Frameworks/CoreFoundation.framework/Versions/A/CoreFoundation
          0x7fff89266000 -     0x7fff89500ff7  com.apple.JavaScriptCore 8536 (8536.26.7) <ADAD1276-675A-3000-B746-560A2EB596A2> /System/Library/Frameworks/JavaScriptCore.framework/Versions/A/JavaScriptCore
          0x7fff89fc4000 -     0x7fff8a320fff  com.apple.Foundation 6.8 (945.11) <A5D41956-A354-3ACC-9355-BE200072223B> /System/Library/Frameworks/Foundation.framework/Versions/C/Foundation
          0x7fff8d497000 -     0x7fff8d563fe7  libsystem_c.dylib <8CBCF9B9-EBB7-365E-A3FF-2F3850763C6B> /usr/lib/system/libsystem_c.dylib
          0x7fff8dc13000 -     0x7fff8e840ff7  com.apple.AppKit 6.8 (1187.34) <1FF64844-EB62-3F96-AED7-6525B7CCEC23> /System/Library/Frameworks/AppKit.framework/Versions/C/AppKit
          0x7fff8eef1000 -     0x7fff8ef06ff7  libdispatch.dylib <D26996BF-FC57-39EB-8829-F63585561E09> /usr/lib/system/libdispatch.dylib
          0x7fff8f246000 -     0x7fff8f270ff7  com.apple.CoreVideo 1.8 (99.3) <C424838A-889C-39E5-8108-FD05C93D26A0> /System/Library/Frameworks/CoreVideo.framework/Versions/A/CoreVideo
          0x7fff9015a000 -     0x7fff9048aff7  com.apple.HIToolbox 2.0 <317F75F7-4B0F-35F5-89A7-F20BA60AC944> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/HIToolbox.fra mework/Versions/A/HIToolbox
          0x7fff911b5000 -     0x7fff911d0ff7  libsystem_kernel.dylib <EC0A9F5B-C9F5-336B-A7DD-49A718042F39> /usr/lib/system/libsystem_kernel.dylib
          0x7fff911e9000 -     0x7fff921a2fff  com.apple.WebCore 8536 (8536.26.14) <60029E1A-C1DB-3A1F-8528-4970058D8B3D> /System/Library/Frameworks/WebKit.framework/Versions/A/Frameworks/WebCore.frame work/Versions/A/WebCore
    *0xffffff8000200000 - 0xffffff8000734d7c  mach_kernel <0AFA55FD-872F-3BBE-8630-214EB586A16D> /mach_kernel
    Process:         appleeventsd [73]
    Path:            /System/Library/CoreServices/appleeventsd
    Architecture:    x86_64
    Parent:          launchd [1]
    UID:             71
    Sudden Term:     Dirty (allows idle exit)
    Task size:       927 pages (+9)
      Thread 0x313      DispatchQueue 2          priority 33       
      19 _dispatch_mgr_thread + 54 (libdispatch.dylib) [0x7fff8eef59ee]
        19 kevent + 10 (libsystem_kernel.dylib) [0x7fff911c7d16]
         *19 ??? (mach_kernel + 3467616) [0xffffff800054e960]
      Thread 0x314      DispatchQueue 7          priority 31       
      19 _dispatch_sig_thread + 45 (libdispatch.dylib) [0x7fff8eef2d85]
        19 __sigsuspend_nocancel + 10 (libsystem_kernel.dylib) [0x7fff911c7566]
         *19 ??? (mach_kernel + 3576576) [0xffffff8000569300]
      Thread 0x52699    priority 31       
      1 start_wqthread + 13 (libsystem_c.dylib) [0x7fff8d498171]
        1 _pthread_wqthread + 412 (libsystem_c.dylib) [0x7fff8d4adcb3]
          1 __workq_kernreturn + 10 (libsystem_kernel.dylib) [0x7fff911c76d6]
           *1 ??? (mach_kernel + 3906640) [0xffffff80005b9c50]
      Thread 0x5269a    priority 31       
      1 start_wqthread + 13 (libsystem_c.dylib) [0x7fff8d498171]
        1 _pthread_wqthread + 412 (libsystem_c.dylib) [0x7fff8d4adcb3]
          1 __workq_kernreturn + 10 (libsystem_kernel.dylib) [0x7fff911c76d6]
           *1 ??? (mach_kernel + 3906640) [0xffffff80005b9c50]
      Thread 0x5269c    priority 31       
      1 start_wqthread + 13 (libsystem_c.dylib) [0x7fff8d498171]
        1 _pthread_wqthread + 412 (libsystem_c.dylib) [0x7fff8d4adcb3]
          1 __workq_kernreturn + 10 (libsystem_kernel.dylib) [0x7fff911c76d6]
           *1 ??? (mach_kernel + 3906640) [0xffffff80005b9c50]
      Thread 0x5269d    priority 31       
    *1 ??? (mach_kernel + 3907152) [0xffffff80005b9e50]
      Binary Images:
             0x10d369000 -        0x10d369fff  appleeventsd <4617FC4D-4C6C-3B62-9E64-08F9C99ABEEF> /System/Library/CoreServices/appleeventsd
          0x7fff8d497000 -     0x7fff8d563fe7  libsystem_c.dylib <8CBCF9B9-EBB7-365E-A3FF-2F3850763C6B> /usr/lib/system/libsystem_c.dylib
          0x7fff8eef1000 -     0x7fff8ef06ff7  libdispatch.dylib <D26996BF-FC57-39EB-8829-F63585561E09> /usr/lib/system/libdispatch.dylib
          0x7fff911b5000 -     0x7fff911d0ff7  libsystem_kernel.dylib <EC0A9F5B-C9F5-336B-A7DD-49A718042F39> /usr/lib/system/libsystem_kernel.dylib
    *0xffffff8000200000 - 0xffffff8000734d7c  mach_kernel <0AFA55FD-872F-3BBE-8630-214EB586A16D> /mach_kernel
    Process:         AppleSpell [299]
    Path:            /System/Library/Services/AppleSpell.service/Contents/MacOS/AppleSpell
    Architecture:    x86_64
    Parent:          launchd [151]
    UID:             501
    Sudden Term:     Clean
    Task size:       2703 pages
      Thread 0xa31      DispatchQueue 1          priority 46       
      19 start + 1 (libdyld.dylib) [0x7fff8a76a7e1]
        19 ??? (AppleSpell + 7271) [0x1064a4c67]
          19 -[NSSpellServer run] + 73 (Foundation) [0x7fff8a145e36]
            19 CFRunLoopRun + 97 (CoreFoundation) [0x7fff88457371]
              19 CFRunLoopRunSpecific + 290 (CoreFoundation) [0x7fff884486b2]
                19 __CFRunLoopRun + 1078 (CoreFoundation) [0x7fff88448ee6]
                  19 __CFRunLoopServiceMachPort + 195 (CoreFoundation) [0x7fff88443803]
                    19 mach_msg_trap + 10 (libsystem_kernel.dylib) [0x7fff911c5686]
                     *19 ipc_mqueue_receive_continue + 0 (mach_kernel) [0xffffff8000213030]
      Thread 0xa33      DispatchQueue 2          priority 48       
      19 _dispatch_mgr_thread + 54 (libdispatch.dylib) [0x7fff8eef59ee]
        19 kevent + 10 (libsystem_kernel.dylib) [0x7fff911c7d16]
         *19 ??? (mach_kernel + 3467616) [0xffffff800054e960]
      Binary Images:
             0x1064a3000 -        0x106558ff7  com.apple.AppleSpell 1.9 (173.1) <6ED0981A-B081-3345-8EBB-E4AB821B077A> /System/Library/Services/AppleSpell.service/Contents/MacOS/AppleSpell
          0x7fff88414000 -     0x7fff885fdfff  com.apple.CoreFoundation 6.8 (744.12) <EF002794-DAEF-31C6-866C-E3E3AC387A9F> /System/Library/Frameworks/CoreFoundation.framework/Versions/A/CoreFoundation
          0x7fff89fc4000 -     0x7fff8a320fff  com.apple.Foundation 6.8 (945.11) <A5D41956-A354-3ACC-9355-BE200072223B> /System/Library/Frameworks/Foundation.framework/Versions/C/Foundation
          0x7fff8a768000 -     0x7fff8a76bff7  libdyld.dylib <F59367C9-C110-382B-A695-9035A6DD387E> /usr/lib/system/libdyld.dylib
          0x7fff8eef1000 -     0x7fff8ef06ff7  libdispatch.dylib <D26996BF-FC57-39EB-8829-F63585561E09> /usr/lib/system/libdispatch.dylib
          0x7fff911b5000 -     0x7fff911d0ff7  libsystem_kernel.dylib <EC0A9F5B-C9F5-336B-A7DD-49A718042F39> /usr/lib/system/libsystem_kernel.dylib
    *0xffffff8000200000 - 0xffffff8000734d7c  mach_kernel <0AFA55FD-872F-3BBE-8630-214EB586A16D> /mach_kernel
    Process:         apsd [79]
    Path:            /System/Library/PrivateFrameworks/ApplePushService.framework/apsd
    Architecture:    x86_64
    Parent:          launchd [1]
    UID:             0
    Task size:       2492 pages
      Thread 0x26d      DispatchQueue 1          priority 31       
      19 start + 1 (libdyld.dylib) [0x7fff8a76a7e1]
        19 ??? (apsd + 21702) [0x1029c94c6]
          19 -[NSRunLoop(NSRunLoop) run] + 74 (Foundation) [0x7fff89ff718a]
            19 -[NSRunLoop(NSRunLoop) runMode:beforeDate:] + 268 (Foundation) [0x7fff8a05e89e]
              19 CFRunLoopRunSpecific + 290 (CoreFoundation) [0x7fff884486b2]
                19 __CFRunLoopRun + 1078 (CoreFoundation) [0x7fff88448ee6]
                  19 __CFRunLoopServiceMachPort + 195 (CoreFoundation) [0x7fff88443803]
                    19 mach_msg_trap + 10 (libsystem_kernel.dylib) [0x7fff911c5686]
                     *19 ipc_mqueue_receive_continue + 0 (mach_kernel) [0xffffff8000213030]
      Thread 0x2c2      DispatchQueue 2          priority 33       
      19 _dispatch_mgr_thread + 54 (libdispatch.dylib) [0x7fff8eef59ee]
        19 kevent + 10 (libsystem_kernel.dylib) [0x7fff911c7d16]
         *19 ??? (mach_kernel + 3467616) [0xffffff800054e960]
      Thread 0x392      priority 63       
      19 thread_start + 13 (libsystem_c.dylib) [0x7fff8d498181]
        19 _pthread_start + 327 (libsystem_c.dylib) [0x7fff8d4ab742]
          19 __NSThread__main__ + 1345 (Foundation) [0x7fff8a059612]
            19 +[NSURLConnection(Loader) _resourceLoadLoop:] + 356 (Foundation) [0x7fff89ffb586]
              19 CFRunLoopRunSpecific + 290 (CoreFoundation) [0x7fff884486b2]
                19 __CFRunLoopRun + 1078 (CoreFoundation) [0x7fff88448ee6]
                  19 __CFRunLoopServiceMachPort + 195 (CoreFoundation) [0x7fff88443803]
                    19 mach_msg_trap + 10 (libsystem_kernel.dylib) [0x7fff911c5686]
                     *19 ipc_mqueue_receive_continue + 0 (mach_kernel) [0xffffff8000213030]
      Thread 0x4d2      priority 31       
      19 thread_start + 13 (libsystem_c.dylib) [0x7fff8d498181]
        19 _pthread_start + 327 (libsystem_c.dylib) [0x7fff8d4ab742]
          19 __select + 10 (libsystem_kernel.dylib) [0x7fff911c7322]
           *19 ??? (mach_kernel + 3576576) [0xffffff8000569300]
      Binary Images:
             0x1029c4000 -        0x102a42ff7  apsd <955901BC-3EA7-3976-9473-FD16EE108102> /System/Library/PrivateFrameworks/ApplePushService.framework/apsd
          0x7fff88414000 -     0x7fff885fdfff  com.apple.CoreFoundation 6.8 (744.12) <EF002794-DAEF-31C6-866C-E3E3AC387A9F> /System/Library/Frameworks/CoreFoundation.framework/Versions/A/CoreFoundation
          0x7fff89fc4000 -     0x7fff8a320fff  com.apple.Foundation 6.8 (945.11) <A5D41956-A354-3ACC-9355-BE200072223B> /System/Library/Frameworks/Foundation.framework/Versions/C/Foundation
          0x7fff8a768000 -     0x7fff8a76bff7  libdyld.dylib <F59367C9-C110-382B-A695-9035A6DD387E> /usr/lib/system/libdyld.dylib
          0x7fff8d497000 -     0x7fff8d563fe7  libsystem_c.dylib <8CBCF9B9-EBB7-365E-A3FF-2F3850763C6B> /usr/lib/system/libsystem_c.dylib
          0x7fff8eef1000 -     0x7fff8ef06ff7  libdispatch.dylib <D26996BF-FC57-39EB-8829-F63585561E09> /usr/lib/system/libdispatch.dylib
          0x7fff911b5000 -     0x7fff911d0ff7  libsystem_kernel.dylib <EC0A9F5B-C9F5-336B-A7DD-49A718042F39> /usr/lib/system/libsystem_kernel.dylib
    *0xffffff8000200000 - 0xffffff8000734d7c  mach_kernel <0AFA55FD-872F-3BBE-8630-214EB586A16D> /mach_kernel
    Process:         autofsd [78]
    Path:            /usr/libexec/autofsd
    Architecture:    x86_64
    Parent:          launchd [1]
    UID:             0
    Sudden Term:     Clean
    Task size:       520 pages
      Thread 0x29a      DispatchQueue 2          priority 33       
      19 _dispatch_mgr_thread + 54 (libdispatch.dylib) [0x7fff8eef59ee]
        19 kevent + 10 (libsystem_kernel.dylib) [0x7fff911c7d16]
         *19 ??? (mach_kernel + 3467616) [0xffffff800054e960]
      Thread 0x29b      DispatchQueue 7          priority 31       
      19 _dispatch_sig_thread + 45 (libdispatch.dylib) [0x7fff8eef2d85]
        19 __sigsuspend_nocancel + 10 (libsystem_kernel.dylib) [0x7fff911c7566]
         *19 ??? (mach_kernel + 3576576) [0xffffff8000569300]
      Binary Images:
             0x10ed62000 -        0x10ed63fff  autofsd <84AA47F0-1486-37EE-9C69-12CB98C34F1C> /usr/libexec/autofsd
          0x7fff8eef1000 -     0x7fff8ef06ff7  libdispatch.dylib <D26996BF-FC57-39EB-8829-F63585561E09> /usr/lib/system/libdispatch.dylib
          0x7fff911b5000 -     0x7fff911d0ff7  libsystem_kernel.dylib <EC0A9F5B-C9F5-336B-A7DD-49A718042F39> /usr/lib/system/libsystem_kernel.dylib
    *0xffffff8000200000 - 0xffffff8000734d7c  mach_kernel <0AFA55FD-872F-3BBE-8630-214EB586A16D> /mach_kernel
    Process:         awacsd [77]
    Path:            /usr/sbin/awacsd
    Architecture:    x86_64
    Parent:          launchd [1]
    UID:             0
    Task size:       2119 pages
      Thread 0x31b      DispatchQueue 2          priority 33       
      19 _dispatch_mgr_thread + 54 (libdispatch.dylib) [0x7fff8eef59ee]
        19 kevent + 10 (libsystem_kernel.dylib) [0x7fff911c7d16]
         *19 ??? (mach_kernel + 3467616) [0xffffff800054e960]
      Thread 0x337      DispatchQueue 7          priority 31       
      19 _dispatch_sig_thread + 45 (libdispatch.dylib) [0x7fff8eef2d85]
        19 __sigsuspend_nocancel + 10 (libsystem_kernel.dylib) [0x7fff911c7566]
         *19 ??? (mach_kernel + 3576576) [0xffffff8000569300]
      Thread 0x31c      DispatchQueue 35         priority 31       
      19 start_wqthread + 13 (libsystem_c.dylib) [0x7fff8d498171]
        19 _pthread_wqthread + 404 (libsystem_c.dylib) [0x7fff8d4adcab]
          19 _dispatch_worker_thread2 + 249 (libdispatch.dylib) [0x7fff8eef41c3]
            19 _dispatch_queue_invoke + 52 (libdispatch.dylib) [0x7fff8eef42f1]
              19 _dispatch_queue_drain + 235 (libdispatch.dylib) [0x7fff8eef447f]
                19 _dispatch_client_callout + 8 (libdispatch.dylib) [0x7fff8eef30b6]
                  19 _dispatch_call_block_and_release + 15 (libdispatch.dylib) [0x7fff8eef6f01]
                    19 ??? (awacsd + 161099) [0x10a66454b]
                      19 CFRunLoopRun + 97 (CoreFoundation) [0x7fff88457371]
                        19 CFRunLoopRunSpecific + 290 (CoreFoundation) [0x7fff884486b2]
                          19 __CFRunLoopRun + 1078 (CoreFoundation) [0x7fff88448ee6]
                            19 __CFRunLoopServiceMachPort + 195 (CoreFoundation) [0x7fff88443803]
                              19 mach_msg_trap + 10 (libsystem_kernel.dylib) [0x7fff911c5686]
                               *19 ipc_mqueue_receive_continue + 0 (mach_kernel) [0xffffff8000213030]
      Thread 0x341      DispatchQueue 145        priority 31       
      19 start_wqthread + 13 (libsystem_c.dylib) [0x7fff8d498171]
        19 _pthread_wqthread + 404 (libsystem_c.dylib) [0x7fff8d4adcab]
          19 _dispatch_worker_thread2 + 249 (libdispatch.dylib) [0x7fff8eef41c3]
            19 _dispatch_queue_invoke + 52 (libdispatch.dylib) [0x7fff8eef42f1]
              19 _dispatch_queue_drain + 235 (libdispatch.dylib) [0x7fff8eef447f]
                19 _dispatch_client_callout + 8 (libdispatch.dylib) [0x7fff8eef30b6]
                  19 _dispatch_call_block_and_release + 15 (libdispatch.dylib) [0x7fff8eef6f01]
                    19 ??? (awacsd + 212682) [0x10a670eca]
                      19 -[NSRunLoop(NSRunLoop) runMode:beforeDate:] + 268 (Foundation) [0x7fff8a05e89e]
                        19 CFRunLoopRunSpecific + 290 (CoreFoundation) [0x7fff884486b2]
                          19 __CFRunLoopRun + 1078 (CoreFoundation) [0x7fff88448ee6]
                            19 __CFRunLoopServiceMachPort + 195 (CoreFoundation) [0x7fff88443803]
                              19 mach_msg_trap + 10 (libsystem_kernel.dylib) [0x7fff911c5686]
                               *19 ipc_mqueue_receive_continue + 0 (mach_kernel) [0xffffff8000213030]
      Thread 0x4e1      priority 31       
      19 thread_start + 13 (libsystem_c.dylib) [0x7fff8d498181]
        19 _pthread_start + 327 (libsystem_c.dylib) [0x7fff8d4ab742]
          19 __select + 10 (libsystem_kernel.dylib) [0x7fff911c7322]
           *19 ??? (mach_kernel + 3576576) [0xffffff8000569300]
      Thread 0x52503    priority 33       
      19 start_wqthread + 13 (libsystem_c.dylib) [0x7fff8d498171]
        19 _pthread_wqthread + 412 (libsystem_c.dylib) [0x7fff8d4adcb3]
          19 __workq_kernreturn + 10 (libsystem_kernel.dylib) [0x7fff911c76d6]
           *19 ??? (mach_kernel + 3906640) [0xffffff80005b9c50]
      Binary Images:
             0x10a63d000 -        0x10a6b6ff7  awacsd <5C3F7941-CE4B-3AAA-9F4C-B63CD78D82D0> /usr/sbin/awacsd
          0x7fff88414000 -     0x7fff885fdfff  com.apple.CoreFoundation 6.8 (744.12) <EF002794-DAEF-31C6-866C-E3E3AC387A9F> /System/Library/Frameworks/CoreFoundation.framework/Versions/A/CoreFoundation
          0x7fff89fc4000 -     0x7fff8a320fff  com.apple.Foundation 6.8 (945.11) <A5D41956-A354-3ACC-9355-BE200072223B> /System/Library/Frameworks/Foundation.framework/Versions/C/Foundation
          0x7fff8d497000 -     0x7fff8d563fe7  libsystem_c.dylib <8CBCF9B9-EBB7-365E-A3FF-2F3850763C6B> /usr/lib/system/libsystem_c.dylib
          0x7fff8eef1000 -     0x7fff8ef06ff7  libdispatch.dylib <D26996BF-FC57-39EB-8829-F63585561E09> /usr/lib/system/libdispatch.dylib
          0x7fff911b5000 -     0x7fff911d0ff7  libsystem_kernel.dylib <EC0A9F5B-C9F5-336B-A7DD-49A718042F39> /usr/lib/system/libsystem_kernel.dylib
    *0xffffff8000200000 - 0xffffff8000734d7c  mach_kernel <0AFA55FD-872F-3BBE-8630-214EB586A16D> /mach_kernel
    Process:         blued [76]
    Path:            /usr/sbin/blued
    Architecture:    x86_64
    Parent:          launchd [1]
    UID:             0
    Sudden Term:     Clean
    Task size:       1114 pages
      Thread 0x26a      DispatchQueue 1          priority 31       
      19 start + 1 (libdyld.dylib) [0x7fff8a76a7e1]
        19 ??? (blued + 170413) [0x10f95f9ad]
          19 -[NSRunLoop(NSRunLoop) run] + 74 (Foundation) [0x7fff89ff718a]
            19 -[NSRunLoop(NSRunLoop) runMode:beforeDate:] + 268 (Foundation) [0x7fff8a05e89e]
              19 CFRunLoopRunSpecific + 290 (CoreFoundation) [0x7fff884486b2]
                19 __CFRunLoopRun + 1078 (CoreFoundation) [0x7fff88448ee6]
                  19 __CFRunLoopServiceMachPort + 195 (CoreFoundation) [0x7fff88443803]
                    19 mach_msg_trap + 10 (libsystem_kernel.dylib) [0x7fff911c5686]
                     *19 ipc_mqueue_receive_continue + 0 (mach_kernel) [0xffffff8000213030]
      Thread 0x2b4      DispatchQueue 2          priority 33       
      19 _dispatch_mgr_thread + 54 (libdispatch.dylib) [0x7fff8eef59ee]
        19 kevent + 10 (libsystem_kernel.dylib) [0x7fff911c7d16]
         *19 ??? (mach_kernel + 3467616) [0xffffff800054e960]
      Thread 0x371      priority 31       
      19 thread_start + 13 (libsystem_c.dylib) [0x7fff8d498181]
        19 _pthread_start + 327 (libsystem_c.dylib) [0x7fff8d4ab742]
          19 __select + 10 (libsystem_kernel.dylib) [0x7fff911c7322]
           *19 ??? (mach_kernel + 3576576) [0xffffff8000569300]
      Binary Images:
             0x10f936000 -        0x10f9eafff  blued <9CEF1456-03C9-3DED-A0DA-0E8B483CDB34> /usr/sbin/blued
          0x7fff88414000 -     0x7fff885fdfff  com.apple.CoreFoundation 6.8 (744.12) <EF002794-DAEF-31C6-866C-E3E3AC387A9F> /System/Library/Frameworks/CoreFoundation.framework/Versions/A/CoreFoundation
          0x7fff89fc4000 -     0x7fff8a320fff  com.apple.Foundation 6.8 (945.11) <A5D41956-A354-3ACC-9355-BE200072223B> /System/Library/Frameworks/Foundation.framework/Versions/C/Foundation
          0x7fff8a768000 -     0x7fff8a76bff7  libdyld.dylib <F59367C9-C110-382B-A695-9035A6DD387E> /usr/lib/system/libdyld.dylib
          0x7fff8d497000 -     0x7fff8d563fe7  libsystem_c.dylib <8CBCF9B9-EBB7-365E-A3FF-2F3850763C6B> /usr/lib/system/libsystem_c.dylib
          0x7fff8eef1000 -     0x7fff8ef06ff7  libdispatch.dylib <D26996BF-FC57-39EB-8829-F63585561E09> /usr/lib/system/libdispatch.dylib
          0x7fff911b5000 -     0x7fff911d0ff7  libsystem_kernel.dylib <EC0A9F5B-C9F5-336B-A7DD-49A718042F39> /usr/lib/system/libsystem_kernel.dylib
    *0xffffff8000200000 - 0xffffff8000734d7c  mach_kernel <0AFA55FD-872F-3BBE-8630-214EB586A16D> /mach_kernel

    Just so you know.... this forum is answered by fellow users not Apple Developers who can use the crash log.  I suggest moving the preferences for Numbers and Pages to your desktop while both apps are nit running, then launch them.
    The preferences files are stored in the folder:
         /Users/<your user name>/Library/Preferences
    you should locate and move (to the desktop) the files:
         /Users/<your user name>/Library/Preferences/com.apple.iWork.Numbers.plist
         /Users/<your user name>/Library/Preferences/com.apple.iWork.Pages.plist
    I usually go there by using the menu item (in the Finder) "Go > Go To Folder…"

  • How do I use page numbering and a text block in a footer in Word with the Report Generation Toolkit?

    I am creating a Word document with the Report Generation Toolkit, and LabVIEW 8.2.1. In the report I am using a template that has page numbering enabled in the center. When I try to add a text block to the left side footer, it eliminates the page numbering and adds my text on the left side. I found "Set Report Footer Text" and "Word Set Page Numbering" vi's that may be the clue to this. When I use these two vi's I either get Page 1 of 456789-001 on the left side, or if I reverse the order I get only 456789-001(text) in the left side with nothing in the center. What I would like to achieve is 456789-001(text) on the left footer, and Page 1 of 2 in the center. Is this possible and if it is, then how can I do it?

    Hi SciManStev,
    I have attached a vi where you can see how they can be made to work together. You have to design it such that one follows the other. If you don't design it that way, it results in a race condition and only one of them get executed.
    Good Luck!
    Warm regards,
    Karunya R
    National Instruments
    Applications Engineer
    Attachments:
    SciMan1.vi ‏14 KB

  • Hi, i'm new using numbers, and when I try to open a excel file don't let me do it, instead appears a box whit a error and close app,  any help?

    Hi, i'm new using numbers, and when I try to open a excel file don't let me do it, instead appears a box whit a error and close app,  any help?

    What does the error say?
    A couple of thoughts: the file is corrupted or is password-protected. Corruption is more likely to cause Numbers to crash & Numbers cannot open password-protected Excel files. Try using one of the free Office clones & see what happens.

  • Using Numbers and Pages on more than one account

    I purchased Pages, Numbers and Keynote. I have three accounts setup on my Macbook Air (one for English, one for Korean and one for French). The applications only show up on the account where I purchased them.
    How do get the applications to run from any of the three accounts?

    If they appear only in one account, it's because you installed them in the Applications folder of this account.
    To be able to use them from other accounts, you must move them into the global applications folder.
    As you wrote
    I purchased Pages, Numbers and Keynote.
    I'm not sure of what you really bought. Is it iWork as a whole or the three separated apps thru App Store ?
    Buying iWork, the three apps would be in a subfolder:
    Macintosh HD:Users:<theUserAccount>:Applications:iWork '09
    Move them to
    Macintosh HD:Applications:iWork '09
    If you bought in the App Store, I read a post stating that they are stored in :
    Macintosh HD:Users:<theUserAccount>:Applications:
    I feel that it would be a good idea to move them in a subfolder as in the iWork case.
    Macintosh HD:Applications:iWork '09
    Select the subfolder (or the three applications) to move them in a single operation.
    So you will be asked for your password only once.
    I explain for those which never bought on App Store. In this case, the system keep links to the exact location and require the administrator password before moving the app.
    Yvan KOENIG (VALLAURIS, France) jeudi 27 janvier 2011 10:14:42

  • My wife and i share the same computer to sync our phone with. All of a sudden i lost all my phone numbers and got hers. How do i get mine back. Help Please

    My wife and i share the same computer to sync our phones with. The last time i sync i lost all my phone numbers and got hers. Is there a way to get mine back. Please Help. Thanks

    Have a read here...
    https://discussions.apple.com/message/18409815?ac_cid=ha
    And See Here... http://support.apple.com/kb/HT1495
    Create a New User Account for each User.
    Then Each user will have their own iTunes library..
    More Info Here >  cnettv.cnet.com/use-two-iphones-one-computerl

  • I can't seem to see sync my mac and iphone using iCloud with numbers and pages how can i correct this?

    Hi
    I've used Numbers and Pages for IOS for sometime now and when i use safari to look at my icloud account i can see all my files. Recently i bought Numbers for Mac and now whenever i create a spreadsheet on my mac i can't see it on my iphone but i can if i login to icloud. In fact i can only see about 16 files on my iphone when there is over 40 files.
    Although i don't yet have pages for mac i now have a similar problem with Pages, whenever i edit a file or even create a file on IOS it doesn't appear in icloud.
    I did think it was something to do with me not selecting backup to icloud so i then spent £14 to upgrade my storage to 15GB and that hasn't helped.
    I've checked all the settings and can't see anythng that will cause the problem.
    My iphone is running IOS 6 and my Mac is running Mountain Lion 10.8.2
    Does anyone know how to correct this mess?
    Many thanks in advance.
    Mick.

    Problems with buttons and links at the top of the page not working can be caused by an extension like the Yahoo! Toolbar or a Babylon extension that extents too much downwards and covers the top part of the browser window and thus makes links and buttons in that part of the screen not clickable.
    *https://support.mozilla.org/kb/Troubleshooting+extensions+and+themes
    Start Firefox in <u>[[Safe Mode|Safe Mode]]</u> to check if one of the extensions (Firefox/Tools > Add-ons > Extensions) or if hardware acceleration is causing the problem (switch to the DEFAULT theme: Firefox/Tools > Add-ons > Appearance).
    *Do not click the Reset button on the Safe mode start window or otherwise make changes.
    *https://support.mozilla.org/kb/Safe+Mode

  • How can I get the phone numbers in contacts to appear with dashes between the first 3 numbers, the next 3 numbers, and the last 4 numbers?  Until very recently it did so.  Contacts on my macbook pro does show up this way.  I do have a mobile me account an

    How can I get the phone numbers in contacts to appear with dashes between the first 3 numbers, the next 3 numbers, and the last 4 numbers?  Until very recently
    it did so.  Contacts on my macbook pro does show up this way.  I do have a mobile me account and in the past syncing was no problem.  What setting has changed?

    The phone number format as well as the date language and format and the time format are controlled by the Region Format setting. Go to Settings > General >International > Region Format.  When you change a region format, you can go back one page (to International) and see an example of the date/time/phone number format that your selected region format will produce.

  • I have 1 apple id, 2 5S iPhones with separates numbers and both ring when I get a call on one of the numbers. How do I switch that of ?

    I have 1 Apple ID, 2 5S iPhones (1 private/1 work) with separates numbers and both phones ring when I get a call on one of the numbers. How do I switch that of ?

    I realize that my wife could make her own iTunes account; however, she's been using mine for about 2 years now and this hasn't been an issue.  I guess with the Family Sharing she can have access to all of our music and apps now with her own account. 
    I'll have to see if unchecking our emails resolves this issue.

  • I have a new iPad with wifi. When I send messages I can see my sons and my husbands but not my phone number.  We all have an iPad and all use the same apple ID as iPad the bill.  How can I remove their numbers and add mine?

    I have a new iPad with wifi. When I send messages I can see my sons and my husbands but not my phone number.  We all have an iPad and all use the same apple ID as iPad the bill.  How can I remove their numbers and add mine?

    Add another e-mail account to your messages, so people could reach you on that e-mail from messages. As soon as you are online (if you have wifi only iPad) you are able to send and receive messages. i.e. your son can send you a messages from his iPhone addressing it to your (that additional) e-mail address.

Maybe you are looking for

  • How to display only one record.

    Hi Gurus, Here my requirement is i have 2 pages. first page having project_number lov,create and tableRN. once u select the projectnumber and click on the create button it is navigate to secound page,here enter the data and click on the submit button

  • I would like to know the version or name of SAP that is implemented in real

    I would like to know the version or name of SAP that is implemented in real time?

  • Question about SNMPv3 group/user configuration

    I'm trying to do configure SNMPv3 on a 2811 router for the following: - group ADMIN should allow user access from 10.10.1.0/24 - user IT is on group ADMIN, using MD5 authentication Is the following the right configuration? should I configure engine-I

  • Movie dimensions and duration on an Airport drive

    I have many movies in mp4 or m4v format. On my internal drive, the Finder indicates movie dimensions and duration. I had an Airport drive on which the Finder indicated these values. It crashed, and I bought the same one. Now, on the new one, dimensio

  • Photoshop file won't fit

    Hi, I'm working on a pal anamorphic project in which I'd like to import a photoshop file, with a gap inside to use video in. I made the file using the photoshop cs3 video preferences. Saved it as a psd 1024x576 not anamorphic. The sequence has the sa