On di freemem

Hi all !
ecc 5.0 , oracle 9i, solaris 10.
this link ( http://s1.ipicture.ru/uploads/20120130/T6DqzpVv.png )  to free physical memory in mb statistics.
From 14 january to 29 jan.  on CI and DI servers.
used the average value memory per day
The graph shows 15 jan i restart DI and memory freed . But daily free memory decreases and does not return.
DI application server takes memory and dont returns into free memory. What do you think it's a memory leak?
I dont understand why DI takes memory and dont returns into free memory.
On CI server 15, 22, 28 jan. You can see how during the backup database stopped and freed memory
in work process you can see that CI return  into free memory but DI not (

Hi Andrey,
Once a workprocess allocated the portion of memory, it will not release it to the OS as a default behaviour. But, there are two options to reclaim the allocated memory, to the OS.
1) Restart the work processes: You can configure the profile parameter "rdisp/wp_auto_restart", to restart the workprocess after a time period, automatically. By doing so, because of the work process is restarted respectfully, allocated memory will be reclaimed to the OS. You can set the value as second, minute or hour.
2) Configuring the threshold value: You can configure a threshold value to reclaim the allocated memory to the OS. Please find the parameters, below;
em/blocksize_KB=Block size
es/blockdisclaimsize_KB=Size of the upper part of an EM block that is also released for the operating system
es/disclaim_threshold_MB=Threshold value to release the memory to the OS
es/disclaim_coasting_time_free=How long the system should wait after the threshold value specified by es/disclaim_threshold_MB is exceeded when a block is released before releasing the block for the OS.
es/disclaim_coasting_time_alloc= How long after the threshold value specified by es/disclaim_threshold_MB is exceeded when allocating a block that has just been paged out in the swap space this block is to be released for the OS.
>> On CI server 15, 22, 28 jan. You can see how during the backup database stopped and freed memory
in work process you can see that CI return into free memory but DI not
Regarding your second question, are you sure the DI is restarted, as well after the offline backup? This is because it seems that DI is not restarted and wait for at the "reconnect" state.
Best regards,
Orkun Gedik

Similar Messages

  • Freemem, freeswap, swap gap on v480 and v880

    Hi experts of swap space,
    we have here a v480 (8GB mem) and a v880 (12GB mem).
    Both are equipped with a 2GB swap partition.
    v480: /dev/dsk/c1t0d0s1 118,9 16 4194800 4194160
    v880: /dev/dsk/c1t0d0s1 118,1 16 4202672 4187920
    If both systems are not bothered with our application and nobody is logged in, sar says:
    v480: 09:00:00 954747 17476212
    v880: 09:00:00 1228014 23608890
    With a block size of 512 and a page size of 8192 I come to the following sizes:
    v480: freemem=7821287424 bytes (7.8GB), freeswap=8947820544 bytes (8.9GB)
    v880: freemem=10059890688 bytes (10GB), freeswap=12087751680 bytes (12GB)
    Q1: Does this not look like, that the 2GB swap space on the v480 is not reflected in the sar output, but on the v880?
    Q2: What are the missing 2GB memory used for on the v880? How to find out?
    We are currently using sar, because our application has to run on v480s and v880s, but reduce the freemem value of sar to 123MB (of 8GB).
    Thanks for an answer
    fuchsol

    Hi experts of swap space,
    we have here a v480 (8GB mem) and a v880 (12GB mem).
    Both are equipped with a 2GB swap partition.
    v480: /dev/dsk/c1t0d0s1 118,9 16 4194800 4194160
    v880: /dev/dsk/c1t0d0s1 118,1 16 4202672 4187920
    If both systems are not bothered with our application and nobody is logged in, sar says:
    v480: 09:00:00 954747 17476212
    v880: 09:00:00 1228014 23608890
    With a block size of 512 and a page size of 8192 I come to the following sizes:
    v480: freemem=7821287424 bytes (7.8GB), freeswap=8947820544 bytes (8.9GB)
    v880: freemem=10059890688 bytes (10GB), freeswap=12087751680 bytes (12GB)
    Q1: Does this not look like, that the 2GB swap space on the v480 is not reflected in the sar output, but on the v880?
    Q2: What are the missing 2GB memory used for on the v880? How to find out?
    We are currently using sar, because our application has to run on v480s and v880s, but reduce the freemem value of sar to 123MB (of 8GB).
    Thanks for an answer
    fuchsol

  • IPhone core data - fetched managed objects not being autoreleased on device (fine on simulator)

    I'm currently struggling with a core data issue with my app that defies (my) logic. I'm sure I'm doing something wrong but can't see what. I am doing a basic executeFetchRequest on my core data entity, but the array of managed objects returned never seems to be released ONLY when I run it on the iPhone, under the simulator it works exactly as expected. This is despite using an NSAutoreleasePool to ensure the memory footprint is minimised. I have also checked with Instruments and there are no leaks, just ever increasing allocations of memory (by '[NSManagedObject(_PFDynamicAccessorsAndPropertySupport) allocWithEntity:]'). In my actual app this eventually leads to a didReceiveMemoryWarning call. I have produced a minimal program that reproduces the problem below. I have tried various things such as faulting all the objects before draining the pool, but with no joy. If I provide an NSError pointer to the fetch no error is returned. There are no background threads running.
    +(natural_t) get_free_memory {
        mach_port_t host_port;
        mach_msg_type_number_t host_size;
        vm_size_t pagesize;
        host_port = mach_host_self();
        host_size = sizeof(vm_statistics_data_t) / sizeof(integer_t);
        host_page_size(host_port, &pagesize);
        vm_statistics_data_t vm_stat;
        if (host_statistics(host_port, HOST_VM_INFO, (host_info_t)&vm_stat, &host_size) != KERN_SUCCESS) {
            NSLog(@"Failed to fetch vm statistics");
            return 0;
        /* Stats in bytes */
        natural_t mem_free = vm_stat.free_count * pagesize;
        return mem_free;
    - (void)viewDidLoad
        [super viewDidLoad];
        // Set up the edit and add buttons.
        self.navigationItem.leftBarButtonItem = self.editButtonItem;
        UIBarButtonItem *addButton = [[UIBarButtonItem alloc] initWithBarButtonSystemItem:UIBarButtonSystemItemAdd target:self action:@selector(insertNewObject)];
        self.navigationItem.rightBarButtonItem = addButton;
        [addButton release];
        // Obtain the Managed Object Context
        NSManagedObjectContext *context = [(id)[[UIApplication sharedApplication] delegate] managedObjectContext];
        // Check the free memory before we start
        NSLog(@"INITIAL FREEMEM: %d", [RootViewController get_free_memory]);
        // Loop around a few times
        for(int i=0; i<20; i++) {
            // Create an autorelease pool just for this loop
            NSAutoreleasePool *looppool = [[NSAutoreleasePool alloc] init];
            // Check the free memory each time around the loop
            NSLog(@"FREEMEM: %d", [RootViewController get_free_memory]);
            // Create a minimal request
            NSEntityDescription *entityDescription = [NSEntityDescription                                                 
                                                  entityForName:@"TestEntity" inManagedObjectContext:context];
            // 'request' released after fetch to minimise use of autorelease pool       
            NSFetchRequest *request = [[NSFetchRequest alloc] init];
            [request setEntity:entityDescription];
            // Perform the fetch
            NSArray *array = [context executeFetchRequest:request error:nil];       
            [request release];
            // Drain the pool - should release the fetched managed objects?
            [looppool drain];
        // Check the free menory at the end
        NSLog(@"FINAL FREEMEM: %d", [RootViewController get_free_memory]);
    When I run the above on the simulator I get the following output (which looks reasonable to me):
    2011-06-06 09:50:28.123 renniksoft[937:207] INITIAL FREEMEM: 14782464
    2011-06-06 09:50:28.128 renniksoft[937:207] FREEMEM: 14807040
    2011-06-06 09:50:28.135 renniksoft[937:207] FREEMEM: 14831616
    2011-06-06 09:50:28.139 renniksoft[937:207] FREEMEM: 14852096
    2011-06-06 09:50:28.142 renniksoft[937:207] FREEMEM: 14872576
    2011-06-06 09:50:28.146 renniksoft[937:207] FREEMEM: 14897152
    2011-06-06 09:50:28.149 renniksoft[937:207] FREEMEM: 14917632
    2011-06-06 09:50:28.153 renniksoft[937:207] FREEMEM: 14938112
    2011-06-06 09:50:28.158 renniksoft[937:207] FREEMEM: 14962688
    2011-06-06 09:50:28.161 renniksoft[937:207] FREEMEM: 14983168
    2011-06-06 09:50:28.165 renniksoft[937:207] FREEMEM: 14741504
    2011-06-06 09:50:28.168 renniksoft[937:207] FREEMEM: 14770176
    2011-06-06 09:50:28.174 renniksoft[937:207] FREEMEM: 14790656
    2011-06-06 09:50:28.177 renniksoft[937:207] FREEMEM: 14811136
    2011-06-06 09:50:28.182 renniksoft[937:207] FREEMEM: 14831616
    2011-06-06 09:50:28.186 renniksoft[937:207] FREEMEM: 14589952
    2011-06-06 09:50:28.189 renniksoft[937:207] FREEMEM: 14610432
    2011-06-06 09:50:28.192 renniksoft[937:207] FREEMEM: 14630912
    2011-06-06 09:50:28.194 renniksoft[937:207] FREEMEM: 14651392
    2011-06-06 09:50:28.197 renniksoft[937:207] FREEMEM: 14671872
    2011-06-06 09:50:28.200 renniksoft[937:207] FREEMEM: 14692352
    2011-06-06 09:50:28.203 renniksoft[937:207] FINAL FREEMEM: 14716928
    However, when I run it on an actual iPhone 4 (4.3.3) I get the following result:
    2011-06-06 09:55:54.341 renniksoft[4727:707] INITIAL FREEMEM: 267927552
    2011-06-06 09:55:54.348 renniksoft[4727:707] FREEMEM: 267952128
    2011-06-06 09:55:54.702 renniksoft[4727:707] FREEMEM: 265818112
    2011-06-06 09:55:55.214 renniksoft[4727:707] FREEMEM: 265355264
    2011-06-06 09:55:55.714 renniksoft[4727:707] FREEMEM: 264892416
    2011-06-06 09:55:56.215 renniksoft[4727:707] FREEMEM: 264441856
    2011-06-06 09:55:56.713 renniksoft[4727:707] FREEMEM: 263979008
    2011-06-06 09:55:57.226 renniksoft[4727:707] FREEMEM: 264089600
    2011-06-06 09:55:57.721 renniksoft[4727:707] FREEMEM: 263630848
    2011-06-06 09:55:58.226 renniksoft[4727:707] FREEMEM: 263168000
    2011-06-06 09:55:58.726 renniksoft[4727:707] FREEMEM: 262705152
    2011-06-06 09:55:59.242 renniksoft[4727:707] FREEMEM: 262852608
    2011-06-06 09:55:59.737 renniksoft[4727:707] FREEMEM: 262389760
    2011-06-06 09:56:00.243 renniksoft[4727:707] FREEMEM: 261931008
    2011-06-06 09:56:00.751 renniksoft[4727:707] FREEMEM: 261992448
    2011-06-06 09:56:01.280 renniksoft[4727:707] FREEMEM: 261574656
    2011-06-06 09:56:01.774 renniksoft[4727:707] FREEMEM: 261148672
    2011-06-06 09:56:02.290 renniksoft[4727:707] FREEMEM: 260755456
    2011-06-06 09:56:02.820 renniksoft[4727:707] FREEMEM: 260837376
    2011-06-06 09:56:03.334 renniksoft[4727:707] FREEMEM: 260395008
    2011-06-06 09:56:03.825 renniksoft[4727:707] FREEMEM: 259932160
    2011-06-06 09:56:04.346 renniksoft[4727:707] FINAL FREEMEM: 259555328
    The amount of free memory reduces each time round the loop in proportion to the managed objects I fetch e.g. if I fetch twice as many objects then the free memory reduces twice as quickly - so I'm pretty confident it is the managed objects that are not being released. Note that the entities that are being fetched are very basic, just two attributes, a string and a 16 bit integer. There are 1000 of them being fetched in the examples above. The code I used to generate them is as follows:
    // Create test entities
    for(int i=0; i<1000; i++) {
        id entity = [NSEntityDescription insertNewObjectForEntityForName:@"TestEntity" inManagedObjectContext:context];
        [entity setValue:[NSString stringWithFormat:@"%d",i] forKey:@"name"];
        [entity setValue:[NSNumber numberWithInt:i] forKey:@"value"];
    if (![context save:nil]) {
        NSLog(@"Couldn't save");
    If anyone can explain to me what is going on I'd be very grateful! This issue is the only only one holding up the release of my app. It works beautifully on the simulator!!
    Please let me know if there's any more info I can supply.

    Update: I modified the above code so that the fetch (and looppool etc.) take place when a timer fires. This means that the fetches aren't blocked in viewDidLoad.
    The result of this is that the issue happens exactly as before, but the applicationDidReceiveMemoryWarning is fired as expected:
    2011-06-08 09:54:21.024 renniksoft[5993:707] FREEMEM: 6131712
    2011-06-08 09:54:22.922 renniksoft[5993:707] Received memory warning. Level=2
    2011-06-08 09:54:22.926 renniksoft[5993:707] applicationDidReceiveMemoryWarning
    2011-06-08 09:54:22.929 renniksoft[5993:707] FREEMEM: 5615616
    2011-06-08 09:54:22.932 renniksoft[5993:707] didReceiveMemoryWarning
    2011-06-08 09:54:22.935 renniksoft[5993:707] FREEMEM: 5656576

  • Unable to run Gantt test application on Netweaver CE

    Hi,
    I am unable to run webdynprotest_gantt on Netweaver CE enviornment. I am getting below error.
    Processing HTTP request to servlet [dispatcher] finished with error. The error is: com.sap.tc.webdynpro.services.sal.core.DispatcherException: The requested deployable object 'local/_webdynpro_test_gantt' and application 'com' is not deployed on the server. Please check the used URL for typos.
    at com.sap.tc.webdynpro.clientserver.task.Task.getApplicationDeployableObjectPart(Task.java:385)
    at com.sap.tc.webdynpro.clientserver.session.RequestManager.initApplicationDeployableObjectPart(RequestManager.java:531)
    at com.sap.tc.webdynpro.clientserver.session.RequestManager.initTask(RequestManager.java:453)
    at com.sap.tc.webdynpro.clientserver.session.RequestManager.doInitWdEnvironment(RequestManager.java:148)
    at com.sap.tc.webdynpro.clientserver.session.RequestManager.doProcessing(RequestManager.java:203)
    at com.sap.tc.webdynpro.serverimpl.core.sessionctx.AbstractExecutionContextDispatcher.delegateToRequestManager(AbstractExecutionContextDispatcher.java:192)
    at com.sap.tc.webdynpro.serverimpl.wdc.sessionctx.DispatchHandlerForRequestManager.doService(DispatchHandlerForRequestManager.java:38)
    at com.sap.tc.webdynpro.serverimpl.wdc.sessionctx.AbstractDispatchHandler.service(AbstractDispatchHandler.java:116)
    at com.sap.engine.services.servlets_jsp.server.deploy.impl.module.IRequestDispatcherImpl.dispatch(IRequestDispatcherImpl.java:93)
    at com.sap.tc.webdynpro.serverimpl.wdc.sessionctx.ExecutionContextDispatcher.dispatchToRequestManager(ExecutionContextDispatcher.java:140)
    at com.sap.tc.webdynpro.serverimpl.core.sessionctx.AbstractExecutionContextDispatcher.dispatch(AbstractExecutionContextDispatcher.java:92)
    at com.sap.tc.webdynpro.serverimpl.core.sessionctx.AbstractExecutionContextDispatcher.dispatch(AbstractExecutionContextDispatcher.java:104)
    at com.sap.tc.webdynpro.serverimpl.core.AbstractDispatcherServlet.doContent(AbstractDispatcherServlet.java:87)
    at com.sap.tc.webdynpro.serverimpl.core.AbstractDispatcherServlet.doGet(AbstractDispatcherServlet.java:54)
    at javax.servlet.http.HttpServlet.service(HttpServlet.java:707)
    at javax.servlet.http.HttpServlet.service(HttpServlet.java:820)
    at com.sap.engine.services.servlets_jsp.server.Invokable.invoke(Invokable.java:66)
    at com.sap.engine.services.servlets_jsp.server.Invokable.invoke(Invokable.java:32)
    at com.sap.engine.services.servlets_jsp.server.HttpHandlerImpl.runServlet(HttpHandlerImpl.java:431)
    at com.sap.engine.services.servlets_jsp.server.HttpHandlerImpl.handleRequest(HttpHandlerImpl.java:289)
    at com.sap.engine.services.httpserver.server.RequestAnalizer.startServlet(RequestAnalizer.java:387)
    at com.sap.engine.services.httpserver.server.RequestAnalizer.startServlet(RequestAnalizer.java:376)
    at com.sap.engine.services.servlets_jsp.filters.ServletSelector.process(ServletSelector.java:85)
    at com.sap.engine.services.httpserver.chain.AbstractChain.process(AbstractChain.java:71)
    at com.sap.engine.services.servlets_jsp.filters.ApplicationSelector.process(ApplicationSelector.java:160)
    at com.sap.engine.services.httpserver.chain.AbstractChain.process(AbstractChain.java:71)
    at com.sap.engine.services.httpserver.filters.WebContainerInvoker.process(WebContainerInvoker.java:67)
    at com.sap.engine.services.httpserver.chain.HostFilter.process(HostFilter.java:9)
    at com.sap.engine.services.httpserver.chain.AbstractChain.process(AbstractChain.java:71)
    at com.sap.engine.services.httpserver.filters.ResponseLogWriter.process(ResponseLogWriter.java:60)
    at com.sap.engine.services.httpserver.chain.HostFilter.process(HostFilter.java:9)
    at com.sap.engine.services.httpserver.chain.AbstractChain.process(AbstractChain.java:71)
    at com.sap.engine.services.httpserver.filters.DefineHostFilter.process(DefineHostFilter.java:27)
    at com.sap.engine.services.httpserver.chain.ServerFilter.process(ServerFilter.java:12)
    at com.sap.engine.services.httpserver.chain.AbstractChain.process(AbstractChain.java:71)
    at com.sap.engine.services.httpserver.filters.MonitoringFilter.process(MonitoringFilter.java:29)
    at com.sap.engine.services.httpserver.chain.ServerFilter.process(ServerFilter.java:12)
    at com.sap.engine.services.httpserver.chain.AbstractChain.process(AbstractChain.java:71)
    at com.sap.engine.services.httpserver.server.Processor.chainedRequest(Processor.java:309)
    at com.sap.engine.services.httpserver.server.Processor$FCAProcessorThread.run(Processor.java:222)
    at com.sap.engine.core.thread.impl3.ActionObject.run(ActionObject.java:37)
    at java.security.AccessController.doPrivileged(Native Method)
    at com.sap.engine.core.thread.impl3.SingleThread.execute(SingleThread.java:152)
    at com.sap.engine.core.thread.impl3.SingleThread.run(SingleThread.java:247)
    Caused by: com.sap.tc.webdynpro.services.sal.deployment.api.WDDeploymentException: Failed to get deployable object part for application 'com' of deployable object 'local/_webdynpro_test_gantt'.
    at com.sap.tc.webdynpro.serverimpl.core.deployment.AbstractDeployableObject.getApplication(AbstractDeployableObject.java:91)
    at com.sap.tc.webdynpro.clientserver.task.Task.getApplicationDeployableObjectPart(Task.java:383)
    ... 43 more
    May I know if I am missing any LIB or sCAs?
    Here is the trace for jnet applet
    Java Plug-in 1.5.0_15
    Using JRE version 1.5.0_15 Java HotSpot(TM) Client VM
    User home directory = C:\Documents and Settings\ritesh.mehta
    c:   clear console window
    f:   finalize objects on finalization queue
    g:   garbage collect
    h:   display this help message
    l:   dump classloader list
    m:   print memory usage
    o:   trigger logging
    p:   reload proxy configuration
    q:   hide console
    r:   reload policy configuration
    s:   dump system and deployment properties
    t:   dump thread list
    v:   dump thread stack
    x:   clear classloader cache
    0-5: set trace level to <n>
    <<<--- Applet.destroy(): AppWin0/JNET --->>>
    <<<--- EXIT for AppWin0/JNET --->>>
    ACF 7.1000.0.80
    UR L&F version: 7.1000.0.10
    ACF | performance | 13h48m14s859ms | # 3 | thread applet-com.sap.tc.webdynpro.ace.AcfApplet.class | id AEGB.TestAppView.Gantt1 | end init, complete acf time: | -2434030589499
    ACF | performance | 13h48m14s968ms | # 3 | Thread-6403 | id AEGB.TestAppView.Gantt1 | end invoke, complete acf time: | 328
    <<<--- Applet.destroy(): AppWin0/JNET --->>>
    <<<--- EXIT for AppWin0/JNET --->>>
    ACF | INFO | 13h49m23s250ms | # 4 | thread applet-com.sap.tc.webdynpro.ace.AcfApplet.class | id AEGB.TestAppView.Gantt1 | AcfApplet.traceInfos | controlID: "AEGB.TestAppView.Gantt1"
    ACF | INFO | 13h49m23s250ms | # 4 | thread applet-com.sap.tc.webdynpro.ace.AcfApplet.class | id AEGB.TestAppView.Gantt1 | AcfApplet.traceInfos | delegateWrapper: "com.sap.tc.webdynpro.network.GanttDelegateWrapper"
    ACF | INFO | 13h49m23s250ms | # 4 | thread applet-com.sap.tc.webdynpro.ace.AcfApplet.class | id AEGB.TestAppView.Gantt1 | AcfApplet.traceInfos | locale: "en"
    ACF | INFO | 13h49m23s250ms | # 4 | thread applet-com.sap.tc.webdynpro.ace.AcfApplet.class | id AEGB.TestAppView.Gantt1 | AcfApplet.traceInfos | jsPrefix: "null"
    ACF | INFO | 13h49m23s250ms | # 4 | thread applet-com.sap.tc.webdynpro.ace.AcfApplet.class | id AEGB.TestAppView.Gantt1 | AcfApplet.traceInfos | traceLevel: "INFO"
    ACF | INFO | 13h49m23s250ms | # 4 | thread applet-com.sap.tc.webdynpro.ace.AcfApplet.class | id AEGB.TestAppView.Gantt1 | AcfApplet.traceInfos | clientSideMassDataCheck: "false"
    ACF | INFO | 13h49m23s250ms | # 4 | thread applet-com.sap.tc.webdynpro.ace.AcfApplet.class | id AEGB.TestAppView.Gantt1 | AcfApplet.traceInfos | DEBUG_PARAM: "null"
    ACF | INFO | 13h49m23s250ms | # 4 | thread applet-com.sap.tc.webdynpro.ace.AcfApplet.class | id AEGB.TestAppView.Gantt1 | AcfApplet.traceInfos | align: "null"
    ACF | INFO | 13h49m23s250ms | # 4 | thread applet-com.sap.tc.webdynpro.ace.AcfApplet.class | id AEGB.TestAppView.Gantt1 | AcfApplet.traceInfos | alt: "Due to browser or system restrictions, this active component (applet) cannot be installed, executed or displayed"
    ACF | INFO | 13h49m23s250ms | # 4 | thread applet-com.sap.tc.webdynpro.ace.AcfApplet.class | id AEGB.TestAppView.Gantt1 | AcfApplet.traceInfos | archive: "../../../../webdynpro/resources/sap.com/tc~wd~dispwda/global/activeComp/JNetAppPro.jar,../../../../webdynpro/resources/sap.com/tc~wd~dispwda/global/activeComp/com_sap_tc_webdynpro_networkN.jar,../../../../webdynpro/resources/sap.com/tc~wd~dispwda/global/activeComp/JNetAppGantt.jar,../../../../webdynpro/resources/sap.com/tc~wd~dispwda/global/activeComp/com_sap_tc_plaf_ur_themes.jar"
    ACF | INFO | 13h49m23s250ms | # 4 | thread applet-com.sap.tc.webdynpro.ace.AcfApplet.class | id AEGB.TestAppView.Gantt1 | AcfApplet.traceInfos | code: "null"
    ACF | INFO | 13h49m23s250ms | # 4 | thread applet-com.sap.tc.webdynpro.ace.AcfApplet.class | id AEGB.TestAppView.Gantt1 | AcfApplet.traceInfos | codeBase: "./"
    ACF | INFO | 13h49m23s250ms | # 4 | thread applet-com.sap.tc.webdynpro.ace.AcfApplet.class | id AEGB.TestAppView.Gantt1 | AcfApplet.traceInfos | height: "600"
    ACF | INFO | 13h49m23s250ms | # 4 | thread applet-com.sap.tc.webdynpro.ace.AcfApplet.class | id AEGB.TestAppView.Gantt1 | AcfApplet.traceInfos | hspace: "null"
    ACF | INFO | 13h49m23s250ms | # 4 | thread applet-com.sap.tc.webdynpro.ace.AcfApplet.class | id AEGB.TestAppView.Gantt1 | AcfApplet.traceInfos | legacy_lifecycle: "null"
    ACF | INFO | 13h49m23s250ms | # 4 | thread applet-com.sap.tc.webdynpro.ace.AcfApplet.class | id AEGB.TestAppView.Gantt1 | AcfApplet.traceInfos | mayscript: "true"
    ACF | INFO | 13h49m23s250ms | # 4 | thread applet-com.sap.tc.webdynpro.ace.AcfApplet.class | id AEGB.TestAppView.Gantt1 | AcfApplet.traceInfos | name: "AEGB.TestAppView.Gantt1"
    ACF | INFO | 13h49m23s250ms | # 4 | thread applet-com.sap.tc.webdynpro.ace.AcfApplet.class | id AEGB.TestAppView.Gantt1 | AcfApplet.traceInfos | scriptable: "null"
    ACF | INFO | 13h49m23s250ms | # 4 | thread applet-com.sap.tc.webdynpro.ace.AcfApplet.class | id AEGB.TestAppView.Gantt1 | AcfApplet.traceInfos | type: "application/x-java-applet;jpi-version=1.4.1"
    ACF | INFO | 13h49m23s250ms | # 4 | thread applet-com.sap.tc.webdynpro.ace.AcfApplet.class | id AEGB.TestAppView.Gantt1 | AcfApplet.traceInfos | vspace: "null"
    ACF | INFO | 13h49m23s250ms | # 4 | thread applet-com.sap.tc.webdynpro.ace.AcfApplet.class | id AEGB.TestAppView.Gantt1 | AcfApplet.traceInfos | width: "1424"
    ACF | INFO | 13h49m23s250ms | # 4 | thread applet-com.sap.tc.webdynpro.ace.AcfApplet.class | id AEGB.TestAppView.Gantt1 | AcfApplet.traceInfos | ACF impl version = "7.1003.20071010221049.0000"
    ACF | INFO | 13h49m23s250ms | # 4 | thread applet-com.sap.tc.webdynpro.ace.AcfApplet.class | id AEGB.TestAppView.Gantt1 | AcfApplet.traceInfos | ACF initialized, instance: #4
    ACF | INFO | 13h49m23s250ms | # 4 | thread applet-com.sap.tc.webdynpro.ace.AcfApplet.class | id AEGB.TestAppView.Gantt1 | AcfApplet.traceInfos | classloader: sun.plugin.security.PluginClassLoader@a7dd39
    ACF | INFO | 13h49m23s250ms | # 4 | thread applet-com.sap.tc.webdynpro.ace.AcfApplet.class | id AEGB.TestAppView.Gantt1 | AcfApplet.traceInfos | document base: http://odwxpws1:50000/webdynpro/dispatcher/local/_webdynpro_test_gantt/Test1?SAPtestId=21&sap-wd-clienttrace=3
    ACF | INFO | 13h49m23s250ms | # 4 | thread applet-com.sap.tc.webdynpro.ace.AcfApplet.class | id AEGB.TestAppView.Gantt1 | AcfApplet.traceInfos | code base (call): http://odwxpws1:50000/webdynpro/dispatcher/local/_webdynpro_test_gantt/
    ACF | INFO | 13h49m23s250ms | # 4 | thread applet-com.sap.tc.webdynpro.ace.AcfApplet.class | id AEGB.TestAppView.Gantt1 | AcfApplet.traceInfos | could not read manifest: AccessControlException caught: access denied (java.lang.RuntimePermission getProtectionDomain)
    ACF | INFO | 13h49m23s250ms | # 4 | thread applet-com.sap.tc.webdynpro.ace.AcfApplet.class | id AEGB.TestAppView.Gantt1 | AcfApplet.init | can not override dom and sax version
    ACF | INFO | 13h49m23s250ms | # 4 | thread applet-com.sap.tc.webdynpro.ace.AcfApplet.class | id AEGB.TestAppView.Gantt1 | AcfApplet.init | createNewDelegate
    ACF 7.1000.0.80
    ACF | INFO | 13h49m23s312ms | # 4 | thread applet-com.sap.tc.webdynpro.ace.AcfApplet.class | id AEGB.TestAppView.Gantt1 | Acf2Delegate.checkSource | AccessControlException caught, can not check source, ACF is probably unsigned: access denied (java.lang.RuntimePermission getProtectionDomain)
    ACF | INFO | 13h49m23s312ms | # 4 | thread applet-com.sap.tc.webdynpro.ace.AcfApplet.class | id AEGB.TestAppView.Gantt1 | GanttDelegateWrapper.getDelegate | calling JGanttApplet constructor, tracelevel: 3
    JNet 1.1034.7286
    Built on:
      Date: 13-Oct-2007 19:14:02
      Host: pwdfm193
      VM: Java HotSpot(TM) Client VM 1.4.2_14-b05 (Sun Microsystems Inc.)
      P4 Server: perforce3002.wdf.sap.corp:3002
      Changelist: 459598
      DC Release: 7.10
      Make Release: 710_VAL_REL
    Built with:
      Source Version: 1034
      Changelist: $Change: 459598 $
      Revision: $Revision: #10 $
      From: $DateTime: 2007/08/28 01:12:01 $
    Running on:
      ACF=true
      os.name = 'Windows XP'
      os.version = '5.1'
      java.vendor = 'Sun Microsystems Inc.'
      java.vm.name = 'Java HotSpot(TM) Client VM'
      java.vm.version = '1.5.0_15-b04'
      java.vm.vendor = 'Sun Microsystems Inc.'
      path.separator = ';'
      file.separator = '\'
      freeMem : 3959688
      totlMem : 17473536
      Rng Mode: Applet=false, Bean=false, Interactive=false
    ACF | INFO | 13h49m23s390ms | # 4 | thread applet-com.sap.tc.webdynpro.ace.AcfApplet.class | id AEGB.TestAppView.Gantt1 | DelegateAppletStub.constructor | no debug object present
    ACF | INFO | 13h49m23s406ms | # 4 | thread applet-com.sap.tc.webdynpro.ace.AcfApplet.class | id AEGB.TestAppView.Gantt1 | DelegateAppletStub.getParameter | parameter: postToAWT, value is null
    ACF | INFO | 13h49m23s406ms | # 4 | AWT-EventQueue-9 | id AEGB.TestAppView.Gantt1 | DelegateAppletStub.getParameter | parameter: DEBUG_PARAM, value is null
    ACF | INFO | 13h49m23s406ms | # 4 | AWT-EventQueue-9 | id AEGB.TestAppView.Gantt1 | DelegateAppletStub.getParameter | parameter: TRACELEVEL, value: "3"
    ACF | INFO | 13h49m23s406ms | # 4 | AWT-EventQueue-9 | id AEGB.TestAppView.Gantt1 | DelegateAppletStub.getParameter | parameter: TRACELEVEL, value: "3"
    ACF | INFO | 13h49m23s406ms | # 4 | AWT-EventQueue-9 | id AEGB.TestAppView.Gantt1 | DelegateAppletStub.getParameter | parameter: SERVER_URL, value is null
    ACF | INFO | 13h49m23s406ms | # 4 | AWT-EventQueue-9 | id AEGB.TestAppView.Gantt1 | DelegateAppletStub.getParameter | parameter: SERVER, value is null
    ACF | INFO | 13h49m23s406ms | # 4 | AWT-EventQueue-9 | id AEGB.TestAppView.Gantt1 | DelegateAppletStub.getParameter | parameter: SERVER_HOST, value is null
    ACF | INFO | 13h49m23s406ms | # 4 | AWT-EventQueue-9 | id AEGB.TestAppView.Gantt1 | DelegateAppletStub.getParameter | parameter: SERVER_PROTOCOL, value is null
    ACF | INFO | 13h49m23s406ms | # 4 | AWT-EventQueue-9 | id AEGB.TestAppView.Gantt1 | DelegateAppletStub.getParameter | parameter: SERVER_PORT, value is null
    ACF | INFO | 13h49m23s406ms | # 4 | AWT-EventQueue-9 | id AEGB.TestAppView.Gantt1 | DelegateAppletStub.getParameter | parameter: SERVER_PATH, value is null
    ACF | INFO | 13h49m23s406ms | # 4 | AWT-EventQueue-9 | id AEGB.TestAppView.Gantt1 | DelegateAppletStub.getParameter | parameter: SERVER_ENCODING, value is null
    ACF | INFO | 13h49m23s406ms | # 4 | AWT-EventQueue-9 | id AEGB.TestAppView.Gantt1 | DelegateAppletStub.getParameter | parameter: SERVER_SESSION_ID_METHOD, value is null
    ACF | INFO | 13h49m23s406ms | # 4 | AWT-EventQueue-9 | id AEGB.TestAppView.Gantt1 | DelegateAppletStub.getParameter | parameter: SERVER_RESERVED1, value is null
    ACF | INFO | 13h49m23s406ms | # 4 | AWT-EventQueue-9 | id AEGB.TestAppView.Gantt1 | DelegateAppletStub.getParameter | parameter: SERVER_RESERVED2, value is null
    ACF | INFO | 13h49m23s406ms | # 4 | AWT-EventQueue-9 | id AEGB.TestAppView.Gantt1 | DelegateAppletStub.getParameter | parameter: INPUT_ENCODING, value is null
    ACF | INFO | 13h49m23s406ms | # 4 | AWT-EventQueue-9 | id AEGB.TestAppView.Gantt1 | DelegateAppletStub.getParameter | parameter: OUTPUT_ENCODING, value is null
    ACF | INFO | 13h49m23s406ms | # 4 | AWT-EventQueue-9 | id AEGB.TestAppView.Gantt1 | DelegateAppletStub.getParameter | parameter: DATA, value is null
    ACF | INFO | 13h49m23s406ms | # 4 | AWT-EventQueue-9 | id AEGB.TestAppView.Gantt1 | DelegateAppletStub.getParameter | parameter: DATA_TYPEREPOSITORY, value is null
    ACF | INFO | 13h49m23s406ms | # 4 | AWT-EventQueue-9 | id AEGB.TestAppView.Gantt1 | DelegateAppletStub.getParameter | parameter: DATA_APPLICATION, value is null
    ACF | INFO | 13h49m23s406ms | # 4 | AWT-EventQueue-9 | id AEGB.TestAppView.Gantt1 | DelegateAppletStub.getParameter | parameter: DATA_USERINTERFACE, value is null
    ACF | INFO | 13h49m23s406ms | # 4 | AWT-EventQueue-9 | id AEGB.TestAppView.Gantt1 | DelegateAppletStub.getParameter | parameter: DATA_GRAPH, value is null
    ACF | INFO | 13h49m23s406ms | # 4 | AWT-EventQueue-9 | id AEGB.TestAppView.Gantt1 | DelegateAppletStub.getParameter | parameter: LOADGUID, value is null
    ACF | INFO | 13h49m23s406ms | # 4 | AWT-EventQueue-9 | id AEGB.TestAppView.Gantt1 | DelegateAppletStub.getParameter | parameter: STOREINITIALDATA, value is null
    ACF | INFO | 13h49m23s406ms | # 4 | AWT-EventQueue-9 | id AEGB.TestAppView.Gantt1 | DelegateAppletStub.getParameter | parameter: FN_TMP, value is null
    ACF | INFO | 13h49m23s406ms | # 4 | AWT-EventQueue-9 | id AEGB.TestAppView.Gantt1 | DelegateAppletStub.getParameter | parameter: FN_HTML, value is null
    ACF | INFO | 13h49m23s406ms | # 4 | AWT-EventQueue-9 | id AEGB.TestAppView.Gantt1 | DelegateAppletStub.getParameter | parameter: APPNAME, value is null
    ACF | INFO | 13h49m23s406ms | # 4 | AWT-EventQueue-9 | id AEGB.TestAppView.Gantt1 | DelegateAppletStub.getParameter | parameter: JS_EVENT_HANDLER, value is null
    ACF | INFO | 13h49m23s406ms | # 4 | AWT-EventQueue-9 | id AEGB.TestAppView.Gantt1 | DelegateAppletStub.getParameter | parameter: FRAME, value is null
    ACF | INFO | 13h49m23s406ms | # 4 | AWT-EventQueue-9 | id AEGB.TestAppView.Gantt1 | DelegateAppletStub.getParameter | parameter: JS_EVENTS, value is null
    ACF | INFO | 13h49m23s406ms | # 4 | AWT-EventQueue-9 | id AEGB.TestAppView.Gantt1 | DelegateAppletStub.getParameter | parameter: JAVA_EVENTS, value: "*"
    ACF | INFO | 13h49m23s406ms | # 4 | AWT-EventQueue-9 | id AEGB.TestAppView.Gantt1 | DelegateAppletStub.getParameter | parameter: JAVA_EVENTS, value: "*"
    ACF | INFO | 13h49m23s406ms | # 4 | AWT-EventQueue-9 | id AEGB.TestAppView.Gantt1 | DelegateAppletStub.getParameter | parameter: HTTP_EVENTS, value is null
    ACF | INFO | 13h49m23s406ms | # 4 | AWT-EventQueue-9 | id AEGB.TestAppView.Gantt1 | DelegateAppletStub.getParameter | parameter: IGS_HOST, value is null
    ACF | INFO | 13h49m23s421ms | # 4 | AWT-EventQueue-9 | id AEGB.TestAppView.Gantt1 | DelegateAppletStub.getParameter | parameter: IGS_PORT, value is null
    ACF | INFO | 13h49m23s421ms | # 4 | AWT-EventQueue-9 | id AEGB.TestAppView.Gantt1 | DelegateAppletStub.getParameter | parameter: LOOK_AND_FEEL, value: "UR_tradeshow"
    ACF | INFO | 13h49m23s421ms | # 4 | AWT-EventQueue-9 | id AEGB.TestAppView.Gantt1 | DelegateAppletStub.getParameter | parameter: LOOK_AND_FEEL, value: "UR_tradeshow"
    ACF | INFO | 13h49m23s421ms | # 4 | AWT-EventQueue-9 | id AEGB.TestAppView.Gantt1 | DelegateAppletStub.getParameter | parameter: LOCALE_LANGUAGE, value: "en"
    ACF | INFO | 13h49m23s421ms | # 4 | AWT-EventQueue-9 | id AEGB.TestAppView.Gantt1 | DelegateAppletStub.getParameter | parameter: LOCALE_LANGUAGE, value: "en"
    ACF | INFO | 13h49m23s421ms | # 4 | AWT-EventQueue-9 | id AEGB.TestAppView.Gantt1 | DelegateAppletStub.getParameter | parameter: LOCALE_COUNTRY, value is null
    ACF | INFO | 13h49m23s421ms | # 4 | AWT-EventQueue-9 | id AEGB.TestAppView.Gantt1 | DelegateAppletStub.getParameter | parameter: LOCALE_VARIANT, value is null
    ACF | INFO | 13h49m23s421ms | # 4 | AWT-EventQueue-9 | id AEGB.TestAppView.Gantt1 | DelegateAppletStub.getParameter | parameter: NO_JS, value: "X"
    ACF | INFO | 13h49m23s421ms | # 4 | AWT-EventQueue-9 | id AEGB.TestAppView.Gantt1 | DelegateAppletStub.getParameter | parameter: NO_JS, value: "X"
    ACF | INFO | 13h49m23s421ms | # 4 | AWT-EventQueue-9 | id AEGB.TestAppView.Gantt1 | DelegateAppletStub.getParameter | parameter: SERVLET_MODE, value is null
    ACF | INFO | 13h49m23s421ms | # 4 | AWT-EventQueue-9 | id AEGB.TestAppView.Gantt1 | DelegateAppletStub.getParameter | parameter: IMAGE_FORMAT, value is null
    ACF | INFO | 13h49m23s421ms | # 4 | AWT-EventQueue-9 | id AEGB.TestAppView.Gantt1 | DelegateAppletStub.getParameter | parameter: IMAGE_FILENAME, value is null
    ACF | INFO | 13h49m23s421ms | # 4 | AWT-EventQueue-9 | id AEGB.TestAppView.Gantt1 | DelegateAppletStub.getParameter | parameter: IMAGE_PROPERTIES, value is null
    ACF | INFO | 13h49m23s421ms | # 4 | AWT-EventQueue-9 | id AEGB.TestAppView.Gantt1 | DelegateAppletStub.getParameter | parameter: SERVLET_DOCBASE, value is null
    ACF | INFO | 13h49m23s421ms | # 4 | AWT-EventQueue-9 | id AEGB.TestAppView.Gantt1 | DelegateAppletStub.getParameter | parameter: APP_LOAD_LAST, value is null
    ACF | INFO | 13h49m23s421ms | # 4 | AWT-EventQueue-9 | id AEGB.TestAppView.Gantt1 | DelegateAppletStub.getParameter | parameter: PROPERTIES, value is null
    ACF | INFO | 13h49m23s421ms | # 4 | AWT-EventQueue-9 | id AEGB.TestAppView.Gantt1 | DelegateAppletStub.getParameter | parameter: IMAGEMAP_NAME, value is null
    ACF | INFO | 13h49m23s421ms | # 4 | AWT-EventQueue-9 | id AEGB.TestAppView.Gantt1 | DelegateAppletStub.getParameter | parameter: IMAGEMAP_HREF, value is null
    ACF | INFO | 13h49m23s421ms | # 4 | AWT-EventQueue-9 | id AEGB.TestAppView.Gantt1 | DelegateAppletStub.getParameter | parameter: IMAGEMAP_TARGET, value is null
    ACF | INFO | 13h49m23s421ms | # 4 | AWT-EventQueue-9 | id AEGB.TestAppView.Gantt1 | DelegateAppletStub.getParameter | parameter: IMAGEMAP_ALT, value is null
    ACF | INFO | 13h49m23s421ms | # 4 | AWT-EventQueue-9 | id AEGB.TestAppView.Gantt1 | DelegateAppletStub.getParameter | parameter: MODEL_DIRTY_EVENTS, value is null
    ACF | INFO | 13h49m23s421ms | # 4 | AWT-EventQueue-9 | id AEGB.TestAppView.Gantt1 | DelegateAppletStub.getParameter | parameter: RAW_DATA, value is null
    ACF | INFO | 13h49m23s421ms | # 4 | AWT-EventQueue-9 | id AEGB.TestAppView.Gantt1 | DelegateAppletStub.getParameter | parameter: CLIPBOARD_POLICY, value is null
    ACF | INFO | 13h49m23s421ms | # 4 | AWT-EventQueue-9 | id AEGB.TestAppView.Gantt1 | DelegateAppletStub.getParameter | parameter: WAIT_FOR_DATA, value: "TRUE"
    ACF | INFO | 13h49m23s421ms | # 4 | AWT-EventQueue-9 | id AEGB.TestAppView.Gantt1 | DelegateAppletStub.getParameter | parameter: WAIT_FOR_DATA, value: "TRUE"
    ACF | INFO | 13h49m23s421ms | # 4 | AWT-EventQueue-9 | id AEGB.TestAppView.Gantt1 | DelegateAppletStub.getParameter | parameter: STRICT_TYPE_RETRIEVAL, value is null
    ACF | INFO | 13h49m23s421ms | # 4 | AWT-EventQueue-9 | id AEGB.TestAppView.Gantt1 | DelegateAppletStub.getParameter | parameter: REPLY_MODE, value is null
    ACF | INFO | 13h49m23s421ms | # 4 | AWT-EventQueue-9 | id AEGB.TestAppView.Gantt1 | DelegateAppletStub.getParameter | parameter: SAVE_POLICY, value: "SEND_EVENT"
    ACF | INFO | 13h49m23s421ms | # 4 | AWT-EventQueue-9 | id AEGB.TestAppView.Gantt1 | DelegateAppletStub.getParameter | parameter: SAVE_POLICY, value: "SEND_EVENT"
    ACF | INFO | 13h49m23s421ms | # 4 | AWT-EventQueue-9 | id AEGB.TestAppView.Gantt1 | DelegateAppletStub.getParameter | parameter: XML_OUTPUT_PROPERTIES, value is null
    ACF | INFO | 13h49m23s421ms | # 4 | AWT-EventQueue-9 | id AEGB.TestAppView.Gantt1 | DelegateAppletStub.getParameter | parameter: TIMEOUT_WAIT_COMMAND_RESULT, value is null
    ACF | INFO | 13h49m23s421ms | # 4 | AWT-EventQueue-9 | id AEGB.TestAppView.Gantt1 | DelegateAppletStub.getParameter | parameter: INPUT_COMPRESSION, value is null
    ACF | INFO | 13h49m23s421ms | # 4 | AWT-EventQueue-9 | id AEGB.TestAppView.Gantt1 | DelegateAppletStub.getParameter | parameter: OUTPUT_COMPRESSION, value is null
    ACF | INFO | 13h49m23s421ms | # 4 | AWT-EventQueue-9 | id AEGB.TestAppView.Gantt1 | DelegateAppletStub.getParameter | parameter: RESOURCE_POLICY, value is null
    ACF | INFO | 13h49m23s421ms | # 4 | AWT-EventQueue-9 | id AEGB.TestAppView.Gantt1 | DelegateAppletStub.getParameter | parameter: INPUT_MONITORING, value is null
    ACF | INFO | 13h49m23s421ms | # 4 | AWT-EventQueue-9 | id AEGB.TestAppView.Gantt1 | DelegateAppletStub.getParameter | parameter: EVENT_QING, value is null
    ACF | INFO | 13h49m23s421ms | # 4 | AWT-EventQueue-9 | id AEGB.TestAppView.Gantt1 | DelegateAppletStub.getParameter | parameter: LAYOUTER_THREAD, value is null
    ACF | INFO | 13h49m23s421ms | # 4 | AWT-EventQueue-9 | id AEGB.TestAppView.Gantt1 | DelegateAppletStub.getParameter | parameter: TIMEOUT_DOUBLECLICK, value: "500"
    ACF | INFO | 13h49m23s421ms | # 4 | AWT-EventQueue-9 | id AEGB.TestAppView.Gantt1 | DelegateAppletStub.getParameter | parameter: TIMEOUT_DOUBLECLICK, value: "500"
    ACF | INFO | 13h49m23s421ms | # 4 | AWT-EventQueue-9 | id AEGB.TestAppView.Gantt1 | DelegateAppletStub.getParameter | parameter: SESSION_ID, value is null
    ACF | INFO | 13h49m23s421ms | # 4 | AWT-EventQueue-9 | id AEGB.TestAppView.Gantt1 | DelegateAppletStub.getParameter | parameter: RENDERING_HINTS, value is null
    With Permissions:
      [SYSTEM_PROPERTIES]=false
      [JAVA_RUNTIME]=false
      [LOCAL_FILES]=false
      [NET]=false
    ACF | INFO | 13h49m23s421ms | # 4 | AWT-EventQueue-9 | id AEGB.TestAppView.Gantt1 | DelegateAppletStub.getCodeBase | base url not set yet, return original code base: http://odwxpws1:50000/webdynpro/dispatcher/local/_webdynpro_test_gantt/
      [SOCKETS]=false
      [AWT]=false
      [CLIPBOARD]=false
      [SERVER_SAVE]=false
      [DOM_BUILDER]=true
    Using parameters:
    ACF | INFO | 13h49m23s421ms | # 4 | AWT-EventQueue-9 | id AEGB.TestAppView.Gantt1 | DelegateAppletStub.getParameter | parameter: DEBUG_PARAM, value is null
    ACF | INFO | 13h49m23s421ms | # 4 | AWT-EventQueue-9 | id AEGB.TestAppView.Gantt1 | DelegateAppletStub.getParameter | parameter: debug_param, value is null
       0: DEBUG_PARAM = ''
       1:*TRACELEVEL = '3'
    ACF | INFO | 13h49m23s421ms | # 4 | AWT-EventQueue-9 | id AEGB.TestAppView.Gantt1 | DelegateAppletStub.getParameter | parameter: SERVER_URL, value is null
    ACF | INFO | 13h49m23s421ms | # 4 | AWT-EventQueue-9 | id AEGB.TestAppView.Gantt1 | DelegateAppletStub.getParameter | parameter: server_url, value is null
       2: SERVER_URL = ''
    ACF | INFO | 13h49m23s421ms | # 4 | AWT-EventQueue-9 | id AEGB.TestAppView.Gantt1 | DelegateAppletStub.getParameter | parameter: SERVER, value is null
    ACF | INFO | 13h49m23s421ms | # 4 | AWT-EventQueue-9 | id AEGB.TestAppView.Gantt1 | DelegateAppletStub.getParameter | parameter: server, value is null
       3: SERVER = 'cgi-bin/jnet-cgi.exe'
    ACF | INFO | 13h49m23s421ms | # 4 | AWT-EventQueue-9 | id AEGB.TestAppView.Gantt1 | DelegateAppletStub.getParameter | parameter: SERVER_HOST, value is null
    ACF | INFO | 13h49m23s421ms | # 4 | AWT-EventQueue-9 | id AEGB.TestAppView.Gantt1 | DelegateAppletStub.getParameter | parameter: server_host, value is null
       4: SERVER_HOST = ''
    ACF | INFO | 13h49m23s421ms | # 4 | AWT-EventQueue-9 | id AEGB.TestAppView.Gantt1 | DelegateAppletStub.getParameter | parameter: SERVER_PROTOCOL, value is null
    ACF | INFO | 13h49m23s421ms | # 4 | AWT-EventQueue-9 | id AEGB.TestAppView.Gantt1 | DelegateAppletStub.getParameter | parameter: server_protocol, value is null
       5: SERVER_PROTOCOL = ''
    ACF | INFO | 13h49m23s421ms | # 4 | AWT-EventQueue-9 | id AEGB.TestAppView.Gantt1 | DelegateAppletStub.getParameter | parameter: SERVER_PORT, value is null
    ACF | INFO | 13h49m23s421ms | # 4 | AWT-EventQueue-9 | id AEGB.TestAppView.Gantt1 | DelegateAppletStub.getParameter | parameter: server_port, value is null
       6: SERVER_PORT = ''
    ACF | INFO | 13h49m23s421ms | # 4 | AWT-EventQueue-9 | id AEGB.TestAppView.Gantt1 | DelegateAppletStub.getParameter | parameter: SERVER_PATH, value is null
    ACF | INFO | 13h49m23s421ms | # 4 | AWT-EventQueue-9 | id AEGB.TestAppView.Gantt1 | DelegateAppletStub.getParameter | parameter: server_path, value is null
       7: SERVER_PATH = ''
    ACF | INFO | 13h49m23s421ms | # 4 | AWT-EventQueue-9 | id AEGB.TestAppView.Gantt1 | DelegateAppletStub.getParameter | parameter: SERVER_ENCODING, value is null
    ACF | INFO | 13h49m23s421ms | # 4 | AWT-EventQueue-9 | id AEGB.TestAppView.Gantt1 | DelegateAppletStub.getParameter | parameter: server_encoding, value is null
       8: SERVER_ENCODING = 'UTF-8'
    ACF | INFO | 13h49m23s421ms | # 4 | AWT-EventQueue-9 | id AEGB.TestAppView.Gantt1 | DelegateAppletStub.getParameter | parameter: SERVER_SESSION_ID_METHOD, value is null
    ACF | INFO | 13h49m23s421ms | # 4 | AWT-EventQueue-9 | id AEGB.TestAppView.Gantt1 | DelegateAppletStub.getParameter | parameter: server_session_id_method, value is null
       9: SERVER_SESSION_ID_METHOD = 'URL'
    ACF | INFO | 13h49m23s421ms | # 4 | AWT-EventQueue-9 | id AEGB.TestAppView.Gantt1 | DelegateAppletStub.getParameter | parameter: SERVER_RESERVED1, value is null
    ACF | INFO | 13h49m23s421ms | # 4 | AWT-EventQueue-9 | id AEGB.TestAppView.Gantt1 | DelegateAppletStub.getParameter | parameter: server_reserved1, value is null
      10: SERVER_RESERVED1 = ''
    ACF | INFO | 13h49m23s421ms | # 4 | AWT-EventQueue-9 | id AEGB.TestAppView.Gantt1 | DelegateAppletStub.getParameter | parameter: SERVER_RESERVED2, value is null
    ACF | INFO | 13h49m23s421ms | # 4 | AWT-EventQueue-9 | id AEGB.TestAppView.Gantt1 | DelegateAppletStub.getParameter | parameter: server_reserved2, value is null
      11: SERVER_RESERVED2 = ''
    ACF | INFO | 13h49m23s421ms | # 4 | AWT-EventQueue-9 | id AEGB.TestAppView.Gantt1 | DelegateAppletStub.getParameter | parameter: INPUT_ENCODING, value is null
    ACF | INFO | 13h49m23s421ms | # 4 | AWT-EventQueue-9 | id AEGB.TestAppView.Gantt1 | DelegateAppletStub.getParameter | parameter: input_encoding, value is null
      12: INPUT_ENCODING = 'UTF-8'
    ACF | INFO | 13h49m23s421ms | # 4 | AWT-EventQueue-9 | id AEGB.TestAppView.Gantt1 | DelegateAppletStub.getParameter | parameter: OUTPUT_ENCODING, value is null
    ACF | INFO | 13h49m23s421ms | # 4 | AWT-EventQueue-9 | id AEGB.TestAppView.Gantt1 | DelegateAppletStub.getParameter | parameter: output_encoding, value is null
      13: OUTPUT_ENCODING = 'UTF-8'
    ACF | INFO | 13h49m23s421ms | # 4 | AWT-EventQueue-9 | id AEGB.TestAppView.Gantt1 | DelegateAppletStub.getParameter | parameter: DATA, value is null
    ACF | INFO | 13h49m23s421ms | # 4 | AWT-EventQueue-9 | id AEGB.TestAppView.Gantt1 | DelegateAppletStub.getParameter | parameter: data, value is null
      14: DATA = ''
    ACF | INFO | 13h49m23s421ms | # 4 | AWT-EventQueue-9 | id AEGB.TestAppView.Gantt1 | DelegateAppletStub.getParameter | parameter: DATA_TYPEREPOSITORY, value is null
    ACF | INFO | 13h49m23s421ms | # 4 | AWT-EventQueue-9 | id AEGB.TestAppView.Gantt1 | DelegateAppletStub.getParameter | parameter: data_typerepository, value is null
      15: DATA_TYPEREPOSITORY = ''
    ACF | INFO | 13h49m23s421ms | # 4 | AWT-EventQueue-9 | id AEGB.TestAppView.Gantt1 | DelegateAppletStub.getParameter | parameter: DATA_APPLICATION, value is null
    ACF | INFO | 13h49m23s421ms | # 4 | AWT-EventQueue-9 | id AEGB.TestAppView.Gantt1 | DelegateAppletStub.getParameter | parameter: data_application, value is null
      16: DATA_APPLICATION = ''
    ACF | INFO | 13h49m23s421ms | # 4 | AWT-EventQueue-9 | id AEGB.TestAppView.Gantt1 | DelegateAppletStub.getParameter | parameter: DATA_USERINTERFACE, value is null
    ACF | INFO | 13h49m23s421ms | # 4 | AWT-EventQueue-9 | id AEGB.TestAppView.Gantt1 | DelegateAppletStub.getParameter | parameter: data_userinterface, value is null
      17: DATA_USERINTERFACE = ''
    ACF | INFO | 13h49m23s421ms | # 4 | AWT-EventQueue-9 | id AEGB.TestAppView.Gantt1 | DelegateAppletStub.getParameter | parameter: DATA_GRAPH, value is null
    ACF | INFO | 13h49m23s421ms | # 4 | AWT-EventQueue-9 | id AEGB.TestAppView.Gantt1 | DelegateAppletStub.getParameter | parameter: data_graph, value is null
      18: DATA_GRAPH = ''
    ACF | INFO | 13h49m23s421ms | # 4 | AWT-EventQueue-9 | id AEGB.TestAppView.Gantt1 | DelegateAppletStub.getParameter | parameter: LOADGUID, value is null
    ACF | INFO | 13h49m23s421ms | # 4 | AWT-EventQueue-9 | id AEGB.TestAppView.Gantt1 | DelegateAppletStub.getParameter | parameter: loadguid, value is null
      19: LOADGUID = ''
    ACF | INFO | 13h49m23s421ms | # 4 | AWT-EventQueue-9 | id AEGB.TestAppView.Gantt1 | DelegateAppletStub.getParameter | parameter: STOREINITIALDATA, value is null
    ACF | INFO | 13h49m23s421ms | # 4 | AWT-EventQueue-9 | id AEGB.TestAppView.Gantt1 | DelegateAppletStub.getParameter | parameter: storeinitialdata, value is null
      20: STOREINITIALDATA = 'false'
    ACF | INFO | 13h49m23s421ms | # 4 | AWT-EventQueue-9 | id AEGB.TestAppView.Gantt1 | DelegateAppletStub.getParameter | parameter: FN_TMP, value is null
    ACF | INFO | 13h49m23s421ms | # 4 | AWT-EventQueue-9 | id AEGB.TestAppView.Gantt1 | DelegateAppletStub.getParameter | parameter: fn_tmp, value is null
      21: FN_TMP = ''
    ACF | INFO | 13h49m23s421ms | # 4 | AWT-EventQueue-9 | id AEGB.TestAppView.Gantt1 | DelegateAppletStub.getParameter | parameter: FN_HTML, value is null
    ACF | INFO | 13h49m23s421ms | # 4 | AWT-EventQueue-9 | id AEGB.TestAppView.Gantt1 | DelegateAppletStub.getParameter | parameter: fn_html, value is null
      22: FN_HTML = ''
    ACF | INFO | 13h49m23s421ms | # 4 | AWT-EventQueue-9 | id AEGB.TestAppView.Gantt1 | DelegateAppletStub.getParameter | parameter: APPNAME, value is null
    ACF | INFO | 13h49m23s437ms | # 4 | AWT-EventQueue-9 | id AEGB.TestAppView.Gantt1 | DelegateAppletStub.getParameter | parameter: appname, value is null
      23: APPNAME = 'JNET'
    ACF | INFO | 13h49m23s437ms | # 4 | AWT-EventQueue-9 | id AEGB.TestAppView.Gantt1 | DelegateAppletStub.getParameter | parameter: JS_EVENT_HANDLER, value is null
    ACF | INFO | 13h49m23s437ms | # 4 | AWT-EventQueue-9 | id AEGB.TestAppView.Gantt1 | DelegateAppletStub.getParameter | parameter: js_event_handler, value is null
      24: JS_EVENT_HANDLER = 'jnetEvent'
    ACF | INFO | 13h49m23s437ms | # 4 | AWT-EventQueue-9 | id AEGB.TestAppView.Gantt1 | DelegateAppletStub.getParameter | parameter: FRAME, value is null
    ACF | INFO | 13h49m23s437ms | # 4 | AWT-EventQueue-9 | id AEGB.TestAppView.Gantt1 | DelegateAppletStub.getParameter | parameter: frame, value is null
      25: FRAME = '800,600'
    ACF | INFO | 13h49m23s437ms | # 4 | AWT-EventQueue-9 | id AEGB.TestAppView.Gantt1 | DelegateAppletStub.getParameter | parameter: JS_EVENTS, value is null
    ACF | INFO | 13h49m23s437ms | # 4 | AWT-EventQueue-9 | id AEGB.TestAppView.Gantt1 | DelegateAppletStub.getParameter | parameter: js_events, value is null
      26: JS_EVENTS = 'JNET_INITIALIZED,TRACELEVEL_CHANGED,NODE_DOUBLE_CLICKED'
      27:*JAVA_EVENTS = '*'
    ACF | INFO | 13h49m23s437ms | # 4 | AWT-EventQueue-9 | id AEGB.TestAppView.Gantt1 | DelegateAppletStub.getParameter | parameter: HTTP_EVENTS, value is null
    ACF | INFO | 13h49m23s437ms | # 4 | AWT-EventQueue-9 | id AEGB.TestAppView.Gantt1 | DelegateAppletStub.getParameter | parameter: http_events, value is null
      28: HTTP_EVENTS = ''
    ACF | INFO | 13h49m23s437ms | # 4 | AWT-EventQueue-9 | id AEGB.TestAppView.Gantt1 | DelegateAppletStub.getParameter | parameter: IGS_HOST, value is null
    ACF | INFO | 13h49m23s437ms | # 4 | AWT-EventQueue-9 | id AEGB.TestAppView.Gantt1 | DelegateAppletStub.getParameter | parameter: igs_host, value is null
      29: IGS_HOST = 'localhost'
    ACF | INFO | 13h49m23s437ms | # 4 | AWT-EventQueue-9 | id AEGB.TestAppView.Gantt1 | DelegateAppletStub.getParameter | parameter: IGS_PORT, value is null
    ACF | INFO | 13h49m23s437ms | # 4 | AWT-EventQueue-9 | id AEGB.TestAppView.Gantt1 | DelegateAppletStub.getParameter | parameter: igs_port, value is null
      30: IGS_PORT = '8030'
      31:*LOOK_AND_FEEL = 'UR_tradeshow'
      32:*LOCALE_LANGUAGE = 'en'
    ACF | INFO | 13h49m23s437ms | # 4 | AWT-EventQueue-9 | id AEGB.TestAppView.Gantt1 | DelegateAppletStub.getParameter | parameter: LOCALE_COUNTRY, value is null
    ACF | INFO | 13h49m23s437ms | # 4 | AWT-EventQueue-9 | id AEGB.TestAppView.Gantt1 | DelegateAppletStub.getParameter | parameter: locale_country, value is null
      33: LOCALE_COUNTRY = ''
    ACF | INFO | 13h49m23s437ms | # 4 | AWT-EventQueue-9 | id AEGB.TestAppView.Gantt1 | DelegateAppletStub.getParameter | parameter: LOCALE_VARIANT, value is null
    ACF | INFO | 13h49m23s437ms | # 4 | AWT-EventQueue-9 | id AEGB.TestAppView.Gantt1 | DelegateAppletStub.getParameter | parameter: locale_variant, value is null
      34: LOCALE_VARIANT = ''
      35:*NO_JS = 'X'
    ACF | INFO | 13h49m23s437ms | # 4 | AWT-EventQueue-9 | id AEGB.TestAppView.Gantt1 | DelegateAppletStub.getParameter | parameter: SERVLET_MODE, value is null
    ACF | INFO | 13h49m23s437ms | # 4 | AWT-EventQueue-9 | id AEGB.TestAppView.Gantt1 | DelegateAppletStub.getParameter | parameter: servlet_mode, value is null
      36: SERVLET_MODE = 'IMAGE'
    ACF | INFO | 13h49m23s437ms | # 4 | AWT-EventQueue-9 | id AEGB.TestAppView.Gantt1 | DelegateAppletStub.getParameter | parameter: IMAGE_FORMAT, value is null
    ACF | INFO | 13h49m23s437ms | # 4 | AWT-EventQueue-9 | id AEGB.TestAppView.Gantt1 | DelegateAppletStub.getParameter | parameter: image_format, value is null
      37: IMAGE_FORMAT = 'PNG'
    ACF | INFO | 13h49m23s437ms | # 4 | AWT-EventQueue-9 | id AEGB.TestAppView.Gantt1 | DelegateAppletStub.getParameter | parameter: IMAGE_FILENAME, value is null
    ACF | INFO | 13h49m23s437ms | # 4 | AWT-EventQueue-9 | id AEGB.TestAppView.Gantt1 | DelegateAppletStub.getParameter | parameter: image_filename, value is null
      38: IMAGE_FILENAME = ''
    ACF | INFO | 13h49m23s437ms | # 4 | AWT-EventQueue-9 | id AEGB.TestAppView.Gantt1 | DelegateAppletStub.getParameter | parameter: IMAGE_PROPERTIES, value is null
    ACF | INFO | 13h49m23s437ms | # 4 | AWT-EventQueue-9 | id AEGB.TestAppView.Gantt1 | DelegateAppletStub.getParameter | parameter: image_properties, value is null
      39: IMAGE_PROPERTIES = ''
    ACF | INFO | 13h49m23s437ms | # 4 | AWT-EventQueue-9 | id AEGB.TestAppView.Gantt1 | DelegateAppletStub.getParameter | parameter: SERVLET_DOCBASE, value is null
    ACF | INFO | 13h49m23s437ms | # 4 | AWT-EventQueue-9 | id AEGB.TestAppView.Gantt1 | DelegateAppletStub.getParameter | parameter: servlet_docbase, value is null
      40: SERVLET_DOCBASE = ''
    ACF | INFO | 13h49m23s437ms | # 4 | AWT-EventQueue-9 | id AEGB.TestAppView.Gantt1 | DelegateAppletStub.getParameter | parameter: APP_LOAD_LAST, value is null
    ACF | INFO | 13h49m23s437ms | # 4 | AWT-EventQueue-9 | id AEGB.TestAppView.Gantt1 | DelegateAppletStub.getParameter | parameter: app_load_last, value is null
      41: APP_LOAD_LAST = 'false'
    ACF | INFO | 13h49m23s437ms | # 4 | AWT-EventQueue-9 | id AEGB.TestAppView.Gantt1 | DelegateAppletStub.getParameter | parameter: PROPERTIES, value is null
    ACF | INFO | 13h49m23s437ms | # 4 | AWT-EventQueue-9 | id AEGB.TestAppView.Gantt1 | DelegateAppletStub.getParameter | parameter: properties, value is null
      42: PROPERTIES = ''
    ACF | INFO | 13h49m23s437ms | # 4 | AWT-EventQueue-9 | id AEGB.TestAppView.Gantt1 | DelegateAppletStub.getParameter | parameter: IMAGEMAP_NAME, value is null
    ACF | INFO | 13h49m23s437ms | # 4 | AWT-EventQueue-9 | id AEGB.TestAppView.Gantt1 | DelegateAppletStub.getParameter | parameter: imagemap_name, value is null
      43: IMAGEMAP_NAME = 'JNetImageMap'
    ACF | INFO | 13h49m23s437ms | # 4 | AWT-EventQueue-9 | id AEGB.TestAppView.Gantt1 | DelegateAppletStub.getParameter | parameter: IMAGEMAP_HREF, value is null
    ACF | INFO | 13h49m23s437ms | # 4 | AWT-EventQueue-9 | id AEGB.TestAppView.Gantt1 | DelegateAppletStub.getParameter | parameter: imagemap_href, value is null
      44: IMAGEMAP_HREF = ''
    ACF | INFO | 13h49m23s437ms | # 4 | AWT-EventQueue-9 | id AEGB.TestAppView.Gantt1 | DelegateAppletStub.getParameter | parameter: IMAGEMAP_TARGET, value is null
    ACF | INFO | 13h49m23s437ms | # 4 | AWT-EventQueue-9 | id AEGB.TestAppView.Gantt1 | DelegateAppletStub.getParameter | parameter: imagemap_target, value is null
      45: IMAGEMAP_TARGET = ''
    ACF | INFO | 13h49m23s437ms | # 4 | AWT-EventQueue-9 | id AEGB.TestAppView.Gantt1 | DelegateAppletStub.getParameter | parameter: IMAGEMAP_ALT, value is null
    ACF | INFO | 13h49m23s437ms | # 4 | AWT-EventQueue-9 | id AEGB.TestAppView.Gantt1 | DelegateAppletStub.getParameter | parameter: imagemap_alt, value is null
      46: IMAGEMAP_ALT = ''
    ACF | INFO | 13h49m23s437ms | # 4 | AWT-EventQueue-9 | id AEGB.TestAppView.Gantt1 | DelegateAppletStub.getParameter | parameter: MODEL_DIRTY_EVENTS, value is null
    ACF | INFO | 13h49m23s437ms | # 4 | AWT-EventQueue-9 | id AEGB.TestAppView.Gantt1 | DelegateAppletStub.getParameter | parameter: model_dirty_events, value is null
      47: MODEL_DIRTY_EVENTS = ''
    ACF | INFO | 13h49m23s437ms | # 4 | AWT-EventQueue-9 | id AEGB.TestAppView.Gantt1 | DelegateAppletStub.getParameter | parameter: RAW_DATA, value is null
    ACF | INFO | 13h49m23s437ms | # 4 | AWT-EventQueue-9 | id AEGB.TestAppView.Gantt1 | DelegateAppletStub.getParameter | parameter: raw_data, value is null
      48: RAW_DATA = ''
    ACF | INFO | 13h49m23s437ms | # 4 | AWT-EventQueue-9 | id AEGB.TestAppView.Gantt1 | DelegateAppletStub.getParameter | parameter: CLIPBOARD_POLICY, value is null
    ACF | INFO | 13h49m23s437ms | # 4 | AWT-EventQueue-9 | id AEGB.TestAppView.Gantt1 | DelegateAppletStub.getParameter | parameter: clipboard_policy, value is null
      49: CLIPBOARD_POLICY = 'STRICT'
      50:*WAIT_FOR_DATA = 'TRUE'
    ACF | INFO | 13h49m23s437ms | # 4 | AWT-EventQueue-9 | id AEGB.TestAppView.Gantt1 | DelegateAppletStub.getParameter | parameter: STRICT_TYPE_RETRIEVAL, value is null
    ACF | INFO | 13h49m23s437ms | # 4 | AWT-EventQueue-9 | id AEGB.TestAppView.Gantt1 | DelegateAppletStub.getParameter | parameter: strict_type_retrieval, value is null
      51: STRICT_TYPE_RETRIEVAL = 'FALSE'
    ACF | INFO | 13h49m23s437ms | # 4 | AWT-EventQueue-9 | id AEGB.TestAppView.Gantt1 | DelegateAppletStub.getParameter | parameter: REPLY_MODE, value is null
    ACF | INFO | 13h49m23s437ms | # 4 | AWT-EventQueue-9 | id AEGB.TestAppView.Gantt1 | DelegateAppletStub.getParameter | parameter: reply_mode, value is null
      52: REPLY_MODE = 'STRING'
      53:*SAVE_POLICY = 'SEND_EVENT'
    ACF | INFO | 13h49m23s437ms | # 4 | AWT-EventQueue-9 | id AEGB.TestAppView.Gantt1 | DelegateAppletStub.getParameter | parameter: XML_OUTPUT_PROPERTIES, value is null
    ACF | INFO | 13h49m23s437ms | # 4 | AWT-EventQueue-9 | id AEGB.TestAppView.Gantt1 | DelegateAppletStub.getParameter | parameter: xml_output_properties, value is null
      54: XML_OUTPUT_PROPERTIES = ''
    ACF | INFO | 13h49m23s437ms | # 4 | AWT-EventQueue-9 | id AEGB.TestAppView.Gantt1 | DelegateAppletStub.getParameter | parameter: TIMEOUT_WAIT_COMMAND_RESULT, value is null
    ACF | INFO | 13h49m23s437ms | # 4 | AWT-EventQueue-9 | id AEGB.TestAppView.Gantt1 | DelegateAppletStub.getParameter | parameter: timeout_wait_command_result, value is null
      55: TIMEOUT_WAIT_COMMAND_RESULT = '3'
    ACF | INFO | 13h49m23s437ms | # 4 | AWT-EventQueue-9 | id AEGB.TestAppView.Gantt1 | DelegateAppletStub.getParameter | parameter: INPUT_COMPRESSION, value is null
    ACF | INFO | 13h49m23s437ms | # 4 | AWT-EventQueue-9 | id AEGB.TestAppView.Gantt1 | DelegateAppletStub.getParameter | parameter: input_compression, value is null
      56: INPUT_COMPRESSION = 'IMPLICIT'
    ACF | INFO | 13h49m23s437ms | # 4 | AWT-EventQueue-9 | id AEGB.TestAppView.Gantt1 | DelegateAppletStub.getParameter | parameter: OUTPUT_COMPRESSION, value is null
    ACF | INFO | 13h49m23s437ms | # 4 | AWT-EventQueue-9 | id AEGB.TestAppView.Gantt1 | DelegateAppletStub.getParameter | parameter: output_compression, value is null
      57: OUTPUT_COMPRESSION = 'NONE'
      58:*RESOURCE_POLICY = 'JAR_ONLY'
    ACF | INFO | 13h49m23s437ms | # 4 | AWT-EventQueue-9 | id AEGB.TestAppView.Gantt1 | DelegateAppletStub.getParameter | parameter: INPUT_MONITORING, value is null
    ACF | INFO | 13h49m23s437ms | # 4 | AWT-EventQueue-9 | id AEGB.TestAppView.Gantt1 | DelegateAppletStub.getParameter | parameter: input_monitoring, value is null
      59: INPUT_MONITORING = '1'
    ACF | INFO | 13h49m23s437ms | # 4 | AWT-EventQueue-9 | id AEGB.TestAppView.Gantt1 | DelegateAppletStub.getParameter | parameter: EVENT_QING, value is null
    ACF | INFO | 13h49m23s437ms | # 4 | AWT-EventQueue-9 | id AEGB.TestAppView.Gantt1 | DelegateAppletStub.getParameter | parameter: event_qing, value is null
      60: EVENT_QING = '0'
      61:*LAYOUTER_THREAD = 'CURRENT'
      62:*TIMEOUT_DOUBLECLICK = '500'
    ACF | INFO | 13h49m23s437ms | # 4 | AWT-EventQueue-9 | id AEGB.TestAppView.Gantt1 | DelegateAppletStub.getParameter | parameter: SESSION_ID, value is null
    ACF | INFO | 13h49m23s437ms | # 4 | AWT-EventQueue-9 | id AEGB.TestAppView.Gantt1 | DelegateAppletStub.getParameter | parameter: session_id, value is null
      63: SESSION_ID = ''
    ACF | INFO | 13h49m23s437ms | # 4 | AWT-EventQueue-9 | id AEGB.TestAppView.Gantt1 | DelegateAppletStub.getParameter | parameter: RENDERING_HINTS, value is null
    ACF | INFO | 13h49m23s437ms | # 4 | AWT-EventQueue-9 | id AEGB.TestAppView.Gantt1 | DelegateAppletStub.getParameter | parameter: rendering_hints, value is null
      64: RENDERING_HINTS = ''
    UR L&F version: 7.1000.0.10
    ACF | INFO | 13h49m23s500ms | # 4 | AWT-EventQueue-9 | id AEGB.TestAppView.Gantt1 | DelegateAppletStub.getParameter | parameter: JS_EVENTS, value is null
    ACF | INFO | 13h49m23s500ms | # 4 | AWT-EventQueue-9 | id AEGB.TestAppView.Gantt1 | DelegateAppletStub.getParameter | parameter: js_events, value is null
    Event[JavaScript]: JNET_INITIALIZED
    Event[JavaScript]: TRACELEVEL_CHANGED
    Event[JavaScript]: NODE_DOUBLE_CLICKED
    Event[Java]: *
    ACF | INFO | 13h49m23s515ms | # 4 | AWT-EventQueue-9 | id AEGB.TestAppView.Gantt1 | DelegateAppletStub.getParameter | parameter: HTTP_EVENTS, value is null
    ACF | INFO | 13h49m23s515ms | # 4 | AWT-EventQueue-9 | id AEGB.TestAppView.Gantt1 | DelegateAppletStub.getParameter | parameter: http_events, value is null
    ACF | INFO | 13h49m23s515ms | # 4 | AWT-EventQueue-9 | id AEGB.TestAppView.Gantt1 | DelegateAppletStub.getParameter | parameter: EVENT_QING, value is null
    ACF | INFO | 13h49m23s515ms | # 4 | AWT-EventQueue-9 | id AEGB.TestAppView.Gantt1 | DelegateAppletStub.getParameter | parameter: event_qing, value is null
    ACF | INFO | 13h49m23s515ms | # 4 | AWT-EventQueue-9 | id AEGB.TestAppView.Gantt1 | DelegateAppletStub.getParameter | parameter: INPUT_COMPRESSION, value is null
    ACF | INFO | 13h49m23s515ms | # 4 | AWT-EventQueue-9 | id AEGB.TestAppView.Gantt1 | DelegateAppletStub.getParameter | parameter: input_compression, value is null
    loadRes(com/sap/jnet/TypeRepository.xml,-1,-1,0)
    loadRes.2: name=com/sap/jnet/TypeRepository.xml, is=java.util.zip.ZipFile$2@48f675
    <SAPJNetData version="1.0">
         <TypeRepository id="jnet" version="1.0">
              <COLOR>
                   <!-- the pre-defined Java colours are also pre-defined in JNet.
                        They can be referenced by their Java names, but with major
                        first letter and minor rest...
                        "Color.BLACK" in Java is "Black" in JNet.
                     -->
                   <type name="JNetBackground" >
                        <rgb>250,250,250</rgb>
                   </type>
                   <type name="None" >
                        <rgb>-1,-1,-1</rgb>
                   </type>
                   <!-- SAP colours: see SAP Branding.doc / Colour palette -->
                   <type name="SAPBlue" >
                        <rgb>0,51,102</rgb>
                   </type>
                   <type name="SAPGold" >
                        <rgb>255,153,0</rgb>
                   </type>
                   <type name="SAPGray" >
                        <rgb>153,153,153</rgb>
                   </type>
                   <type name="SAP697" >     <!-- dark red -->
                        <rgb>153,51,51</rgb>
                   </type>
                   <type name="SAP364" >     <!-- dark green -->
                        <rgb>51,102,51</rgb>
                   </type>
                   <!--     The UR Semantic Colours:
                             These colour will be overloaded at runtime by the
                             current theme values (if JNet runs under WebDynpro)
                   -->
                   <type name="URCOLOR.STANDARD" >
                        <rgb>255,255,255</rgb>
                   </type>
                   <type name="URCOLOR.ALTERNATING" >
                        <rgb>233,238,244</rgb>
                   </type>
                   <type name="URCOLOR.TRANSPARENT" >
                        <rgb>0,255,255,255</rgb>
                   </type>
                   <type name="URCOLOR.NEGATIVE" >
                        <rgb>255,103,88</rgb>
                   </type>
                   <type name="URCOLOR.POSITIVE" >
                        <rgb>186,238,154</rgb>
                   </type>
                   <type name="URCOLOR.TOTAL" >
                        <rgb>255,248,67</rgb>
                   </type>
                   <type name="URCOLOR.SUBTOTAL" >
                        <rgb>255,251,140</rgb>
                   </type>
                   <type name="URCOLOR.SUBTOTAL_LIGHT" >
                        <rgb>255,253,191</rgb>
                   </type>
                   <type name="URCOLOR.BADVALUE_DARK" >
                        <rgb>255,103,88</rgb>
                   </type>
                   <type name="URCOLOR.BADVALUE_MEDIUM" >
                        <rgb>255,128,115</rgb>
                   </type>
                   <type name="URCOLOR.BADVALUE_LIGHT" >
                        <rgb>255,152,140</rgb>
                   </type>
                   <type name="URCOLOR.CRITICAL" >
                        <rgb>250,242,176</rgb>
                   </type>
                   <type name="URCOLOR.CRITICALVALUE_DARK" >
                        <rgb>251,166,67</rgb>
                   </type>
                   <type name="URCOLOR.CRITICALVALUE_MEDIUM" >
                        <rgb>253,187,113</rgb>
                   </type>
                   <type name="URCOLOR.CRITICALVALUE_LIGHT" >
                        <rgb>254,204,142</rgb>
                   </type>
                   <type name="URCOLOR.GOODVALUE_DARK" >
                        <rgb>148,216,143</rgb>
                   </type>
                   <type name="URCOLOR.GOODVALUE_MEDIUM" >
                        <rgb>171,237,165</rgb>
                   </type>
                   <type name="URCOLOR.GOODVALUE_LIGHT" >
                        <rgb>198,249,193</rgb>
                   </type>
                   <type name="URCOLOR.GROUP_HIGHLIGHTED" >
                        <rgb>151,179,209</rgb>
                   </type>
                   <type name="URCOLOR.GROUP_HIGHLIGHTED_LIGHT" >
                        <rgb>163,193,225</rgb>
                   </type>
                   <type name="URCOLOR.KEY_MEDIUM" >
                        <rgb>166,229,244</rgb>
                   </type>
                   <type name="URCOLOR.GROUP_LEVEL1" >
                        <rgb>183,207,232</rgb>
                   </type>
                   <type name="URCOLOR.GROUP_LEVEL2" >
                        <rgb>195,214,235</rgb>
                   </type>
                   <type name="URCOLOR.GROUP_LEVEL3" >
                        <rgb>213,227,242</rgb>
                   </type>
    <type name="URCOLOR.MARKED" >
         <rgb>255,120,0</rgb>
    </type>
                   <type name="URCOLOR.POPIN" >
                        <rgb>212,218,225</rgb>
                   </type>
                   <type name="URCOLOR.DISABLED" >
                        <rgb>232,235,238</rgb>
                   </type>
    <type name="URCOLOR.TODAY" >
         <rgb>75,135,185</rgb>
    </type>
                   <type name="URCOLOR.SELECTED1" >
                        <rgb>187,221,221</rgb>
                   </type>
                   <type name="URCOLOR.SELECTED2" >
                        <rgb>246,243,135</rgb>
                   </type>
                   <type name="URCOLOR.SELECTED3" >
                        <rgb>195,221,174</rgb>
                   </type>
                   <type name="URCOLOR.SELECTED4" >
                        <rgb>246,103,103</rgb>
                   </type>
                   <type name="URCOLOR.SELECTED5" >
                        <rgb>253,187,113</rgb>
                   </type>
                   <type name="URCOLOR.CALENDAR_METAL" >
                        <rgb>220,220,220</rgb>
                   </type>
                   <type name="URCOLOR.CALENDAR_PEACH" >
                        <rgb>248,229,200</rgb>
                   </type>
                   <type name="URCOLOR.CALENDAR_BLUE" >
                        <rgb>208,225,235</rgb>
                   </type>
                   <type name="URCOLOR.CALENDAR_ROSE" >
                        <rgb>232,218,225</rgb>
                   </type>
                   <type name="URCOLOR.CALENDAR_PURPLE" >
                        <rgb>233,219,240</rgb>
                   </type>
                   <type name="URCOLOR.CALENDAR_AQUA" >
                        <rgb>197,234,238</rgb>
                   </type>
                   <type name="URCOLOR.CALENDAR_TEAL" >
                        <rgb>204,227,227</rgb>
                   </type>
                   <type name="URCOLOR.CALENDAR_YELLOW" >
                        <rgb>239,239,176</rgb>
                   </type>
                   <type name="URCOLOR.CALENDAR_BROWN" >
                        <rgb>229,224,193</rgb>
                   </type>
                   <type name="URCOLOR.CALENDAR_DEFAULT" >
                        <rgb>230,233,220</rgb>
                   </type>
                   <type name="URCOLOR.CALENDAR_GREEN" >
                        <rgb>214,236,174</rgb>
                   </type>
                   <!--     Predefined colours for UGSapNode's
                              Don't change these values (must be in sync with
                                         corresponging RGBs in com.sap.jnet.u.g.UGSapNode.java
                   -->
                   <type name="SAPColor.UGSapNode.Default">
                        <rgb>215,216,208</rgb>
                   </type>
                   <type name="SAPColor.UGSapNode.Aqua">
                        <rgb>135,236,237</rgb>
                   </type>
                   <type name="SAPColor.UGSapNode.Teal">
                        <rgb>126,223,213</rgb>
                   </type>
                   <type name="SAPColor.UGSapNode.Yellow">
                        <rgb>246,231,69</rgb>
                   </type>
                   <type name="SAPColor.UGSapNode.Brown">
                        <rgb>215,216,123</rgb>
                   </type>
                   <type name="SAPColor.UGSapNode.Green">
                        <rgb>197,241,113</rgb>
                   </type>
                   <type name="SAPColor.UGSapNode.Metal">
                        <rgb>205,205,208</rgb>
                   </type>
                   <type name="SAPColor.UGSapNode.Peach">
                        <rgb>249,200,122</rgb>
                   </type>
                   <type name="SAPColor.UGSapNode.Blue">
                        <rgb>157,210,240</rgb>
                   </type>
                   <type name="SAPColor.UGSapNode.Rose">
                        <rgb>238,164,201</rgb>
                   </type>
                   

    Hi,
    No progress yet. it seems everything is fine in code but there could be some issue with browser.
    When i view the source of application in browser, i found below code:
    out of which alt="Due to browser or system restrictions, this active component (applet) cannot be installed, executed or displayed"
    is important.
    Let me know your inputs.
    Best Regards,
    Ritesh
    <div style="position: absolute; top: 22px; left: 8px; width: 300px; height: 300px;">
    <span id="DELL.SampleJNETView.Network-r" tabindex="-1">
    <object id="DELL.SampleJNETView.Network" height="100%" width="100%" alt="*Due to browser or system restrictions, this active component (applet) cannot be installed, executed or displayed"* classid="java:com.sap.tc.webdynpro.ace.AcfApplet.class" name="DELL.SampleJNETView.Network" ct="AP" tabindex="-1">
    <param value="application/x-java-applet;jpi-version=1.4.1" name="type"/>
    <param value="./" name="codebase"/>
    <param value="../../../../webdynpro/resources/sap.com/tc~wd~dispwda/global/activeComp/com_sap_tc_webdynpro_networkN.jar,../../../../webdynpro/resources/sap.com/tc~wd~dispwda/global/activeComp/com_sap_tc_plaf_ur_themes.jar" name="archive"/>
    <param value="true" name="mayscript"/>
    <param value="DELL.SampleJNETView.Network" name="ControlId"/>
    <param value="0" name="TraceLevel"/>
    <param value="com.sap.tc.webdynpro.network.NetworkDelegateWrapper" name="delegateWrapper"/>
    <param value="en" name="locale"/>
    <param value="true" name="disableHook"/>
    <param value="DELL.SampleJNETView.Network" name="AdapterId"/>
    <param value="true" name="manualUnlock"/>
    <param value="false" name="codebase_lookup"/>
    <param value="../../../../webdynpro/resources/sap.com/tc~wd~dispwda/global/activeComp/com_sap_tc_webdynpro_networkN.jar;2007.1016.1356.01,../../../../webdynpro/resources/sap.com/tc~wd~dispwda/global/activeComp/com_sap_tc_plaf_ur_themes.jar;2007.1016.1356.01" name="cache_archive_ex"/>
    <param value="UR_tradeshow" name="LOOK_AND_FEEL"/>
    <param value="500" name="TIMEOUT_DOUBLECLICK"/>
    <param value="*" name="JAVA_EVENTS"/>
    <param value="SEND_EVENT" name="SAVE_POLICY"/>
    <param value="X" name="NO_JS"/>
    <param value="TRUE" name="WAIT_FOR_DATA"/>
    <param value="true" name="disableHook"/>
    <param value="true" name="disableDelta"/>
    <param value="en" name="LOCALE_LANGUAGE"/>
    </object>
    </span>
    </div>

  • Build error while creating 32-64 universal binary

    Hi All,
    I have to build a bundle in Xcode as part of development.
    While building 32-bit universal, it is not giving any issues. But when I keep 32-64bit universal, I am getting so many build errors. As I have windows background, pretty new to Mac, so any help suggestions will be appreciated.
    Build MSGSmartIssue of project SMASmartIssue with configuration Development
    CompileC build/SMASmartIssue.build/Development/MSGSmartIssue.build/Objects-normal/x86_64 /GUID.o GUID.cp normal x86_64 c++ com.apple.compilers.gcc.4_2
    cd /Users/administrator/perforce/saurabhs-MacBook/sdc/trunk/ridev/macos/Subscriber Agent2/appplugin/smartissue
    setenv LANG en_US.US-ASCII
    /Developer/usr/bin/gcc-4.2 -x c++ -arch x86_64 -fmessage-length=0 -pipe -Wno-trigraphs -fpascal-strings -fasm-blocks -O0 -isysroot /Developer/SDKs/MacOSX10.6.sdk -mfix-and-continue -fvisibility-inlines-hidden -mmacosx-version-min=10.6 -gdwarf-2 -I/Users/administrator/perforce/saurabhs-MacBook/sdc/trunk/ridev/macos/Subscrib erAgent2/appplugin/smartissue/build/SMASmartIssue.build/Development/MSGSmartIssu e.build/MSGSmartIssue.hmap -Wmost -Wno-four-char-constants -Wno-unknown-pragmas -F/Users/administrator/perforce/saurabhs-MacBook/sdc/trunk/ridev/macos/Subscrib erAgent2/appplugin/smartissue/build/Development -I/Users/administrator/perforce/saurabhs-MacBook/sdc/trunk/ridev/macos/Subscrib erAgent2/appplugin/smartissue/build/Development/include -I/Users/administrator/perforce/saurabhs-MacBook/sdc/trunk/ridev/macos/Subscrib erAgent2/appplugin/smartissue/build/SMASmartIssue.build/Development/MSGSmartIssu e.build/DerivedSources/x86_64 -I/Users/administrator/perforce/saurabhs-MacBook/sdc/trunk/ridev/macos/Subscrib erAgent2/appplugin/smartissue/build/SMASmartIssue.build/Development/MSGSmartIssu e.build/DerivedSources -I /Developer/SDKs/MacOSX10.6.sdk/System/Library/Frameworks/CoreServices.framework /Versions/A/Frameworks/OSServices.framework/Versions/A/Headers -c /Users/administrator/perforce/saurabhs-MacBook/sdc/trunk/ridev/macos/Subscriber Agent2/appplugin/smartissue/GUID.cp -o /Users/administrator/perforce/saurabhs-MacBook/sdc/trunk/ridev/macos/Subscriber Agent2/appplugin/smartissue/build/SMASmartIssue.build/Development/MSGSmartIssue. build/Objects-normal/x86_64/GUID.o
    In file included from /Developer/SDKs/MacOSX10.6.sdk/System/Library/Frameworks/CoreServices.framework /Versions/A/Frameworks/OSServices.framework/Versions/A/Headers/OpenTransportProv iders.h:20,
                     from /Users/administrator/perforce/saurabhs-MacBook/sdc/trunk/ridev/macos/Subscriber Agent2/appplugin/smartissue/GUID.cp:9:
    /Developer/SDKs/MacOSX10.6.sdk/System/Library/Frameworks/CoreServices.framework/ Frameworks/OSServices.framework/Headers/OpenTransport.h: In member function 'OSStatus TProvider::Close()':
    /Developer/SDKs/MacOSX10.6.sdk/System/Library/Frameworks/CoreServices.framework/ Frameworks/OSServices.framework/Headers/OpenTransport.h:4369: error: 'OTCloseProvider' was not declared in this scope
    /Developer/SDKs/MacOSX10.6.sdk/System/Library/Frameworks/CoreServices.framework/ Frameworks/OSServices.framework/Headers/OpenTransport.h: In member function 'OSStatus TProvider::SetNonBlocking()':
    /Developer/SDKs/MacOSX10.6.sdk/System/Library/Frameworks/CoreServices.framework/ Frameworks/OSServices.framework/Headers/OpenTransport.h:4371: error: 'OTSetNonBlocking' was not declared in this scope
    /Developer/SDKs/MacOSX10.6.sdk/System/Library/Frameworks/CoreServices.framework/ Frameworks/OSServices.framework/Headers/OpenTransport.h: In member function 'OSStatus TProvider::SetBlocking()':
    /Developer/SDKs/MacOSX10.6.sdk/System/Library/Frameworks/CoreServices.framework/ Frameworks/OSServices.framework/Headers/OpenTransport.h:4372: error: 'OTSetBlocking' was not declared in this scope
    /Developer/SDKs/MacOSX10.6.sdk/System/Library/Frameworks/CoreServices.framework/ Frameworks/OSServices.framework/Headers/OpenTransport.h: In member function 'Boolean TProvider::IsBlocking()':
    /Developer/SDKs/MacOSX10.6.sdk/System/Library/Frameworks/CoreServices.framework/ Frameworks/OSServices.framework/Headers/OpenTransport.h:4373: error: 'OTIsBlocking' was not declared in this scope
    /Developer/SDKs/MacOSX10.6.sdk/System/Library/Frameworks/CoreServices.framework/ Frameworks/OSServices.framework/Headers/OpenTransport.h: In member function 'Boolean TProvider::IsNonBlocking()':
    /Developer/SDKs/MacOSX10.6.sdk/System/Library/Frameworks/CoreServices.framework/ Frameworks/OSServices.framework/Headers/OpenTransport.h:4374: error: 'OTIsBlocking' was not declared in this scope
    /Developer/SDKs/MacOSX10.6.sdk/System/Library/Frameworks/CoreServices.framework/ Frameworks/OSServices.framework/Headers/OpenTransport.h: In member function 'OSStatus TProvider::SetSynchronous()':
    /Developer/SDKs/MacOSX10.6.sdk/System/Library/Frameworks/CoreServices.framework/ Frameworks/OSServices.framework/Headers/OpenTransport.h:4375: error: 'OTSetSynchronous' was not declared in this scope
    /Developer/SDKs/MacOSX10.6.sdk/System/Library/Frameworks/CoreServices.framework/ Frameworks/OSServices.framework/Headers/OpenTransport.h: In member function 'OSStatus TProvider::SetAsynchronous()':
    /Developer/SDKs/MacOSX10.6.sdk/System/Library/Frameworks/CoreServices.framework/ Frameworks/OSServices.framework/Headers/OpenTransport.h:4376: error: 'OTSetAsynchronous' was not declared in this scope
    /Developer/SDKs/MacOSX10.6.sdk/System/Library/Frameworks/CoreServices.framework/ Frameworks/OSServices.framework/Headers/OpenTransport.h: In member function 'Boolean TProvider::IsSynchronous()':
    /Developer/SDKs/MacOSX10.6.sdk/System/Library/Frameworks/CoreServices.framework/ Frameworks/OSServices.framework/Headers/OpenTransport.h:4377: error: 'OTIsSynchronous' was not declared in this scope
    /Developer/SDKs/MacOSX10.6.sdk/System/Library/Frameworks/CoreServices.framework/ Frameworks/OSServices.framework/Headers/OpenTransport.h: In member function 'Boolean TProvider::IsAsynchronous()':
    /Developer/SDKs/MacOSX10.6.sdk/System/Library/Frameworks/CoreServices.framework/ Frameworks/OSServices.framework/Headers/OpenTransport.h:4378: error: 'OTIsSynchronous' was not declared in this scope
    /Developer/SDKs/MacOSX10.6.sdk/System/Library/Frameworks/CoreServices.framework/ Frameworks/OSServices.framework/Headers/OpenTransport.h: In member function 'OSStatus TProvider::AckSends()':
    /Developer/SDKs/MacOSX10.6.sdk/System/Library/Frameworks/CoreServices.framework/ Frameworks/OSServices.framework/Headers/OpenTransport.h:4380: error: 'OTAckSends' was not declared in this scope
    /Developer/SDKs/MacOSX10.6.sdk/System/Library/Frameworks/CoreServices.framework/ Frameworks/OSServices.framework/Headers/OpenTransport.h: In member function 'OSStatus TProvider::DontAckSends()':
    /Developer/SDKs/MacOSX10.6.sdk/System/Library/Frameworks/CoreServices.framework/ Frameworks/OSServices.framework/Headers/OpenTransport.h:4381: error: 'OTDontAckSends' was not declared in this scope
    /Developer/SDKs/MacOSX10.6.sdk/System/Library/Frameworks/CoreServices.framework/ Frameworks/OSServices.framework/Headers/OpenTransport.h: In member function 'Boolean TProvider::IsAckingSends()':
    /Developer/SDKs/MacOSX10.6.sdk/System/Library/Frameworks/CoreServices.framework/ Frameworks/OSServices.framework/Headers/OpenTransport.h:4382: error: 'OTIsAckingSends' was not declared in this scope
    /Developer/SDKs/MacOSX10.6.sdk/System/Library/Frameworks/CoreServices.framework/ Frameworks/OSServices.framework/Headers/OpenTransport.h: In member function 'void TProvider::CancelSynchronousCalls(OSStatus)':
    /Developer/SDKs/MacOSX10.6.sdk/System/Library/Frameworks/CoreServices.framework/ Frameworks/OSServices.framework/Headers/OpenTransport.h:4385: error: 'OTCancelSynchronousCalls' was not declared in this scope
    /Developer/SDKs/MacOSX10.6.sdk/System/Library/Frameworks/CoreServices.framework/ Frameworks/OSServices.framework/Headers/OpenTransport.h: In member function 'OSStatus TProvider::InstallNotifier(void (*)(void*, OTEventCode, OTResult, void*), void*)':
    /Developer/SDKs/MacOSX10.6.sdk/System/Library/Frameworks/CoreServices.framework/ Frameworks/OSServices.framework/Headers/OpenTransport.h:4388: error: 'OTInstallNotifier' was not declared in this scope
    /Developer/SDKs/MacOSX10.6.sdk/System/Library/Frameworks/CoreServices.framework/ Frameworks/OSServices.framework/Headers/OpenTransport.h: In member function 'OSStatus TProvider::UseSyncIdleEvents()':
    /Developer/SDKs/MacOSX10.6.sdk/System/Library/Frameworks/CoreServices.framework/ Frameworks/OSServices.framework/Headers/OpenTransport.h:4391: error: 'OTUseSyncIdleEvents' was not declared in this scope
    /Developer/SDKs/MacOSX10.6.sdk/System/Library/Frameworks/CoreServices.framework/ Frameworks/OSServices.framework/Headers/OpenTransport.h: In member function 'OSStatus TProvider::DontUseSyncIdleEvents()':
    /Developer/SDKs/MacOSX10.6.sdk/System/Library/Frameworks/CoreServices.framework/ Frameworks/OSServices.framework/Headers/OpenTransport.h:4394: error: 'OTUseSyncIdleEvents' was not declared in this scope
    /Developer/SDKs/MacOSX10.6.sdk/System/Library/Frameworks/CoreServices.framework/ Frameworks/OSServices.framework/Headers/OpenTransport.h: In member function 'void TProvider::RemoveNotifier()':
    /Developer/SDKs/MacOSX10.6.sdk/System/Library/Frameworks/CoreServices.framework/ Frameworks/OSServices.framework/Headers/OpenTransport.h:4397: error: 'OTRemoveNotifier' was not declared in this scope
    /Developer/SDKs/MacOSX10.6.sdk/System/Library/Frameworks/CoreServices.framework/ Frameworks/OSServices.framework/Headers/OpenTransport.h: In member function 'Boolean TProvider::EnterNotifier()':
    /Developer/SDKs/MacOSX10.6.sdk/System/Library/Frameworks/CoreServices.framework/ Frameworks/OSServices.framework/Headers/OpenTransport.h:4400: error: 'OTEnterNotifier' was not declared in this scope
    /Developer/SDKs/MacOSX10.6.sdk/System/Library/Frameworks/CoreServices.framework/ Frameworks/OSServices.framework/Headers/OpenTransport.h: In member function 'void TProvider::LeaveNotifier()':
    /Developer/SDKs/MacOSX10.6.sdk/System/Library/Frameworks/CoreServices.framework/ Frameworks/OSServices.framework/Headers/OpenTransport.h:4403: error: 'OTLeaveNotifier' was not declared in this scope
    /Developer/SDKs/MacOSX10.6.sdk/System/Library/Frameworks/CoreServices.framework/ Frameworks/OSServices.framework/Headers/OpenTransport.h: In member function 'SInt32 TProvider::Ioctl(UInt32, void*)':
    /Developer/SDKs/MacOSX10.6.sdk/System/Library/Frameworks/CoreServices.framework/ Frameworks/OSServices.framework/Headers/OpenTransport.h:4414: error: 'OTIoctl' was not declared in this scope
    /Developer/SDKs/MacOSX10.6.sdk/System/Library/Frameworks/CoreServices.framework/ Frameworks/OSServices.framework/Headers/OpenTransport.h: In member function 'SInt32 TProvider::Ioctl(UInt32, long int)':
    /Developer/SDKs/MacOSX10.6.sdk/System/Library/Frameworks/CoreServices.framework/ Frameworks/OSServices.framework/Headers/OpenTransport.h:4416: error: 'OTIoctl' was not declared in this scope
    /Developer/SDKs/MacOSX10.6.sdk/System/Library/Frameworks/CoreServices.framework/ Frameworks/OSServices.framework/Headers/OpenTransport.h: In member function 'OSStatus TEndpoint::GetEndpointInfo(TEndpointInfo*)':
    /Developer/SDKs/MacOSX10.6.sdk/System/Library/Frameworks/CoreServices.framework/ Frameworks/OSServices.framework/Headers/OpenTransport.h:4456: error: 'OTGetEndpointInfo' was not declared in this scope
    /Developer/SDKs/MacOSX10.6.sdk/System/Library/Frameworks/CoreServices.framework/ Frameworks/OSServices.framework/Headers/OpenTransport.h: In member function 'OSStatus TEndpoint::GetProtAddress(TBind*, TBind*)':
    /Developer/SDKs/MacOSX10.6.sdk/System/Library/Frameworks/CoreServices.framework/ Frameworks/OSServices.framework/Headers/OpenTransport.h:4459: error: 'OTGetProtAddress' was not declared in this scope
    /Developer/SDKs/MacOSX10.6.sdk/System/Library/Frameworks/CoreServices.framework/ Frameworks/OSServices.framework/Headers/OpenTransport.h: In member function 'OSStatus TEndpoint::ResolveAddress(TBind*, TBind*, OTTimeout)':
    /Developer/SDKs/MacOSX10.6.sdk/System/Library/Frameworks/CoreServices.framework/ Frameworks/OSServices.framework/Headers/OpenTransport.h:4462: error: 'OTResolveAddress' was not declared in this scope
    /Developer/SDKs/MacOSX10.6.sdk/System/Library/Frameworks/CoreServices.framework/ Frameworks/OSServices.framework/Headers/OpenTransport.h: In member function 'OTResult TEndpoint::GetEndpointState()':
    /Developer/SDKs/MacOSX10.6.sdk/System/Library/Frameworks/CoreServices.framework/ Frameworks/OSServices.framework/Headers/OpenTransport.h:4465: error: 'OTGetEndpointState' was not declared in this scope
    /Developer/SDKs/MacOSX10.6.sdk/System/Library/Frameworks/CoreServices.framework/ Frameworks/OSServices.framework/Headers/OpenTransport.h: In member function 'OTResult TEndpoint::Look()':
    /Developer/SDKs/MacOSX10.6.sdk/System/Library/Frameworks/CoreServices.framework/ Frameworks/OSServices.framework/Headers/OpenTransport.h:4468: error: 'OTLook' was not declared in this scope
    /Developer/SDKs/MacOSX10.6.sdk/System/Library/Frameworks/CoreServices.framework/ Frameworks/OSServices.framework/Headers/OpenTransport.h: In member function 'void* TEndpoint::AllocInContext(OTStructType, UInt32, OSStatus*, OpaqueOTClientContextPtr*)':
    /Developer/SDKs/MacOSX10.6.sdk/System/Library/Frameworks/CoreServices.framework/ Frameworks/OSServices.framework/Headers/OpenTransport.h:4478: error: 'OTAllocInContext' was not declared in this scope
    /Developer/SDKs/MacOSX10.6.sdk/System/Library/Frameworks/CoreServices.framework/ Frameworks/OSServices.framework/Headers/OpenTransport.h: In member function 'void* TEndpoint::Alloc(OTStructType, UInt32, OSStatus*)':
    /Developer/SDKs/MacOSX10.6.sdk/System/Library/Frameworks/CoreServices.framework/ Frameworks/OSServices.framework/Headers/OpenTransport.h:4483: error: 'OTAllocInContext' was not declared in this scope
    /Developer/SDKs/MacOSX10.6.sdk/System/Library/Frameworks/CoreServices.framework/ Frameworks/OSServices.framework/Headers/OpenTransport.h: In member function 'OTResult TEndpoint::Free(void*, OTStructType)':
    /Developer/SDKs/MacOSX10.6.sdk/System/Library/Frameworks/CoreServices.framework/ Frameworks/OSServices.framework/Headers/OpenTransport.h:4490: error: 'OTFree' was not declared in this scope
    /Developer/SDKs/MacOSX10.6.sdk/System/Library/Frameworks/CoreServices.framework/ Frameworks/OSServices.framework/Headers/OpenTransport.h: In member function 'OSStatus TEndpoint::OptionManagement(TOptMgmt*, TOptMgmt*)':
    /Developer/SDKs/MacOSX10.6.sdk/System/Library/Frameworks/CoreServices.framework/ Frameworks/OSServices.framework/Headers/OpenTransport.h:4495: error: 'OTOptionManagement' was not declared in this scope
    /Developer/SDKs/MacOSX10.6.sdk/System/Library/Frameworks/CoreServices.framework/ Frameworks/OSServices.framework/Headers/OpenTransport.h: In member function 'OSStatus TEndpoint::Bind(TBind*, TBind*)':
    /Developer/SDKs/MacOSX10.6.sdk/System/Library/Frameworks/CoreServices.framework/ Frameworks/OSServices.framework/Headers/OpenTransport.h:4500: error: 'OTBind' was not declared in this scope
    /Developer/SDKs/MacOSX10.6.sdk/System/Library/Frameworks/CoreServices.framework/ Frameworks/OSServices.framework/Headers/OpenTransport.h: In member function 'OSStatus TEndpoint::Unbind()':
    /Developer/SDKs/MacOSX10.6.sdk/System/Library/Frameworks/CoreServices.framework/ Frameworks/OSServices.framework/Headers/OpenTransport.h:4503: error: 'OTUnbind' was not declared in this scope
    /Developer/SDKs/MacOSX10.6.sdk/System/Library/Frameworks/CoreServices.framework/ Frameworks/OSServices.framework/Headers/OpenTransport.h: In member function 'OSStatus TEndpoint::Connect(TCall*, TCall*)':
    /Developer/SDKs/MacOSX10.6.sdk/System/Library/Frameworks/CoreServices.framework/ Frameworks/OSServices.framework/Headers/OpenTransport.h:4508: error: 'OTConnect' was not declared in this scope
    /Developer/SDKs/MacOSX10.6.sdk/System/Library/Frameworks/CoreServices.framework/ Frameworks/OSServices.framework/Headers/OpenTransport.h: In member function 'OSStatus TEndpoint::RcvConnect(TCall*)':
    /Developer/SDKs/MacOSX10.6.sdk/System/Library/Frameworks/CoreServices.framework/ Frameworks/OSServices.framework/Headers/OpenTransport.h:4511: error: 'OTRcvConnect' was not declared in this scope
    /Developer/SDKs/MacOSX10.6.sdk/System/Library/Frameworks/CoreServices.framework/ Frameworks/OSServices.framework/Headers/OpenTransport.h: In member function 'OSStatus TEndpoint::Listen(TCall*)':
    /Developer/SDKs/MacOSX10.6.sdk/System/Library/Frameworks/CoreServices.framework/ Frameworks/OSServices.framework/Headers/OpenTransport.h:4514: error: 'OTListen' was not declared in this scope
    /Developer/SDKs/MacOSX10.6.sdk/System/Library/Frameworks/CoreServices.framework/ Frameworks/OSServices.framework/Headers/OpenTransport.h: In member function 'OSStatus TEndpoint::Accept(TEndpoint*, TCall*)':
    /Developer/SDKs/MacOSX10.6.sdk/System/Library/Frameworks/CoreServices.framework/ Frameworks/OSServices.framework/Headers/OpenTransport.h:4517: error: 'OTAccept' was not declared in this scope
    /Developer/SDKs/MacOSX10.6.sdk/System/Library/Frameworks/CoreServices.framework/ Frameworks/OSServices.framework/Headers/OpenTransport.h: In member function 'OSStatus TEndpoint::SndDisconnect(TCall*)':
    /Developer/SDKs/MacOSX10.6.sdk/System/Library/Frameworks/CoreServices.framework/ Frameworks/OSServices.framework/Headers/OpenTransport.h:4520: error: 'OTSndDisconnect' was not declared in this scope
    /Developer/SDKs/MacOSX10.6.sdk/System/Library/Frameworks/CoreServices.framework/ Frameworks/OSServices.framework/Headers/OpenTransport.h: In member function 'OSStatus TEndpoint::SndOrderlyDisconnect()':
    /Developer/SDKs/MacOSX10.6.sdk/System/Library/Frameworks/CoreServices.framework/ Frameworks/OSServices.framework/Headers/OpenTransport.h:4523: error: 'OTSndOrderlyDisconnect' was not declared in this scope
    /Developer/SDKs/MacOSX10.6.sdk/System/Library/Frameworks/CoreServices.framework/ Frameworks/OSServices.framework/Headers/OpenTransport.h: In member function 'OSStatus TEndpoint::RcvDisconnect(TDiscon*)':
    /Developer/SDKs/MacOSX10.6.sdk/System/Library/Frameworks/CoreServices.framework/ Frameworks/OSServices.framework/Headers/OpenTransport.h:4526: error: 'OTRcvDisconnect' was not declared in this scope
    /Developer/SDKs/MacOSX10.6.sdk/System/Library/Frameworks/CoreServices.framework/ Frameworks/OSServices.framework/Headers/OpenTransport.h: In member function 'OSStatus TEndpoint::RcvOrderlyDisconnect()':
    /Developer/SDKs/MacOSX10.6.sdk/System/Library/Frameworks/CoreServices.framework/ Frameworks/OSServices.framework/Headers/OpenTransport.h:4529: error: 'OTRcvOrderlyDisconnect' was not declared in this scope
    /Developer/SDKs/MacOSX10.6.sdk/System/Library/Frameworks/CoreServices.framework/ Frameworks/OSServices.framework/Headers/OpenTransport.h: In member function 'OTResult TEndpoint::Snd(void*, OTByteCount, OTFlags)':
    /Developer/SDKs/MacOSX10.6.sdk/System/Library/Frameworks/CoreServices.framework/ Frameworks/OSServices.framework/Headers/OpenTransport.h:4534: error: 'OTSnd' was not declared in this scope
    /Developer/SDKs/MacOSX10.6.sdk/System/Library/Frameworks/CoreServices.framework/ Frameworks/OSServices.framework/Headers/OpenTransport.h: In member function 'OTResult TEndpoint::Rcv(void*, OTByteCount, OTFlags*)':
    /Developer/SDKs/MacOSX10.6.sdk/System/Library/Frameworks/CoreServices.framework/ Frameworks/OSServices.framework/Headers/OpenTransport.h:4537: error: 'OTRcv' was not declared in this scope
    /Developer/SDKs/MacOSX10.6.sdk/System/Library/Frameworks/CoreServices.framework/ Frameworks/OSServices.framework/Headers/OpenTransport.h: In member function 'OSStatus TEndpoint::SndUData(TUnitData*)':
    /Developer/SDKs/MacOSX10.6.sdk/System/Library/Frameworks/CoreServices.framework/ Frameworks/OSServices.framework/Headers/OpenTransport.h:4542: error: 'OTSndUData' was not declared in this scope
    /Developer/SDKs/MacOSX10.6.sdk/System/Library/Frameworks/CoreServices.framework/ Frameworks/OSServices.framework/Headers/OpenTransport.h: In member function 'OSStatus TEndpoint::RcvUData(TUnitData*, OTFlags*)':
    /Developer/SDKs/MacOSX10.6.sdk/System/Library/Frameworks/CoreServices.framework/ Frameworks/OSServices.framework/Headers/OpenTransport.h:4545: error: 'OTRcvUData' was not declared in this scope
    /Developer/SDKs/MacOSX10.6.sdk/System/Library/Frameworks/CoreServices.framework/ Frameworks/OSServices.framework/Headers/OpenTransport.h: In member function 'OSStatus TEndpoint::RcvUDErr(TUDErr*)':
    /Developer/SDKs/MacOSX10.6.sdk/System/Library/Frameworks/CoreServices.framework/ Frameworks/OSServices.framework/Headers/OpenTransport.h:4548: error: 'OTRcvUDErr' was not declared in this scope
    /Developer/SDKs/MacOSX10.6.sdk/System/Library/Frameworks/CoreServices.framework/ Frameworks/OSServices.framework/Headers/OpenTransport.h: In member function 'OTResult TEndpoint::CountDataBytes(OTByteCount*)':
    /Developer/SDKs/MacOSX10.6.sdk/System/Library/Frameworks/CoreServices.framework/ Frameworks/OSServices.framework/Headers/OpenTransport.h:4596: error: 'OTCountDataBytes' was not declared in this scope
    /Developer/SDKs/MacOSX10.6.sdk/System/Library/Frameworks/CoreServices.framework/ Frameworks/OSServices.framework/Headers/OpenTransport.h: In member function 'OSStatus TMapper::RegisterName(TRegisterRequest*, TRegisterReply*)':
    /Developer/SDKs/MacOSX10.6.sdk/System/Library/Frameworks/CoreServices.framework/ Frameworks/OSServices.framework/Headers/OpenTransport.h:4609: error: 'OTRegisterName' was not declared in this scope
    /Developer/SDKs/MacOSX10.6.sdk/System/Library/Frameworks/CoreServices.framework/ Frameworks/OSServices.framework/Headers/OpenTransport.h: In member function 'OSStatus TMapper::DeleteName(TNetbuf*)':
    /Developer/SDKs/MacOSX10.6.sdk/System/Library/Frameworks/CoreServices.framework/ Frameworks/OSServices.framework/Headers/OpenTransport.h:4612: error: 'OTDeleteName' was not declared in this scope
    /Developer/SDKs/MacOSX10.6.sdk/System/Library/Frameworks/CoreServices.framework/ Frameworks/OSServices.framework/Headers/OpenTransport.h: In member function 'OSStatus TMapper::DeleteName(OTNameID)':
    /Developer/SDKs/MacOSX10.6.sdk/System/Library/Frameworks/CoreServices.framework/ Frameworks/OSServices.framework/Headers/OpenTransport.h:4615: error: 'OTDeleteNameByID' was not declared in this scope
    /Developer/SDKs/MacOSX10.6.sdk/System/Library/Frameworks/CoreServices.framework/ Frameworks/OSServices.framework/Headers/OpenTransport.h: In member function 'OSStatus TMapper::LookupName(TLookupRequest*, TLookupReply*)':
    /Developer/SDKs/MacOSX10.6.sdk/System/Library/Frameworks/CoreServices.framework/ Frameworks/OSServices.framework/Headers/OpenTransport.h:4618: error: 'OTLookupName' was not declared in this scope
    /Users/administrator/perforce/saurabhs-MacBook/sdc/trunk/ridev/macos/SubscriberA gent2/appplugin/smartissue/GUID.cp: In constructor 'GUID::GUID()':
    /Users/administrator/perforce/saurabhs-MacBook/sdc/trunk/ridev/macos/SubscriberA gent2/appplugin/smartissue/GUID.cp:25: error: 'OTInetGetInterfaceInfo' was not declared in this scope
    CompileC build/SMASmartIssue.build/Development/MSGSmartIssue.build/Objects-normal/x86_64 /MSGSmartIssue.o MSGSmartIssue.mm normal x86_64 objective-c++ com.apple.compilers.gcc.4_2
    cd /Users/administrator/perforce/saurabhs-MacBook/sdc/trunk/ridev/macos/Subscriber Agent2/appplugin/smartissue
    setenv LANG en_US.US-ASCII
    /Developer/usr/bin/gcc-4.2 -x objective-c++ -arch x86_64 -fmessage-length=0 -pipe -Wno-trigraphs -fpascal-strings -fasm-blocks -O0 -isysroot /Developer/SDKs/MacOSX10.6.sdk -mfix-and-continue -fvisibility-inlines-hidden -mmacosx-version-min=10.6 -gdwarf-2 -I/Users/administrator/perforce/saurabhs-MacBook/sdc/trunk/ridev/macos/Subscrib erAgent2/appplugin/smartissue/build/SMASmartIssue.build/Development/MSGSmartIssu e.build/MSGSmartIssue.hmap -Wmost -Wno-four-char-constants -Wno-unknown-pragmas -F/Users/administrator/perforce/saurabhs-MacBook/sdc/trunk/ridev/macos/Subscrib erAgent2/appplugin/smartissue/build/Development -I/Users/administrator/perforce/saurabhs-MacBook/sdc/trunk/ridev/macos/Subscrib erAgent2/appplugin/smartissue/build/Development/include -I/Users/administrator/perforce/saurabhs-MacBook/sdc/trunk/ridev/macos/Subscrib erAgent2/appplugin/smartissue/build/SMASmartIssue.build/Development/MSGSmartIssu e.build/DerivedSources/x86_64 -I/Users/administrator/perforce/saurabhs-MacBook/sdc/trunk/ridev/macos/Subscrib erAgent2/appplugin/smartissue/build/SMASmartIssue.build/Development/MSGSmartIssu e.build/DerivedSources -I /Users/administrator/perforce/saurabhs-MacBook/sdc/trunk/ridev/macos/Subscriber Agent2/appplugin/keychain -I /Users/administrator/perforce/saurabhs-MacBook/sdc/trunk/ridev/macos/Subscriber Agent2/appplugin/custom/CloseWindow -I /Users/administrator/perforce/saurabhs-MacBook/sdc/trunk/ridev/macos/Subscriber Agent2/appplugin/proxyconfig -I /Developer/Headers/FlatCarbon -c /Users/administrator/perforce/saurabhs-MacBook/sdc/trunk/ridev/macos/Subscriber Agent2/appplugin/smartissue/MSGSmartIssue.mm -o /Users/administrator/perforce/saurabhs-MacBook/sdc/trunk/ridev/macos/Subscriber Agent2/appplugin/smartissue/build/SMASmartIssue.build/Development/MSGSmartIssue. build/Objects-normal/x86_64/MSGSmartIssue.o
    In file included from /Users/administrator/perforce/saurabhs-MacBook/sdc/trunk/ridev/macos/Subscriber Agent2/appplugin/smartissue/../../subagent/MSGAppController.h:12,
                     from /Users/administrator/perforce/saurabhs-MacBook/sdc/trunk/ridev/macos/Subscriber Agent2/appplugin/smartissue/MSGSmartIssue.mm:13:
    /Users/administrator/perforce/saurabhs-MacBook/sdc/trunk/ridev/macos/SubscriberA gent2/appplugin/smartissue/../../webkit/MSGDocument.h:25:19: warning: missing whitespace after the macro name
    In file included from /Users/administrator/perforce/saurabhs-MacBook/sdc/trunk/ridev/macos/Subscriber Agent2/appplugin/smartissue/MSGSmartIssue.mm:13:
    /Users/administrator/perforce/saurabhs-MacBook/sdc/trunk/ridev/macos/SubscriberA gent2/appplugin/smartissue/../../subagent/MSGAppController.h:36:1: warning: "kMSGInCriticalValue" redefined
    In file included from /Users/administrator/perforce/saurabhs-MacBook/sdc/trunk/ridev/macos/Subscriber Agent2/appplugin/smartissue/../../subagent/MSGAppController.h:12,
                     from /Users/administrator/perforce/saurabhs-MacBook/sdc/trunk/ridev/macos/Subscriber Agent2/appplugin/smartissue/MSGSmartIssue.mm:13:
    /Users/administrator/perforce/saurabhs-MacBook/sdc/trunk/ridev/macos/SubscriberA gent2/appplugin/smartissue/../../webkit/MSGDocument.h:26:1: warning: this is the location of the previous definition
    /Users/administrator/perforce/saurabhs-MacBook/sdc/trunk/ridev/macos/SubscriberA gent2/appplugin/smartissue/MSGSmartIssue.mm: In function 'NSString* -[MSGSmartIssue guid](MSGSmartIssue*, objc_selector*)':
    /Users/administrator/perforce/saurabhs-MacBook/sdc/trunk/ridev/macos/SubscriberA gent2/appplugin/smartissue/MSGSmartIssue.mm:35: warning: 'stringWithCString:' is deprecated (declared at /Developer/SDKs/MacOSX10.6.sdk/System/Library/Frameworks/Foundation.framework/H eaders/NSString.h:386)
    /Users/administrator/perforce/saurabhs-MacBook/sdc/trunk/ridev/macos/SubscriberA gent2/appplugin/smartissue/MSGSmartIssue.mm: In function 'NSString* -[MSGSmartIssue replaceTemplateVarsWithValues:](MSGSmartIssue*, objc_selector*, NSString*)':
    /Users/administrator/perforce/saurabhs-MacBook/sdc/trunk/ridev/macos/SubscriberA gent2/appplugin/smartissue/MSGSmartIssue.mm:206: warning: 'stringWithContentsOfFile:' is deprecated (declared at /Developer/SDKs/MacOSX10.6.sdk/System/Library/Frameworks/Foundation.framework/H eaders/NSString.h:379)
    /Users/administrator/perforce/saurabhs-MacBook/sdc/trunk/ridev/macos/SubscriberA gent2/appplugin/smartissue/MSGSmartIssue.mm:207: warning: 'cString' is deprecated (declared at /Developer/SDKs/MacOSX10.6.sdk/System/Library/Frameworks/Foundation.framework/H eaders/NSString.h:367)
    /Users/administrator/perforce/saurabhs-MacBook/sdc/trunk/ridev/macos/SubscriberA gent2/appplugin/smartissue/MSGSmartIssue.mm:217: warning: 'cString' is deprecated (declared at /Developer/SDKs/MacOSX10.6.sdk/System/Library/Frameworks/Foundation.framework/H eaders/NSString.h:367)
    /Users/administrator/perforce/saurabhs-MacBook/sdc/trunk/ridev/macos/SubscriberA gent2/appplugin/smartissue/MSGSmartIssue.mm:222: warning: 'cString' is deprecated (declared at /Developer/SDKs/MacOSX10.6.sdk/System/Library/Frameworks/Foundation.framework/H eaders/NSString.h:367)
    /Users/administrator/perforce/saurabhs-MacBook/sdc/trunk/ridev/macos/SubscriberA gent2/appplugin/smartissue/MSGSmartIssue.mm:224: warning: comparison between signed and unsigned integer expressions
    /Users/administrator/perforce/saurabhs-MacBook/sdc/trunk/ridev/macos/SubscriberA gent2/appplugin/smartissue/MSGSmartIssue.mm: In function 'std::string splitAndDelete(std::string&, std::string)':
    /Users/administrator/perforce/saurabhs-MacBook/sdc/trunk/ridev/macos/SubscriberA gent2/appplugin/smartissue/MSGSmartIssue.mm:250: warning: comparison between signed and unsigned integer expressions
    /Users/administrator/perforce/saurabhs-MacBook/sdc/trunk/ridev/macos/SubscriberA gent2/appplugin/smartissue/MSGSmartIssue.mm: In function 'NSString* -[MSGSmartIssue splitAndDeleteNS:delimiter:](MSGSmartIssue*, objc_selector*, NSMutableString*, NSString*)':
    /Users/administrator/perforce/saurabhs-MacBook/sdc/trunk/ridev/macos/SubscriberA gent2/appplugin/smartissue/MSGSmartIssue.mm:259: warning: conflicting types for '-(NSString *)splitAndDeleteNS:(NSMutableString *)s delimiter:(NSString *)delimiter'
    /Users/administrator/perforce/saurabhs-MacBook/sdc/trunk/ridev/macos/SubscriberA gent2/appplugin/smartissue/MSGSmartIssue.h:55: warning: previous declaration of '-(NSString *)splitAndDeleteNS:(NSMutableString **)s delimiter:(NSString *)delimiter'
    /Users/administrator/perforce/saurabhs-MacBook/sdc/trunk/ridev/macos/SubscriberA gent2/appplugin/smartissue/MSGSmartIssue.mm: In function 'std::string stringReplace(std::string, std::string, std::string)':
    /Users/administrator/perforce/saurabhs-MacBook/sdc/trunk/ridev/macos/SubscriberA gent2/appplugin/smartissue/MSGSmartIssue.mm:275: warning: comparison between signed and unsigned integer expressions
    /Users/administrator/perforce/saurabhs-MacBook/sdc/trunk/ridev/macos/SubscriberA gent2/appplugin/smartissue/MSGSmartIssue.mm: In function 'NSString* -[MSGSmartIssue replaceXMLQuotedVarsWithValues:](MSGSmartIssue*, objc_selector*, NSString*)':
    /Users/administrator/perforce/saurabhs-MacBook/sdc/trunk/ridev/macos/SubscriberA gent2/appplugin/smartissue/MSGSmartIssue.mm:297: warning: 'stringWithContentsOfFile:' is deprecated (declared at /Developer/SDKs/MacOSX10.6.sdk/System/Library/Frameworks/Foundation.framework/H eaders/NSString.h:379)
    /Users/administrator/perforce/saurabhs-MacBook/sdc/trunk/ridev/macos/SubscriberA gent2/appplugin/smartissue/MSGSmartIssue.mm:307: warning: unused variable 'aE'
    /Users/administrator/perforce/saurabhs-MacBook/sdc/trunk/ridev/macos/SubscriberA gent2/appplugin/smartissue/MSGSmartIssue.mm: In function 'int -[MSGSmartIssue postSmartIssue:key:dataPath:siTemplate:conversion:](MSGSmartIssue*, objc_selector*, NSString*, NSString*, NSString*, NSString*, NSString*)':
    /Users/administrator/perforce/saurabhs-MacBook/sdc/trunk/ridev/macos/SubscriberA gent2/appplugin/smartissue/MSGSmartIssue.mm:466: error: cannot convert 'long int*' to 'SInt32*' for argument '5' to 'OSErr FindFolder(FSVolumeRefNum, OSType, Boolean, FSVolumeRefNum*, SInt32*)'
    /Users/administrator/perforce/saurabhs-MacBook/sdc/trunk/ridev/macos/SubscriberA gent2/appplugin/smartissue/MSGSmartIssue.mm:472: warning: 'cString' is deprecated (declared at /Developer/SDKs/MacOSX10.6.sdk/System/Library/Frameworks/Foundation.framework/H eaders/NSString.h:367)
    /Users/administrator/perforce/saurabhs-MacBook/sdc/trunk/ridev/macos/SubscriberA gent2/appplugin/smartissue/MSGSmartIssue.mm:475: warning: 'cString' is deprecated (declared at /Developer/SDKs/MacOSX10.6.sdk/System/Library/Frameworks/Foundation.framework/H eaders/NSString.h:367)
    /Users/administrator/perforce/saurabhs-MacBook/sdc/trunk/ridev/macos/SubscriberA gent2/appplugin/smartissue/MSGSmartIssue.mm:487: warning: unused variable 'siResponse'
    /Users/administrator/perforce/saurabhs-MacBook/sdc/trunk/ridev/macos/SubscriberA gent2/appplugin/smartissue/MSGSmartIssue.mm: In function 'NSString* -[MSGSmartIssue httpPost:withdata:](MSGSmartIssue*, objc_selector*, NSString*, NSString*)':
    /Users/administrator/perforce/saurabhs-MacBook/sdc/trunk/ridev/macos/SubscriberA gent2/appplugin/smartissue/MSGSmartIssue.mm:502: warning: 'cString' is deprecated (declared at /Developer/SDKs/MacOSX10.6.sdk/System/Library/Frameworks/Foundation.framework/H eaders/NSString.h:367)
    /Users/administrator/perforce/saurabhs-MacBook/sdc/trunk/ridev/macos/SubscriberA gent2/appplugin/smartissue/MSGSmartIssue.mm:503: warning: 'cString' is deprecated (declared at /Developer/SDKs/MacOSX10.6.sdk/System/Library/Frameworks/Foundation.framework/H eaders/NSString.h:367)
    CompileC build/SMASmartIssue.build/Development/MSGSmartIssue.build/Objects-normal/x86_64 /GetSystemInfo.o GetSystemInfo.cp normal x86_64 c++ com.apple.compilers.gcc.4_2
    cd /Users/administrator/perforce/saurabhs-MacBook/sdc/trunk/ridev/macos/Subscriber Agent2/appplugin/smartissue
    setenv LANG en_US.US-ASCII
    /Developer/usr/bin/gcc-4.2 -x c++ -arch x86_64 -fmessage-length=0 -pipe -Wno-trigraphs -fpascal-strings -fasm-blocks -O0 -isysroot /Developer/SDKs/MacOSX10.6.sdk -mfix-and-continue -fvisibility-inlines-hidden -mmacosx-version-min=10.6 -gdwarf-2 -I/Users/administrator/perforce/saurabhs-MacBook/sdc/trunk/ridev/macos/Subscrib erAgent2/appplugin/smartissue/build/SMASmartIssue.build/Development/MSGSmartIssu e.build/MSGSmartIssue.hmap -Wmost -Wno-four-char-constants -Wno-unknown-pragmas -F/Users/administrator/perforce/saurabhs-MacBook/sdc/trunk/ridev/macos/Subscrib erAgent2/appplugin/smartissue/build/Development -I/Users/administrator/perforce/saurabhs-MacBook/sdc/trunk/ridev/macos/Subscrib erAgent2/appplugin/smartissue/build/Development/include -I/Users/administrator/perforce/saurabhs-MacBook/sdc/trunk/ridev/macos/Subscrib erAgent2/appplugin/smartissue/build/SMASmartIssue.build/Development/MSGSmartIssu e.build/DerivedSources/x86_64 -I/Users/administrator/perforce/saurabhs-MacBook/sdc/trunk/ridev/macos/Subscrib erAgent2/appplugin/smartissue/build/SMASmartIssue.build/Development/MSGSmartIssu e.build/DerivedSources -I /Users/admin/Perforce/saurabh/sdc/trunk/ridev/macos/SubscriberAgent2/MoreFiles/ Sources -c /Users/administrator/perforce/saurabhs-MacBook/sdc/trunk/ridev/macos/Subscriber Agent2/appplugin/smartissue/GetSystemInfo.cp -o /Users/administrator/perforce/saurabhs-MacBook/sdc/trunk/ridev/macos/Subscriber Agent2/appplugin/smartissue/build/SMASmartIssue.build/Development/MSGSmartIssue. build/Objects-normal/x86_64/GetSystemInfo.o
    In file included from /Users/administrator/perforce/saurabhs-MacBook/sdc/trunk/ridev/macos/Subscriber Agent2/appplugin/smartissue/GetSystemInfo.cp:9:
    /Users/administrator/perforce/saurabhs-MacBook/sdc/trunk/ridev/macos/SubscriberA gent2/appplugin/smartissue/../../MoreFiles/Sources/MoreFilesExtras.h:153: error: field 'PB' has incomplete type
    /Users/administrator/perforce/saurabhs-MacBook/sdc/trunk/ridev/macos/SubscriberA gent2/appplugin/smartissue/../../MoreFiles/Sources/MoreFilesExtras.h:154: error: 'CInfoPBRec' does not name a type
    /Users/administrator/perforce/saurabhs-MacBook/sdc/trunk/ridev/macos/SubscriberA gent2/appplugin/smartissue/../../MoreFiles/Sources/MoreFilesExtras.h:155: error: 'DTPBRec' does not name a type
    /Users/administrator/perforce/saurabhs-MacBook/sdc/trunk/ridev/macos/SubscriberA gent2/appplugin/smartissue/../../MoreFiles/Sources/MoreFilesExtras.h:156: error: 'HParamBlockRec' does not name a type
    /Users/administrator/perforce/saurabhs-MacBook/sdc/trunk/ridev/macos/SubscriberA gent2/appplugin/smartissue/../../MoreFiles/Sources/MoreFilesExtras.h:157: error: 'CMovePBRec' does not name a type
    /Users/administrator/perforce/saurabhs-MacBook/sdc/trunk/ridev/macos/SubscriberA gent2/appplugin/smartissue/../../MoreFiles/Sources/MoreFilesExtras.h:158: error: 'WDPBRec' does not name a type
    /Users/administrator/perforce/saurabhs-MacBook/sdc/trunk/ridev/macos/SubscriberA gent2/appplugin/smartissue/../../MoreFiles/Sources/MoreFilesExtras.h:159: error: 'FCBPBRec' does not name a type
    /Users/administrator/perforce/saurabhs-MacBook/sdc/trunk/ridev/macos/SubscriberA gent2/appplugin/smartissue/../../MoreFiles/Sources/MoreFilesExtras.h:160: error: 'XVolumeParam' does not name a type
    /Users/administrator/perforce/saurabhs-MacBook/sdc/trunk/ridev/macos/SubscriberA gent2/appplugin/smartissue/../../MoreFiles/Sources/MoreFilesExtras.h:536: error: 'HParmBlkPtr' has not been declared
    /Users/administrator/perforce/saurabhs-MacBook/sdc/trunk/ridev/macos/SubscriberA gent2/appplugin/smartissue/../../MoreFiles/Sources/MoreFilesExtras.h:571: error: 'XVolumeParamPtr' has not been declared
    /Users/administrator/perforce/saurabhs-MacBook/sdc/trunk/ridev/macos/SubscriberA gent2/appplugin/smartissue/../../MoreFiles/Sources/MoreFilesExtras.h:604: error: 'CInfoPBPtr' has not been declared
    /Users/administrator/perforce/saurabhs-MacBook/sdc/trunk/ridev/macos/SubscriberA gent2/appplugin/smartissue/GetSystemInfo.cp: In function 'long int GetOSVersion()':
    /Users/administrator/perforce/saurabhs-MacBook/sdc/trunk/ridev/macos/SubscriberA gent2/appplugin/smartissue/GetSystemInfo.cp:15: error: cannot convert 'long int*' to 'SInt32*' for argument '2' to 'OSErr Gestalt(OSType, SInt32*)'
    /Users/administrator/perforce/saurabhs-MacBook/sdc/trunk/ridev/macos/SubscriberA gent2/appplugin/smartissue/GetSystemInfo.cp: In function 'long int GetRAMSize()':
    /Users/administrator/perforce/saurabhs-MacBook/sdc/trunk/ridev/macos/SubscriberA gent2/appplugin/smartissue/GetSystemInfo.cp:68: error: cannot convert 'long int*' to 'SInt32*' for argument '2' to 'OSErr Gestalt(OSType, SInt32*)'
    /Users/administrator/perforce/saurabhs-MacBook/sdc/trunk/ridev/macos/SubscriberA gent2/appplugin/smartissue/GetSystemInfo.cp: In function 'long int GetCPUClockSpeed()':
    /Users/administrator/perforce/saurabhs-MacBook/sdc/trunk/ridev/macos/SubscriberA gent2/appplugin/smartissue/GetSystemInfo.cp:75: error: cannot convert 'long int*' to 'SInt32*' for argument '2' to 'OSErr Gestalt(OSType, SInt32*)'
    /Users/administrator/perforce/saurabhs-MacBook/sdc/trunk/ridev/macos/SubscriberA gent2/appplugin/smartissue/GetSystemInfo.cp: In function 'long int GetCPUType()':
    /Users/administrator/perforce/saurabhs-MacBook/sdc/trunk/ridev/macos/SubscriberA gent2/appplugin/smartissue/GetSystemInfo.cp:82: error: cannot convert 'long int*' to 'SInt32*' for argument '2' to 'OSErr Gestalt(OSType, SInt32*)'
    CompileC build/SMASmartIssue.build/Development/MSGSmartIssue.build/Objects-normal/x86_64 /SmartIssue.o SmartIssue.cp normal x86_64 c++ com.apple.compilers.gcc.4_2
    cd /Users/administrator/perforce/saurabhs-MacBook/sdc/trunk/ridev/macos/Subscriber Agent2/appplugin/smartissue
    setenv LANG en_US.US-ASCII
    /Developer/usr/bin/gcc-4.2 -x c++ -arch x86_64 -fmessage-length=0 -pipe -Wno-trigraphs -fpascal-strings -fasm-blocks -O0 -isysroot /Developer/SDKs/MacOSX10.6.sdk -mfix-and-continue -fvisibility-inlines-hidden -mmacosx-version-min=10.6 -gdwarf-2 -I/Users/administrator/perforce/saurabhs-MacBook/sdc/trunk/ridev/macos/Subscrib erAgent2/appplugin/smartissue/build/SMASmartIssue.build/Development/MSGSmartIssu e.build/MSGSmartIssue.hmap -Wmost -Wno-four-char-constants -Wno-unknown-pragmas -F/Users/administrator/perforce/saurabhs-MacBook/sdc/trunk/ridev/macos/Subscrib erAgent2/appplugin/smartissue/build/Development -I/Users/administrator/perforce/saurabhs-MacBook/sdc/trunk/ridev/macos/Subscrib erAgent2/appplugin/smartissue/build/Development/include -I/Users/administrator/perforce/saurabhs-MacBook/sdc/trunk/ridev/macos/Subscrib erAgent2/appplugin/smartissue/build/SMASmartIssue.build/Development/MSGSmartIssu e.build/DerivedSources/x86_64 -I/Users/administrator/perforce/saurabhs-MacBook/sdc/trunk/ridev/macos/Subscrib erAgent2/appplugin/smartissue/build/SMASmartIssue.build/Development/MSGSmartIssu e.build/DerivedSources -c /Users/administrator/perforce/saurabhs-MacBook/sdc/trunk/ridev/macos/Subscriber Agent2/appplugin/smartissue/SmartIssue.cp -o /Users/administrator/perforce/saurabhs-MacBook/sdc/trunk/ridev/macos/Subscriber Agent2/appplugin/smartissue/build/SMASmartIssue.build/Development/MSGSmartIssue. build/Objects-normal/x86_64/SmartIssue.o
    /Users/administrator/perforce/saurabhs-MacBook/sdc/trunk/ridev/macos/SubscriberA gent2/appplugin/smartissue/SmartIssue.cp: In function 'std::string HTTPPost(std::string&, std::string&)':
    /Users/administrator/perforce/saurabhs-MacBook/sdc/trunk/ridev/macos/SubscriberA gent2/appplugin/smartissue/SmartIssue.cp:132: error: 'URLNewReference' was not declared in this scope
    /Users/administrator/perforce/saurabhs-MacBook/sdc/trunk/ridev/macos/SubscriberA gent2/appplugin/smartissue/SmartIssue.cp:134: error: 'URLSetProperty' was not declared in this scope
    /Users/administrator/perforce/saurabhs-MacBook/sdc/trunk/ridev/macos/SubscriberA gent2/appplugin/smartissue/SmartIssue.cp:136: error: 'URLDownload' was not declared in this scope
    /Users/administrator/perforce/saurabhs-MacBook/sdc/trunk/ridev/macos/SubscriberA gent2/appplugin/smartissue/SmartIssue.cp:137: error: 'URLDisposeReference' was not declared in this scope
    CompileC build/SMASmartIssue.build/Development/MSGSmartIssue.build/Objects-normal/x86_64 /MoreFilesExtras.o ../../MoreFiles/Sources/MoreFilesExtras.c normal x86_64 c com.apple.compilers.gcc.4_2
    cd /Users/administrator/perforce/saurabhs-MacBook/sdc/trunk/ridev/macos/Subscriber Agent2/appplugin/smartissue
    setenv LANG en_US.US-ASCII
    /Developer/usr/bin/gcc-4.2 -x c -arch x86_64 -fmessage-length=0 -pipe -Wno-trigraphs -fpascal-strings -fasm-blocks -O0 -isysroot /Developer/SDKs/MacOSX10.6.sdk -mfix-and-continue -mmacosx-version-min=10.6 -gdwarf-2 -I/Users/administrator/perforce/saurabhs-MacBook/sdc/trunk/ridev/macos/Subscrib erAgent2/appplugin/smartissue/build/SMASmartIssue.build/Development/MSGSmartIssu e.build/MSGSmartIssue.hmap -Wmost -Wno-four-char-constants -Wno-unknown-pragmas -F/Users/administrator/perforce/saurabhs-MacBook/sdc/trunk/ridev/macos/Subscrib erAgent2/appplugin/smartissue/build/Development -I/Users/administrator/perforce/saurabhs-MacBook/sdc/trunk/ridev/macos/Subscrib erAgent2/appplugin/smartissue/build/Development/include -I/Users/administrator/perforce/saurabhs-MacBook/sdc/trunk/ridev/macos/Subscrib erAgent2/appplugin/smartissue/build/SMASmartIssue.build/Development/MSGSmartIssu e.build/DerivedSources/x86_64 -I/Users/administrator/perforce/saurabhs-MacBook/sdc/trunk/ridev/macos/Subscrib erAgent2/appplugin/smartissue/build/SMASmartIssue.build/Development/MSGSmartIssu e.build/DerivedSources -I /Developer/SDKS/MacOSX10.6u.sdk/Developer/Headers/FlatCarbon -c /Users/administrator/perforce/saurabhs-MacBook/sdc/trunk/ridev/macos/Subscriber Agent2/appplugin/smartissue/../../MoreFiles/Sources/MoreFilesExtras.c -o /Users/administrator/perforce/saurabhs-MacBook/sdc/trunk/ridev/macos/Subscriber Agent2/appplugin/smartissue/build/SMASmartIssue.build/Development/MSGSmartIssue. build/Objects-normal/x86_64/MoreFilesExtras.o
    In file included from /Users/administrator/perforce/saurabhs-MacBook/sdc/trunk/ridev/macos/Subscriber Agent2/appplugin/smartissue/../../MoreFiles/Sources/MoreFilesExtras.c:103:
    /Users/administrator/perforce/saurabhs-MacBook/sdc/trunk/ridev/macos/SubscriberA gent2/appplugin/smartissue/../../MoreFiles/Sources/MoreFilesExtras.h:153: error: field 'PB' has incomplete type
    /Users/administrator/perforce/saurabhs-MacBook/sdc/trunk/ridev/macos/SubscriberA gent2/appplugin/smartissue/../../MoreFiles/Sources/MoreFilesExtras.h:154: error: expected specifier-qualifier-list before 'CInfoPBRec'
    /Users/administrator/perforce/saurabhs-MacBook/sdc/trunk/ridev/macos/SubscriberA gent2/appplugin/smartissue/../../MoreFiles/Sources/MoreFilesExtras.h:536: error: expected declaration specifiers or '...' before 'HParmBlkPtr'
    /Users/administrator/perforce/saurabhs-MacBook/sdc/trunk/ridev/macos/SubscriberA gent2/appplugin/smartissue/../../MoreFiles/Sources/MoreFilesExtras.h:571: error: expected declaration specifiers or '...' before 'XVolumeParamPtr'
    /Users/administrator/perforce/saurabhs-MacBook/sdc/trunk/ridev/macos/SubscriberA gent2/appplugin/smartissue/../../MoreFiles/Sources/MoreFilesExtras.h:604: error: expected declaration specifiers or '...' before 'CInfoPBPtr'
    /Users/administrator/perforce/saurabhs-MacBook/sdc/trunk/ridev/macos/SubscriberA gent2/appplugin/smartissue/../../MoreFiles/Sources/MoreFilesExtras.c: In function 'GenerateUniqueName':
    /Users/administrator/perforce/saurabhs-MacBook/sdc/trunk/ridev/macos/SubscriberA gent2/appplugin/smartissue/../../MoreFiles/Sources/MoreFilesExtras.c:499: error: 'CInfoPBRec' undeclared (first use in this function)
    /Users/administrator/perforce/saurabhs-MacBook/sdc/trunk/ridev/macos/SubscriberA gent2/appplugin/smartissue/../../MoreFiles/Sources/MoreFilesExtras.c:499: error: (Each undeclared identifier is reported only once
    /Users/administrator/perforce/saurabhs-MacBook/sdc/trunk/ridev/macos/SubscriberA gent2/appplugin/smartissue/../../MoreFiles/Sources/MoreFilesExtras.c:499: error: for each function it appears in.)
    /Users/administrator/perforce/saurabhs-MacBook/sdc/trunk/ridev/macos/SubscriberA gent2/appplugin/smartissue/../../MoreFiles/Sources/MoreFilesExtras.c:499: error: expected ';' before 'cinfo'
    /Users/administrator/perforce/saurabhs-MacBook/sdc/trunk/ridev/macos/SubscriberA gent2/appplugin/smartissue/../../MoreFiles/Sources/MoreFilesExtras.c:514: error: 'cinfo' undeclared (first use in this function)
    /Users/administrator/perforce/saurabhs-MacBook/sdc/trunk/ridev/macos/SubscriberA gent2/appplugin/smartissue/../../MoreFiles/Sources/MoreFilesExtras.c:530: warning: implicit declaration of function 'PBGetCatInfoSync'
    /Users/administrator/perforce/saurabhs-MacBook/sdc/trunk/ridev/macos/SubscriberA gent2/appplugin/smartissue/../../MoreFiles/Sources/MoreFilesExtras.c: In function 'TruncPString':
    /Users/administrator/perforce/saurabhs-MacBook/sdc/trunk/ridev/macos/SubscriberA gent2/appplugin/smartissue/../../MoreFiles/Sources/MoreFilesExtras.c:558: warning: implicit declaration of function 'CharacterByteType'
    /Users/administrator/perforce/saurabhs-MacBook/sdc/trunk/ridev/macos/SubscriberA gent2/appplugin/smartissue/../../MoreFiles/Sources/MoreFilesExtras.c: In function 'GetTempBuffer':
    /Users/administrator/perforce/saurabhs-MacBook/sdc/trunk/ridev/macos/SubscriberA gent2/appplugin/smartissue/../../MoreFiles/Sources/MoreFilesExtras.c:612: warning: implicit declaration of function 'FreeMem'
    /Users/administrator/perforce/saurabhs-MacBook/sdc/trunk/ridev/macos/SubscriberA gent2/appplugin/smartissue/../../MoreFiles/Sources/MoreFilesExtras.c:614: warning: implicit declaration of function 'MaxBlock'
    /Users/administrator/perforce/saurabhs-MacBook/sdc/trunk/ridev/macos/SubscriberA gent2/appplugin/smartissue/../../MoreFiles/Sources/MoreFilesExtras.c: At top level:
    /Users/administrator/perforce/saurabhs-MacBook/sdc/trunk/ridev/macos/SubscriberA gent2/appplugin/smartissue/../../MoreFiles/Sources/MoreFilesExtras.c:657: error: expected declaration specifiers or '...' before 'HParmBlkPtr'
    /Users/administrator/perforce/saurabhs-MacBook/sdc/trunk/ridev/macos/SubscriberA gent2/appplugin/smartissue/../../MoreFiles/Sources/MoreFilesExtras.c: In function 'GetVolumeInfoNoName':
    /Users/administrator/perforce/saurabhs-MacBook/sdc/trunk/ridev/macos/SubscriberA gent2/appplugin/smartissue/../../MoreFiles/Sources/MoreFilesExtras.c:663: error: 'pb' undeclared (first use in this function)
    /Users/administrator/perforce/saurabhs-MacBook/sdc/trunk/ridev/macos/SubscriberA gent2/appplugin/smartissue/../../MoreFiles/Sources/MoreFilesExtras.c:673: warning: implicit declaration of function 'BlockMoveData'
    /Users/administrator/perforce/saurabhs-MacBook/sdc/trunk/ridev/macos/SubscriberA gent2/appplugin/smartissue/../../MoreFiles/Sources/MoreFilesExtras.c:677: warning: implicit declaration of function 'PBHGetVInfoSync'
    /Users/administrator/perforce/saurabhs-MacBook/sdc/trunk/ridev/macos/SubscriberA gent2/appplugin/smartissue/../../MoreFiles/Sources/MoreFilesExtras.c: At top level:
    /Users/administrator/perforce/saurabhs-MacBook/sdc/trunk/ridev/macos/SubscriberA gent2/appplugin/smartissue/../../MoreFiles/Sources/MoreFilesExtras.c:699: error: expected declaration specifiers or '...' before 'XVolumeParamPtr'
    /Users/administrator/perforce/saurabhs-MacBook/sdc/trunk/ridev/macos/SubscriberA gent2/appplugin/smartissue/../../MoreFiles/Sources/MoreFilesExtras.c: In function 'XGetVolumeInfoNoName':
    /Users/administrator/perforce/saurabhs-MacBook/sdc/trunk/ridev/macos/SubscriberA gent2/appplugin/smartissue/../../MoreFiles/Sources/MoreFilesExtras.c:705: error: 'pb' undeclared (first use in this function)
    /Users/administrator/perforce/saurabhs-MacBook/sdc/trunk/ridev/macos/SubscriberA gent2/appplugin/smartissue/../../MoreFiles/Sources/MoreFilesExtras.c:741: warning: implicit declaration of function 'PBXGetVolInfoSync'
    /Users/administrator/perforce/saurabhs-MacBook/sdc/trunk/ridev/macos/SubscriberA gent2/appplugin/smartissue/../../MoreFiles/Sources/MoreFilesExtras.c: At top level:
    /Users/administrator/perforce/saurabhs-MacBook/sdc/trunk/ridev/macos/SubscriberA gent2/appplugin/smartissue/../../MoreFiles/Sources/MoreFilesExtras.c:758: error: expected declaration specifiers or '...' before 'CInfoPBPtr'
    /Users/administrator/perforce/saurabhs-MacBook/sdc/trunk/ridev/macos/SubscriberA gent2/appplugin/smartissue/../../MoreFiles/Sources/MoreFilesExtras.c: In function 'GetCatInfoNoName':
    /Users/administrator/perforce/saurabhs-MacBook/sdc/trunk/ridev/macos/SubscriberA gent2/appplugin/smartissue/../../MoreFiles/Sources/MoreFilesExtras.c:767: error: 'pb' undeclared (first use in this function)
    /Users/administrator/perforce/saurabhs-MacBook/sdc/trunk/ridev/macos/SubscriberA gent2/appplugin/smartissue/../../MoreFiles/Sources/MoreFilesExtras.c: In function 'DetermineVRefNum':
    /Users/administrator/perforce/saurabhs-MacBook/sdc/trunk/ridev/macos/SubscriberA gent2/appplugin/smartissue/../../MoreFiles/Sources/MoreFilesExtras.c:788: error: 'HParamBlockRec' undeclared (first use in this function)
    /Users/administrator/perforce/saurabhs-MacBook/sdc/trunk/ridev/macos/SubscriberA gent2/appplugin/smartissue/../../MoreFiles/Sources/MoreFilesExtras.c:788: error: expected ';' before 'pb'
    /Users/administrator/perforce/saurabhs-MacBook/sdc/trunk/ridev/macos/SubscriberA gent2/appplugin/smartissue/../../MoreFiles/Sources/MoreFilesExtras.c:791: error: 'pb' undeclared (first use in this function)
    /Users/administrator/perforce/saurabhs-MacBook/sdc/trunk/ridev/macos/SubscriberA gent2/appplugin/smartissue/../../MoreFiles/Sources/MoreFilesExtras.c:791: error: too many arguments to function 'GetVolumeInfoNoName'
    /Users/administrator/perforce/saurabhs-MacBook/sdc/trunk/ridev/macos/SubscriberA gent2/appplugin/smartissue/../../MoreFiles/Sources/MoreFilesExtras.c: In function 'XGetVInfo':
    /Users/administrator/perforce/saurabhs-MacBook/sdc/trunk/ridev/macos/SubscriberA gent2/appplugin/smartissue/../../MoreFiles/Sources/MoreFilesExtras.c:849: error: 'XVolumeParam' undeclared (first use in this function)
    /Users/administrator/perforce/saurabhs-MacBook/sdc/trunk/ridev/macos/SubscriberA gent2/appplugin/smartissue/../../MoreFiles/Sources/MoreFilesExtras.c:849: error: expected ';' before 'pb'
    /Users/administrator/perforce/saurabhs-MacBook/sdc/trunk/ridev/macos/SubscriberA gent2/appplugin/smartissue/../../MoreFiles/Sources/MoreFilesExtras.c:857: error: 'pb' undeclared (first use in this function)
    /Users/administrator/perforce/saurabhs-MacBook/sdc/trunk/ridev/macos/SubscriberA gent2/appplugin/smartissue/../../MoreFiles/Sources/MoreFilesExtras.c: In function 'CheckVolLock':
    /Users/administrator/perforce/saurabhs-MacBook/sdc/trunk/ridev/macos/SubscriberA gent2/appplugin/smartissue/../../MoreFiles/Sources/MoreFilesExtras.c:950: error: 'HParamBlockRec' undeclared (first use in this function)
    /Users/administrator/perforce/saurabhs-MacBook/sdc/trunk/ridev/macos/SubscriberA gent2/appplugin/smartissue/../../MoreFiles/Sources/MoreFilesExtras.c:950: error: expected ';' before 'pb'
    /Users/administrator/perforce/saurabhs-MacBook/sdc/trunk/ridev/macos/SubscriberA gent2/appplugin/smartissue/../../MoreFiles/Sources/MoreFilesExtras.c:953: error: 'pb' undeclared (first use in this function)
    /Users/administrator/perforce/saurabhs-MacBook/sdc/trunk/ridev/macos/SubscriberA gent2/appplugin/smartissue/../../MoreFiles/Sources/MoreFilesExtras.c:953: error: too many arguments to function 'GetVolumeInfoNoName'
    /Users/administrator/perforce/saurabhs-MacBook/sdc/trunk/ridev/macos/SubscriberA gent2/appplugin/smartissue/../../MoreFiles/Sources/MoreFilesExtras.c: In function 'GetVolFileSystemID':
    /Users/administrator/perforce/saurabhs-MacBook/sdc/trunk/ridev/macos/SubscriberA gent2/appplugin/smartissue/../../MoreFiles/Sources/MoreFilesExtras.c:1330: error: 'HParamBlockRec' undeclared (first use in this function)
    /Users/administrator/perforce/saurabhs-MacBook/sdc/trunk/ridev/macos/SubscriberA gent2/appplugin/smartissue/../../MoreFiles/Sources/MoreFilesExtras.c:1330: error: expected ';' before 'pb'
    /Users/administrator/perforce/saurabhs-MacBook/sdc/trunk/ridev/macos/SubscriberA gent2/appplugin/smartissue/../../MoreFiles/Sources/MoreFilesExtras.c:1333: error: 'pb' undeclared (first use in this function)
    /Users/administrator/perforce/saurabhs-MacBook/sdc/trunk/ridev/macos/SubscriberA gent2/appplugin/smartissue/../../MoreFiles/Sources/MoreFilesExtras.c:1333: error: too many arguments to function 'GetVolumeInfoNoName'
    /Users/administrator/perforce/saurabhs-MacBook/sdc/trunk/ridev/macos/SubscriberA gent2/appplugin/smartissue/../../MoreFiles/Sources/MoreFilesExtras.c: In function 'UnmountAndEject':
    /Users/administrator/perforce/saurabhs-MacBook/sdc/trunk/ridev/macos/SubscriberA gent2/appplugin/smartissue/../../MoreFiles/Sources/MoreFilesExtras.c:1354: error: 'HParamBlockRec' undeclared (first use in this func

    That code is ancient. It will never build on 32-bit. You need a re-write.

  • Frequent Logic 9.1.7 crashes ... again!

    Hi,all of you wise people,
    Here I come with another Logic frequent crashing issue. It does it every ten,or so minutes,sometimes during working,sometimes upon quitting ??!!
    At first,I reinstalled the Logic program,then the BFD2(the only non Apple plug on my system),and,finaly the whole system(10.6.8) . Just finished with that,and when I tried out Logic,minutes ago,it crashed again,upon quitting ... !!! It is beyond my knowledge,as to what can be wrong! I've read your numerous advices,here,and installed the latest Prokit Framework,cuz that's the only tip,that applied to me - I have the simplest setup ever - Logic Pro 9.1.7,BFD2,latest version,Lexicon Alpha USB sound I/O,and over MIDI there is a Roland JV1010 and E-mu ProFormance Piano Module.My master keys is Yamaha KX8 connected over USB to the iMac,and my config is iMac 2.8 GHz Core 2 Duo,4GB RAM,320 GB Intenal HD,500GB LaCie D2 external HD over FW800(where the AUDIO DATA of BFD2 is stored) MacOS Snow Leopard 10.6.8 ... and that's it! Both Logic and BFD2 are running in 32 bit mode.
    And,again,from reading people's tips here,I include my latest crash report.
    If anyone has the time,or willingness to help me find out what,on earth,can be the issue here,I would be very grateful !
    Cheers 2 all,
    George
    Process:         Logic Pro [1442]
    Path:            /Applications/Logic Pro.app/Contents/MacOS/Logic Pro
    Identifier:      com.apple.logic.pro
    Version:         9.1.7 (1700.57)
    Build Info:      Logic-17005700~1
    Code Type:       X86 (Native)
    Parent Process:  launchd [104]
    Date/Time:       2012-09-23 17:00:14.184 +0200
    OS Version:      Mac OS X 10.6.8 (10K549)
    Report Version:  6
    Exception Type:  EXC_BAD_ACCESS (SIGABRT)
    Exception Codes: KERN_PROTECTION_FAILURE at 0x000000000000000d
    Crashed Thread:  0  Dispatch queue: com.apple.main-thread
    Application Specific Information:
    abort() called
    Thread 0 Crashed:  Dispatch queue: com.apple.main-thread
    0   libSystem.B.dylib                       0x93707c5a __kill + 10
    1   libSystem.B.dylib                       0x93707c4c kill$UNIX2003 + 32
    2   libSystem.B.dylib                       0x9379a5a5 raise + 26
    3   libSystem.B.dylib                       0x937b0679 __abort + 124
    4   libSystem.B.dylib                       0x937b06f5 abort_report_np + 0
    5   com.apple.logic.pro                     0x003e50c9 std::ostream& TraceOutContainer<CEvs>(std::ostream&, CEvs, char const*, int) + 3839577
    6   libSystem.B.dylib                       0x9370d05b _sigtramp + 43
    7   ???                                     0x0000000a 0 + 10
    8   com.FXpansion.BFD2                      0x4ed2d5ec VFoundation::VObjectContainer::RemoveAllObjects() + 72
    9   com.FXpansion.BFD2                      0x4ed2d663 VFoundation::VObjectContainer::FreeMem() + 55
    10  com.FXpansion.BFD2                      0x4ed2d76d VFoundation::VObjectContainer::~VObjectContainer() + 51
    11  com.FXpansion.BFD2                      0x4e9e8a90 VFoundation::VObjectArrayTmpl<BFD2VelLayer>::~VObjectArrayTmpl() + 48
    12  com.FXpansion.BFD2                      0x4ea365c3 BFD2Artic::~BFD2Artic() + 131
    13  com.FXpansion.BFD2                      0x4ed2d5ec VFoundation::VObjectContainer::RemoveAllObjects() + 72
    14  com.FXpansion.BFD2                      0x4ed2d663 VFoundation::VObjectContainer::FreeMem() + 55
    15  com.FXpansion.BFD2                      0x4ed2d76d VFoundation::VObjectContainer::~VObjectContainer() + 51
    16  com.FXpansion.BFD2                      0x4ea3b360 VFoundation::VObjectArrayTmpl<BFD2Artic>::~VObjectArrayTmpl() + 48
    17  com.FXpansion.BFD2                      0x4ea3d61c BFD2KitPiece::~BFD2KitPiece() + 380
    18  com.FXpansion.BFD2                      0x4ed2d5ec VFoundation::VObjectContainer::RemoveAllObjects() + 72
    19  com.FXpansion.BFD2                      0x4ed2d663 VFoundation::VObjectContainer::FreeMem() + 55
    20  com.FXpansion.BFD2                      0x4ed2d76d VFoundation::VObjectContainer::~VObjectContainer() + 51
    21  com.FXpansion.BFD2                      0x4ea398e1 BFD2Kit::~BFD2Kit() + 97
    22  com.FXpansion.BFD2                      0x4e956795 BFD2::~BFD2() + 1685
    23  com.FXpansion.BFD2                      0x4ec5157b AudioEffect::dispatchEffectClass(AEffect*, int, int, int, void*, float) + 107
    24  com.FXpansion.BFD2                      0x4edfdbc0 VST2AU::CPluginWrapperLite::CallDispatcherFP(int, int, int, void*, float) + 68
    25  com.FXpansion.BFD2                      0x4edfcfdb VST2AU::CPluginWrapperLite::UnloadPlugin() + 151
    26  com.FXpansion.BFD2                      0x4edfb2ef CVST2AUPlugin<CAuEntryPointMusicDeviceBase>::~CVST2AUPlugin() + 713
    27  com.FXpansion.BFD2                      0x4ee0b3e7 ComponentBase::ComponentEntryDispatch(ComponentParameters*, ComponentBase*) + 107
    28  com.FXpansion.BFD2                      0x4ee07f27 AUBase::ComponentEntryDispatch(ComponentParameters*, AUBase*) + 2243
    29  com.FXpansion.BFD2                      0x4ee0e937 MusicDeviceBase::ComponentEntryDispatch(ComponentParameters*, MusicDeviceBase*) + 453
    30  com.FXpansion.BFD2                      0x4eb504ee CVST2AUPluginEntry + 46
    31  ...ple.CoreServices.CarbonCore          0x900f551f CallComponentDispatch + 29
    32  ...ple.CoreServices.CarbonCore          0x900f58a8 CallComponentClose + 43
    33  ...ple.CoreServices.CarbonCore          0x900f57d1 CloseComponentInternal(ComponentInstanceRecord*) + 101
    34  ...ple.CoreServices.CarbonCore          0x900f5752 CloseComponent + 46
    35  com.apple.logic.pro                     0x00595b42 std::ostream& TraceOutContainer<CEvs>(std::ostream&, CEvs, char const*, int) + 5611730
    36  ...le.music.apps.MAAudioEngine          0x02af167f MD::DisposePlug(CPlugIn*) + 655
    37  com.apple.logic.pro                     0x0013db3c std::ostream& TraceOutContainer<CEvs>(std::ostream&, CEvs, char const*, int) + 1056972
    38  com.apple.logic.pro                     0x0005e29c std::ostream& TraceOutContainer<CEvs>(std::ostream&, CEvs, char const*, int) + 141356
    39  com.apple.logic.pro                     0x0005eb73 std::ostream& TraceOutContainer<CEvs>(std::ostream&, CEvs, char const*, int) + 143619
    40  com.apple.logic.pro                     0x00061402 std::ostream& TraceOutContainer<CEvs>(std::ostream&, CEvs, char const*, int) + 154002
    41  com.apple.logic.pro                     0x000b9228 std::ostream& TraceOutContainer<CEvs>(std::ostream&, CEvs, char const*, int) + 513976
    42  com.apple.logic.pro                     0x000b9335 std::ostream& TraceOutContainer<CEvs>(std::ostream&, CEvs, char const*, int) + 514245
    43  com.apple.logic.pro                     0x003e4cec std::ostream& TraceOutContainer<CEvs>(std::ostream&, CEvs, char const*, int) + 3838588
    44  com.apple.logic.pro                     0x001cca6c std::ostream& TraceOutContainer<CEvs>(std::ostream&, CEvs, char const*, int) + 1642492
    45  com.apple.logic.pro                     0x006173f3 std::ostream& TraceOutContainer<CEvs>(std::ostream&, CEvs, char const*, int) + 6142339
    46  com.apple.Foundation                    0x98c80db3 _nsnote_callback + 176
    47  com.apple.CoreFoundation                0x98077763 __CFXNotificationPost + 947
    48  com.apple.CoreFoundation                0x9807716a _CFXNotificationPostNotification + 186
    49  com.apple.Foundation                    0x98c75c50 -[NSNotificationCenter postNotificationName:object:userInfo:] + 128
    50  com.apple.Foundation                    0x98c8305d -[NSNotificationCenter postNotificationName:object:] + 56
    51  com.apple.AppKit                        0x9a089167 -[NSApplication terminate:] + 713
    52  com.apple.prokit                        0x00fc303c -[NSProApplication terminate:] + 186
    53  com.apple.logic.pro                     0x005f721f std::ostream& TraceOutContainer<CEvs>(std::ostream&, CEvs, char const*, int) + 6010799
    54  com.apple.AppKit                        0x99e8ea26 -[NSApplication sendAction:to:from:] + 112
    55  com.apple.prokit                        0x00fc3464 -[NSProApplication sendAction:to:from:] + 127
    56  com.apple.logic.pro                     0x005f72fa std::ostream& TraceOutContainer<CEvs>(std::ostream&, CEvs, char const*, int) + 6011018
    57  com.apple.AppKit                        0x99e8e8d9 -[NSMenuItem _corePerformAction] + 435
    58  com.apple.AppKit                        0x99e8e5ca -[NSCarbonMenuImpl performActionWithHighlightingForItemAtIndex:] + 174
    59  com.apple.AppKit                        0x99e8e4b6 -[NSMenu performActionForItemAtIndex:] + 65
    60  com.apple.AppKit                        0x99e8e469 -[NSMenu _internalPerformActionForItemAtIndex:] + 50
    61  com.apple.AppKit                        0x99e8e3cf -[NSMenuItem _internalPerformActionThroughMenuIfPossible] + 97
    62  com.apple.AppKit                        0x99e8e313 -[NSCarbonMenuImpl _carbonCommandProcessEvent:handlerCallRef:] + 336
    63  com.apple.AppKit                        0x99e82a55 NSSLMMenuEventHandler + 404
    64  com.apple.HIToolbox                     0x91043c2f DispatchEventToHandlers(EventTargetRec*, OpaqueEventRef*, HandlerCallRec*) + 1567
    65  com.apple.HIToolbox                     0x91042ef6 SendEventToEventTargetInternal(OpaqueEventRef*, OpaqueEventTargetRef*, HandlerCallRec*) + 411
    66  com.apple.HIToolbox                     0x910657f3 SendEventToEventTarget + 52
    67  com.apple.HIToolbox                     0x91091e87 SendHICommandEvent(unsigned long, HICommand const*, unsigned long, unsigned long, unsigned char, void const*, OpaqueEventTargetRef*, OpaqueEventTargetRef*, OpaqueEventRef**) + 448
    68  com.apple.HIToolbox                     0x910b6b90 SendMenuCommandWithContextAndModifiers + 66
    69  com.apple.HIToolbox                     0x910b6b47 SendMenuItemSelectedEvent + 121
    70  com.apple.HIToolbox                     0x910b6a5d FinishMenuSelection(SelectionData*, MenuResult*, MenuResult*) + 152
    71  com.apple.HIToolbox                     0x91086160 MenuSelectCore(MenuData*, Point, double, unsigned long, OpaqueMenuRef**, unsigned short*) + 454
    72  com.apple.HIToolbox                     0x910858bb _HandleMenuSelection2 + 465
    73  com.apple.HIToolbox                     0x910856d9 _HandleMenuSelection + 53
    74  com.apple.AppKit                        0x99e7bf96 _NSHandleCarbonMenuEvent + 285
    75  com.apple.AppKit                        0x99e50b46 _DPSNextEvent + 2304
    76  com.apple.AppKit                        0x99e4fdd6 -[NSApplication nextEventMatchingMask:untilDate:inMode:dequeue:] + 156
    77  com.apple.AppKit                        0x99e121f3 -[NSApplication run] + 821
    78  com.apple.prokit                        0x00fc6446 NSProApplicationMain + 326
    79  com.apple.logic.pro                     0x0002b1c5 DummyConnection::DummyConnection() + 193
    Thread 1:  Dispatch queue: com.apple.libdispatch-manager
    0   libSystem.B.dylib                       0x936cd382 kevent + 10
    1   libSystem.B.dylib                       0x936cda9c _dispatch_mgr_invoke + 215
    2   libSystem.B.dylib                       0x936ccf59 _dispatch_queue_invoke + 163
    3   libSystem.B.dylib                       0x936cccfe _dispatch_worker_thread2 + 240
    4   libSystem.B.dylib                       0x936cc781 _pthread_wqthread + 390
    5   libSystem.B.dylib                       0x936cc5c6 start_wqthread + 30
    Thread 2:
    0   libSystem.B.dylib                       0x936a6afa mach_msg_trap + 10
    1   libSystem.B.dylib                       0x936a7267 mach_msg + 68
    2   com.apple.CoreFoundation                0x980592df __CFRunLoopRun + 2079
    3   com.apple.CoreFoundation                0x980583c4 CFRunLoopRunSpecific + 452
    4   com.apple.CoreFoundation                0x980581f1 CFRunLoopRunInMode + 97
    5   com.apple.Foundation                    0x98cba224 +[NSURLConnection(NSURLConnectionReallyInternal) _resourceLoadLoop:] + 329
    6   com.apple.Foundation                    0x98c814c4 -[NSThread main] + 45
    7   com.apple.Foundation                    0x98c81474 __NSThread__main__ + 1499
    8   libSystem.B.dylib                       0x936d4259 _pthread_start + 345
    9   libSystem.B.dylib                       0x936d40de thread_start + 34
    Thread 3:  com.apple.CFSocket.private
    0   libSystem.B.dylib                       0x936c5ac6 select$DARWIN_EXTSN + 10
    1   com.apple.CoreFoundation                0x98098c53 __CFSocketManager + 1091
    2   libSystem.B.dylib                       0x936d4259 _pthread_start + 345
    3   libSystem.B.dylib                       0x936d40de thread_start + 34
    Thread 4:
    0   libSystem.B.dylib                       0x936d4aa2 __semwait_signal + 10
    1   libSystem.B.dylib                       0x936d475e _pthread_cond_wait + 1191
    2   libSystem.B.dylib                       0x936d63f8 pthread_cond_wait$UNIX2003 + 73
    3   com.apple.music.apps.MAFiles            0x02a45838 ResolveFile + 54808
    4   com.apple.music.apps.MAFiles            0x02a45901 ResolveFile + 55009
    5   libSystem.B.dylib                       0x936d4259 _pthread_start + 345
    6   libSystem.B.dylib                       0x936d40de thread_start + 34
    Thread 5:
    0   libSystem.B.dylib                       0x936d4aa2 __semwait_signal + 10
    1   libSystem.B.dylib                       0x936d475e _pthread_cond_wait + 1191
    2   libSystem.B.dylib                       0x936d63f8 pthread_cond_wait$UNIX2003 + 73
    3   com.apple.music.apps.MAFiles            0x02a45838 ResolveFile + 54808
    4   com.apple.music.apps.MAFiles            0x02a45901 ResolveFile + 55009
    5   libSystem.B.dylib                       0x936d4259 _pthread_start + 345
    6   libSystem.B.dylib                       0x936d40de thread_start + 34
    Thread 6:
    0   libSystem.B.dylib                       0x936a6b5a semaphore_timedwait_signal_trap + 10
    1   libSystem.B.dylib                       0x936d46e1 _pthread_cond_wait + 1066
    2   libSystem.B.dylib                       0x937035a8 pthread_cond_timedwait_relative_np + 47
    3   com.apple.audio.CoreAudio               0x982433ab CAGuard::WaitFor(unsigned long long) + 219
    4   com.apple.audio.CoreAudio               0x982463dd CAGuard::WaitUntil(unsigned long long) + 289
    5   com.apple.audio.CoreAudio               0x98243cda HP_IOThread::WorkLoop() + 1892
    6   com.apple.audio.CoreAudio               0x98243571 HP_IOThread::ThreadEntry(HP_IOThread*) + 17
    7   com.apple.audio.CoreAudio               0x98243488 CAPThread::Entry(CAPThread*) + 140
    8   libSystem.B.dylib                       0x936d4259 _pthread_start + 345
    9   libSystem.B.dylib                       0x936d40de thread_start + 34
    Thread 7:
    0   libSystem.B.dylib                       0x936d4aa2 __semwait_signal + 10
    1   libSystem.B.dylib                       0x936d475e _pthread_cond_wait + 1191
    2   libSystem.B.dylib                       0x936d63f8 pthread_cond_wait$UNIX2003 + 73
    3   ...le.music.apps.MAAudioEngine          0x02afb50c MD::CallProcessThread1(void*) + 108
    4   libSystem.B.dylib                       0x936d4259 _pthread_start + 345
    5   libSystem.B.dylib                       0x936d40de thread_start + 34
    Thread 8:
    0   libSystem.B.dylib                       0x936d4aa2 __semwait_signal + 10
    1   libSystem.B.dylib                       0x936d475e _pthread_cond_wait + 1191
    2   libSystem.B.dylib                       0x936d63f8 pthread_cond_wait$UNIX2003 + 73
    3   ...le.music.apps.MAAudioEngine          0x02afb28c MD::CallProcessThread2(void*) + 124
    4   libSystem.B.dylib                       0x936d4259 _pthread_start + 345
    5   libSystem.B.dylib                       0x936d40de thread_start + 34
    Thread 9:
    0   libSystem.B.dylib                       0x936d4aa2 __semwait_signal + 10
    1   libSystem.B.dylib                       0x936d475e _pthread_cond_wait + 1191
    2   libSystem.B.dylib                       0x936d63f8 pthread_cond_wait$UNIX2003 + 73
    3   ...le.music.apps.MAAudioEngine          0x02af913c MD::CallProcessThread15(void*) + 124
    4   libSystem.B.dylib                       0x936d4259 _pthread_start + 345
    5   libSystem.B.dylib                       0x936d40de thread_start + 34
    Thread 10:
    0   libSystem.B.dylib                       0x936d4aa2 __semwait_signal + 10
    1   libSystem.B.dylib                       0x936d475e _pthread_cond_wait + 1191
    2   libSystem.B.dylib                       0x936d63f8 pthread_cond_wait$UNIX2003 + 73
    3   ...le.music.apps.MAAudioEngine          0x02b18899 MDFileIOThread_IsBusy + 3593
    4   libSystem.B.dylib                       0x936d4259 _pthread_start + 345
    5   libSystem.B.dylib                       0x936d40de thread_start + 34
    Thread 11:
    0   libSystem.B.dylib                       0x936a6afa mach_msg_trap + 10
    1   libSystem.B.dylib                       0x936a7267 mach_msg + 68
    2   com.apple.audio.midi.CoreMIDI           0x0138d0c1 XServerMachPort::ReceiveMessage(int&, void*, int&) + 155
    3   com.apple.audio.midi.CoreMIDI           0x013ab97a MIDIProcess::RunMIDIInThread() + 150
    4   com.apple.audio.midi.CoreMIDI           0x0138e2d9 XThread::RunHelper(void*) + 17
    5   com.apple.audio.midi.CoreMIDI           0x0138dca6 CAPThread::Entry(CAPThread*) + 96
    6   libSystem.B.dylib                       0x936d4259 _pthread_start + 345
    7   libSystem.B.dylib                       0x936d40de thread_start + 34
    Thread 12:
    0   libSystem.B.dylib                       0x936a6b5a semaphore_timedwait_signal_trap + 10
    1   libSystem.B.dylib                       0x936d46e1 _pthread_cond_wait + 1066
    2   libSystem.B.dylib                       0x937035a8 pthread_cond_timedwait_relative_np + 47
    3   ...ple.CoreServices.CarbonCore          0x900d4b90 TSWaitOnConditionTimedRelative + 242
    4   ...ple.CoreServices.CarbonCore          0x900d48ce TSWaitOnSemaphoreCommon + 511
    5   ...ple.CoreServices.CarbonCore          0x900f8b8b TimerThread + 97
    6   libSystem.B.dylib                       0x936d4259 _pthread_start + 345
    7   libSystem.B.dylib                       0x936d40de thread_start + 34
    Thread 13:
    0   libSystem.B.dylib                       0x936a6b4e semaphore_timedwait_trap + 10
    1   com.FXpansion.BFD2                      0x4ed381b5 VFoundation::VSemaphore::WaitForSemaphore(int) + 93
    2   com.FXpansion.BFD2                      0x4ed26311 VFoundation::VLogFile::WriteThread() + 61
    3   com.FXpansion.BFD2                      0x4ed2676f VFoundation::VLogFile::WriteThread_Proxy(void*) + 41
    4   libSystem.B.dylib                       0x936d4259 _pthread_start + 345
    5   libSystem.B.dylib                       0x936d40de thread_start + 34
    Thread 14:
    0   libSystem.B.dylib                       0x936a6b4e semaphore_timedwait_trap + 10
    1   com.FXpansion.BFD2                      0x4ed381b5 VFoundation::VSemaphore::WaitForSemaphore(int) + 93
    2   com.FXpansion.BFD2                      0x4ed233e4 VFoundation::VJobServer::ServerThread() + 268
    3   com.FXpansion.BFD2                      0x4ed23ad0 VFoundation::VJobServer::ServerThreadProxy(void*) + 38
    4   libSystem.B.dylib                       0x936d4259 _pthread_start + 345
    5   libSystem.B.dylib                       0x936d40de thread_start + 34
    Thread 15:
    0   libSystem.B.dylib                       0x936a6b4e semaphore_timedwait_trap + 10
    1   com.FXpansion.BFD2                      0x4ed381b5 VFoundation::VSemaphore::WaitForSemaphore(int) + 93
    2   com.FXpansion.BFD2                      0x4ed233e4 VFoundation::VJobServer::ServerThread() + 268
    3   com.FXpansion.BFD2                      0x4ed23ad0 VFoundation::VJobServer::ServerThreadProxy(void*) + 38
    4   libSystem.B.dylib                       0x936d4259 _pthread_start + 345
    5   libSystem.B.dylib                       0x936d40de thread_start + 34
    Thread 16:
    0   libSystem.B.dylib                       0x936cc412 __workq_kernreturn + 10
    1   libSystem.B.dylib                       0x936cc9a8 _pthread_wqthread + 941
    2   libSystem.B.dylib                       0x936cc5c6 start_wqthread + 30
    Thread 17:
    0   libSystem.B.dylib                       0x936cc412 __workq_kernreturn + 10
    1   libSystem.B.dylib                       0x936cc9a8 _pthread_wqthread + 941
    2   libSystem.B.dylib                       0x936cc5c6 start_wqthread + 30
    Thread 18:
    0   libSystem.B.dylib                       0x936cc412 __workq_kernreturn + 10
    1   libSystem.B.dylib                       0x936cc9a8 _pthread_wqthread + 941
    2   libSystem.B.dylib                       0x936cc5c6 start_wqthread + 30
    Thread 19:
    0   libSystem.B.dylib                       0x936d4aa2 __semwait_signal + 10
    1   libSystem.B.dylib                       0x937009c5 nanosleep$UNIX2003 + 188
    2   com.apple.Foundation                    0x98d0b5cc +[NSThread sleepForTimeInterval:] + 123
    3   com.apple.logic.pro                     0x00880d70 std::ostream& TraceOutContainer<CEvs>(std::ostream&, CEvs, char const*, int) + 8672000
    4   com.apple.Foundation                    0x98c814c4 -[NSThread main] + 45
    5   com.apple.Foundation                    0x98c81474 __NSThread__main__ + 1499
    6   libSystem.B.dylib                       0x936d4259 _pthread_start + 345
    7   libSystem.B.dylib                       0x936d40de thread_start + 34
    Thread 0 crashed with X86 Thread State (32-bit):
      eax: 0x00000000  ebx: 0x937b0609  ecx: 0xbfffd3bc  edx: 0x93707c5a
      edi: 0x00cbd63c  esi: 0xbfffd960  ebp: 0xbfffd3d8  esp: 0xbfffd3bc
       ss: 0x0000001f  efl: 0x00000286  eip: 0x93707c5a   cs: 0x00000007
       ds: 0x0000001f   es: 0x0000001f   fs: 0x00000000   gs: 0x00000037
      cr2: 0xa033d020
    Binary Images:
        0x1000 -   0xbe7ff7  com.apple.logic.pro 9.1.7 (1700.57) <E0B8F147-B690-4889-84FF-A409F39B402F> /Applications/Logic Pro.app/Contents/MacOS/Logic Pro
      0xe81000 -   0xe9ffef  com.apple.XSKey 1.0.0 (52) <71B94F53-15DB-9012-91F2-211F7C2CD790> /Library/Frameworks/XSKey.framework/Versions/A/XSKey
      0xeae000 -   0xee1fe7  com.apple.music.apps.MAAudioUnitSupport 9.1.7 (233.39) <13FB1823-E7E6-A34B-6D89-E30D01605DC1> /Applications/Logic Pro.app/Contents/Frameworks/MAAudioUnitSupport.framework/Versions/A/MAAudioUnit Support
      0xeee000 -   0xf1fff3  com.apple.musicaudiodataservices 1.1 (250.92) <11E60B69-F34E-72B0-DC8E-BC23B4D9D949> /Applications/Logic Pro.app/Contents/Frameworks/MAAssetSharing.framework/Versions/A/MAAssetSharing
      0xf2e000 -   0xf8cff3  com.apple.music.apps.MALoopManagement 9.1.7 (218.94) <E1772A24-827D-AF1F-7C09-E25FC729F95B> /Applications/Logic Pro.app/Contents/Frameworks/MALoopManagement.framework/Versions/A/MALoopManagem ent
      0xfa2000 -  0x11dafff  com.apple.prokit 7.0 (1331) <B3DAD7D3-5D87-CBA6-D4C7-74E96928BA77> /System/Library/PrivateFrameworks/ProKit.framework/Versions/A/ProKit
    0x12e2000 -  0x135dfff  com.apple.music.apps.MACore 9.1.7 (477.48) <5D0BB5DF-13EB-1759-F1B9-4275EEE287B3> /Applications/Logic Pro.app/Contents/Frameworks/MACore.framework/Versions/A/MACore
    0x137d000 -  0x13c9ffb  com.apple.audio.midi.CoreMIDI 1.7.1 (42) <FB4D4B64-6ABB-679E-3AA8-21DE9062B4C1> /System/Library/Frameworks/CoreMIDI.framework/Versions/A/CoreMIDI
    0x13ee000 -  0x1444ff7  com.apple.music.apps.MAHarmony 9.1.7 (198.94) <BE3356F3-9B77-81AF-9D4E-2F9F036B7491> /Applications/Logic Pro.app/Contents/Frameworks/MAHarmony.framework/Versions/A/MAHarmony
    0x145b000 -  0x1874ff7  com.apple.music.apps.MAPlugInGUI 9.1.7 (424.69) <6C2FD01C-3CAA-F456-B695-FCB5638A4EDE> /Applications/Logic Pro.app/Contents/Frameworks/MAPlugInGUI.framework/Versions/A/MAPlugInGUI
    0x1a92000 -  0x1b74feb  com.apple.music.apps.OMF 9.1.7 (108.93) <5A2D5ABF-97B8-E67D-EF60-BD3CEA462CDE> /Applications/Logic Pro.app/Contents/Frameworks/OMF.framework/Versions/A/OMF
    0x1b88000 -  0x21d9fe3  com.apple.music.apps.MADSP 9.1.7 (588.88) <4E4B1FA7-6D09-E835-09B8-FC5700B6D425> /Applications/Logic Pro.app/Contents/Frameworks/MADSP.framework/Versions/A/MADSP
    0x28be000 -  0x28dfff7  com.apple.music.apps.LogicFileBrowser 9.1.7 (1700.57) <EEAE4BD4-7F0C-3331-2C94-6EBA3E5F518F> /Applications/Logic Pro.app/Contents/Frameworks/LogicFileBrowser.framework/Versions/A/LogicFileBrow ser
    0x28e8000 -  0x2961ff7  com.apple.music.apps.LogicLoopBrowser 9.1.7 (1700.57) <8CACC777-C6A7-432C-ADB9-E7F1865F8544> /Applications/Logic Pro.app/Contents/Frameworks/LogicLoopBrowser.framework/Versions/A/LogicLoopBrow ser
    0x2975000 -  0x2996ff7  com.apple.music.apps.MAApogeeSupport 9.1.7 (311.94) <F09251F0-B26D-CA6C-8B7A-6711EE4331D1> /Applications/Logic Pro.app/Contents/Frameworks/MAApogeeSupport.framework/Versions/A/MAApogeeSuppor t
    0x299b000 -  0x29a0ff7  com.apple.music.apps.MAResources 9.1.7 (211.95) <176392C0-73D0-4698-C1AC-114BB5C05A2B> /Applications/Logic Pro.app/Contents/Frameworks/MAResources.framework/Versions/A/MAResources
    0x29a4000 -  0x29cdfe3  com.apple.audio.CoreAudioKit 1.6.1 (1.6.1) <7FFBD485-5251-776A-CC44-4470DD84112B> /System/Library/Frameworks/CoreAudioKit.framework/Versions/A/CoreAudioKit
    0x29de000 -  0x29eeff7  com.apple.AERegistration 1.2 (401) <09312188-9C9E-E1A8-0F53-B8F34AA7F76A> /Applications/Logic Pro.app/Contents/Frameworks/AERegistration.framework/Versions/A/AERegistration
    0x2a02000 -  0x2a0eff3  com.apple.music.apps.MAUnitTest 9.1.7 (95.94) <D8B89167-A7D2-2C2F-B401-1E17BD85C2FD> /Applications/Logic Pro.app/Contents/Frameworks/MAUnitTest.framework/Versions/A/MAUnitTest
    0x2a16000 -  0x2accfff  com.apple.music.apps.MAFiles 9.1.7 (144.77) <DCD9D7C3-B474-5A9D-5E1D-6CA3D2461D69> /Applications/Logic Pro.app/Contents/Frameworks/MAFiles.framework/Versions/A/MAFiles
    0x2ae5000 -  0x2b5cfe7  com.apple.music.apps.MAAudioEngine 9.1.7 (158.32) <3391175C-45EA-CF4C-29CE-B40AED2B40CD> /Applications/Logic Pro.app/Contents/Frameworks/MAAudioEngine.framework/Versions/A/MAAudioEngine
    0x2bc3000 -  0x2bceff7  com.apple.music.apps.MAToolKit 9.1.7 (357.98) <B3F36681-3427-CDFC-B975-568F14996D02> /Applications/Logic Pro.app/Contents/Frameworks/MAToolKit.framework/Versions/A/MAToolKit
    0x2bd2000 -  0x2be6ff7  com.apple.music.apps.MAVideo 9.1.7 (11.99) <7BFFFBAF-7564-4CD5-DA1D-98D57E2D8D55> /Applications/Logic Pro.app/Contents/Frameworks/MAVideo.framework/Versions/A/MAVideo
    0x2bf9000 -  0x2caefe7  libcrypto.0.9.7.dylib 0.9.7 (compatibility 0.9.7) <AACC86C0-86B4-B1A7-003F-2A0AF68973A2> /usr/lib/libcrypto.0.9.7.dylib
    0x2cf4000 -  0x2d34ff7  com.apple.vmutils 4.2 (106) <834EA6B0-C91B-4CF1-ED3C-229C26459578> /System/Library/PrivateFrameworks/vmutils.framework/Versions/A/vmutils
    0x2d4d000 -  0x2de9ffc  com.apple.MobileMe 9 (1.01) <EBADB981-9ED6-82B0-810F-F1CB05CB5A17> /Applications/Logic Pro.app/Contents/Frameworks/MobileMe.framework/Versions/A/MobileMe
    0x2ea3000 -  0x2ed8ff7  com.apple.prokit.SnowLeopardPanels 7.0 (1331) <BB481932-46DC-8FB1-97CB-67C484A6CBF2> /System/Library/PrivateFrameworks/ProKit.framework/Versions/A/Resources/SnowLeo pardPanels.bundle/Contents/MacOS/SnowLeopardPanels
    0x3f8f000 -  0x3f93ff3  com.apple.audio.AudioIPCPlugIn 1.1.6 (1.1.6) <E9CB576C-283B-1DB2-0C69-E7C914BD7922> /System/Library/Extensions/AudioIPCDriver.kext/Contents/Resources/AudioIPCPlugI n.bundle/Contents/MacOS/AudioIPCPlugIn
    0x3f98000 -  0x3f9eff7  com.apple.audio.AppleHDAHALPlugIn 2.0.5 (2.0.5f14) <38E3C1A4-84E4-C105-B55F-8FC4C154036D> /System/Library/Extensions/AppleHDA.kext/Contents/PlugIns/AppleHDAHALPlugIn.bun dle/Contents/MacOS/AppleHDAHALPlugIn
    0x3fca000 -  0x3fd2ff7  com.apple.proapps.mrcheckpro 1.4 (397) <25DBA6AA-139D-EFAC-1BF8-5D29A3DFA497> /Applications/Logic Pro.app/Contents/Resources/MRCheckPro.bundle/Contents/MacOS/MRCheckPro
    0x42253000 - 0x42255ff3  com.apple.music.apps.anvil.resources 9.1.7 (279.92) <7CBFA410-D449-1520-1E28-2018E56ECE3E> /Applications/Logic Pro.app/Contents/PlugIns/anvil.res/Contents/MacOS/anvil
    0x42259000 - 0x4225bff3  com.apple.music.apps.common.resources 9.1.7 (279.92) <47B50610-3A6B-B7E6-7D9F-633EE00536BF> /Applications/Logic Pro.app/Contents/PlugIns/common.res/Contents/MacOS/common
    0x4225f000 - 0x42261ff3  com.apple.music.apps.ebp.resources 9.1.7 (279.92) <491FACE3-30A1-8165-DFE1-CDB0FD08351A> /Applications/Logic Pro.app/Contents/PlugIns/ebp.res/Contents/MacOS/ebp
    0x42265000 - 0x42267ff3  com.apple.music.apps.efx.resources 9.1.7 (279.92) <C597C91D-FEE9-A1CB-D44F-E1EBE79719CF> /Applications/Logic Pro.app/Contents/PlugIns/efx.res/Contents/MacOS/efx
    0x4226b000 - 0x4226dff3  com.apple.music.apps.egt.resources 9.1.7 (279.92) <30026FE6-7623-C6B3-6771-A121ACC8B762> /Applications/Logic Pro.app/Contents/PlugIns/egt.res/Contents/MacOS/egt
    0x42271000 - 0x42273ff3  com.apple.music.apps.emx.resources 9.1.7 (279.92) <7C00E73C-087D-B18A-FBBE-3CB9A34A7290> /Applications/Logic Pro.app/Contents/PlugIns/emx.res/Contents/MacOS/emx
    0x42cef000 - 0x42cf1ff3  com.apple.music.apps.es1.resources 9.1.7 (279.92) <E9799913-9D77-B551-2F7C-3C5CF7CCDF5C> /Applications/Logic Pro.app/Contents/PlugIns/es1.res/Contents/MacOS/es1
    0x42cf5000 - 0x42cf7ff3  com.apple.music.apps.es2.resources 9.1.7 (279.92) <D85546C3-B00F-0A52-EE11-EC05210E6431> /Applications/Logic Pro.app/Contents/PlugIns/es2.res/Contents/MacOS/es2
    0x42e00000 - 0x42f79ff7  GLEngine ??? (???) <76C922AA-A4A7-2835-537B-17F316AD95F6> /System/Library/Frameworks/OpenGL.framework/Resources/GLEngine.bundle/GLEngine
    0x42fab000 - 0x433befef  com.apple.ATIRadeonX2000GLDriver 1.6.36 (6.3.6) <257CAA1D-6573-2932-E344-E96F6C9CDA84> /System/Library/Extensions/ATIRadeonX2000GLDriver.bundle/Contents/MacOS/ATIRade onX2000GLDriver
    0x433f0000 - 0x43414fe7  GLRendererFloat ??? (???) <F19DDBE8-1DF6-6618-F554-0E81ED85CE67> /System/Library/Frameworks/OpenGL.framework/Resources/GLRendererFloat.bundle/GL RendererFloat
    0x43805000 - 0x43807ff3  com.apple.music.apps.esp.resources 9.1.7 (279.92) <22469760-92CC-70D1-098F-A71D666D2030> /Applications/Logic Pro.app/Contents/PlugIns/esp.res/Contents/MacOS/esp
    0x4380b000 - 0x4380dff3  com.apple.music.apps.evb3.resources 9.1.7 (279.92) <BAD8B6B6-E451-43B2-E56C-93279FB16A6E> /Applications/Logic Pro.app/Contents/PlugIns/evb3.res/Contents/MacOS/evb3
    0x43811000 - 0x43813ff3  com.apple.music.apps.evd6.resources 9.1.7 (279.92) <21C25CAD-1A0B-2ADF-FAA9-A66F6034E82D> /Applications/Logic Pro.app/Contents/PlugIns/evd6.res/Contents/MacOS/evd6
    0x43817000 - 0x43819ff3  com.apple.music.apps.evoc.resources 9.1.7 (279.92) <B958C220-125C-8DFD-B829-D6ABFEAC7A11> /Applications/Logic Pro.app/Contents/PlugIns/evoc.res/Contents/MacOS/evoc
    0x4381d000 - 0x4381fff3  com.apple.music.apps.evp88.resources 9.1.7 (279.92) <CBA089F8-35D9-F012-43BE-F79149490FE0> /Applications/Logic Pro.app/Contents/PlugIns/evp88.res/Contents/MacOS/evp88
    0x43823000 - 0x43825ff3  com.apple.music.apps.exs24.resources 9.1.7 (279.92) <11C21376-ED55-88F0-C965-DD554EA4DF81> /Applications/Logic Pro.app/Contents/PlugIns/exs24.res/Contents/MacOS/exs24
    0x43829000 - 0x4382bff3  com.apple.music.apps.guitaramp.resources 9.1.7 (279.92) <03A47674-0672-A373-9628-0F10B1065A04> /Applications/Logic Pro.app/Contents/PlugIns/guitaramp.res/Contents/MacOS/guitaramp
    0x4382f000 - 0x43831ff3  com.apple.music.apps.guitarcontrols.resources 9.1.7 (279.92) <6A1F7841-22E5-D35E-D3A7-341280342B5C> /Applications/Logic Pro.app/Contents/PlugIns/guitarcontrols.res/Contents/MacOS/guitarcontrols
    0x43835000 - 0x43837ff3  com.apple.music.apps.mutapdel.resources 9.1.7 (279.92) <DD838B34-3651-F30C-D52F-7CF44EF2AD30> /Applications/Logic Pro.app/Contents/PlugIns/mutapdel.res/Contents/MacOS/mutapdel
    0x4383b000 - 0x4383dff3  com.apple.music.apps.pedalboard.resources 9.1.7 (279.92) <79A8F7E2-566C-DF8F-C336-8D075A434E62> /Applications/Logic Pro.app/Contents/PlugIns/pedalboard.res/Contents/MacOS/pedalboard
    0x43841000 - 0x43843ff3  com.apple.music.apps.revolver.resources 9.1.7 (279.92) <DE04D8A8-A797-342B-B3BB-0AA349CAC457> /Applications/Logic Pro.app/Contents/PlugIns/revolver.res/Contents/MacOS/revolver
    0x43847000 - 0x43849ff3  com.apple.music.apps.sphere.resources 9.1.7 (279.92) <4DDC2503-F323-ED3F-1F18-B05F5611E5A4> /Applications/Logic Pro.app/Contents/PlugIns/sphere.res/Contents/MacOS/sphere
    0x48c45000 - 0x48c81fe3  com.apple.QuickTimeFireWireDV.component 7.6.6 (1791) <50D03C98-3DF6-BF7E-6440-7E3AB5A78CBE> /System/Library/QuickTime/QuickTimeFireWireDV.component/Contents/MacOS/QuickTim eFireWireDV
    0x48c8d000 - 0x48c97ff7  com.apple.IOFWDVComponents 1.9.9 (1.9.9) <5B4E7BD7-EF5A-2F5C-DF8E-3D4A7B59F779> /System/Library/Components/IOFWDVComponents.component/Contents/MacOS/IOFWDVComp onents
    0x4e800000 - 0x4f16ffe3 +com.FXpansion.BFD2 2.3.0.38 (2.3.0.38) <114297EC-89F7-5D9A-A655-E76D9C5CBDEB> /Library/Audio/Plug-Ins/Components/BFD2.component/Contents/MacOS/BFD2
    0x8fe00000 - 0x8fe4163b  dyld 132.1 (???) <4CDE4F04-0DD6-224E-ACE5-3C06E169A801> /usr/lib/dyld
    0x90003000 - 0x9000aff3  com.apple.print.framework.Print 6.1 (237.1) <F5AAE53D-5530-9004-A9E3-2C1690C5328E> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/Print.framewo rk/Versions/A/Print
    0x9000b000 - 0x9000fff7  libGIF.dylib ??? (???) <9E51F8ED-83B4-DA41-1E2F-CFA726936A30> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ImageIO.framework/Versions/A/Resources/libGIF.dylib
    0x90010000 - 0x90052ff7  libvDSP.dylib 268.0.1 (compatibility 1.0.0) <8A4721DE-25C4-C8AA-EA90-9DA7812E3EBA> /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.fr amework/Versions/A/libvDSP.dylib
    0x90053000 - 0x9008dfe7  libssl.0.9.8.dylib 0.9.8 (compatibility 0.9.8) <C62A7753-99A2-6782-92E7-6628A6190A90> /usr/lib/libssl.0.9.8.dylib
    0x9008e000 - 0x903aeff3  com.apple.CoreServices.CarbonCore 861.39 (861.39) <5C59805C-AF39-9010-B8B5-D673C9C38538> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/CarbonC ore.framework/Versions/A/CarbonCore
    0x90459000 - 0x9047dff7  libJPEG.dylib ??? (???) <C43FD809-08B6-629D-8980-D7B0ECEA20A9> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ImageIO.framework/Versions/A/Resources/libJPEG.dylib
    0x9047e000 - 0x904beff3  com.apple.securityinterface 4.0.1 (40418.0.1) <2141A924-748E-CE6F-2D75-D82BC265BD30> /System/Library/Frameworks/SecurityInterface.framework/Versions/A/SecurityInter face
    0x904bf000 - 0x905c1fef  com.apple.MeshKitIO 1.1 (49.2) <D0401AC5-1F92-2BBB-EBAB-58EDD3BA61B9> /System/Library/PrivateFrameworks/MeshKit.framework/Versions/A/Frameworks/MeshK itIO.framework/Versions/A/MeshKitIO
    0x905c2000 - 0x9063bff7  com.apple.PDFKit 2.5.1 (2.5.1) <A068BF37-03E0-A231-2791-561C60C3ED2B> /System/Library/Frameworks/Quartz.framework/Versions/A/Frameworks/PDFKit.framew ork/Versions/A/PDFKit
    0x90648000 - 0x90719fe3  ColorSyncDeprecated.dylib 4.6.0 (compatibility 1.0.0) <C618942F-BC01-0565-18CF-477B63C02181> /System/Library/Frameworks/ApplicationServices.framework/Frameworks/ColorSync.f ramework/Versions/A/Resources/ColorSyncDeprecated.dylib
    0x9071a000 - 0x9071eff7  libGFXShared.dylib ??? (???) <09540618-2ED1-72C4-61CB-938B35927568> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGFXShared.d ylib
    0x9071f000 - 0x907cdff3  com.apple.ink.framework 1.3.3 (107) <233A981E-A2F9-56FB-8BDE-C2DEC3F20784> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/Ink.framework /Versions/A/Ink
    0x907ce000 - 0x907dfff7  com.apple.LangAnalysis 1.6.6 (1.6.6) <3036AD83-4F1D-1028-54EE-54165E562650> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ LangAnalysis.framework/Versions/A/LangAnalysis
    0x907e0000 - 0x907f0ff7  com.apple.DSObjCWrappers.Framework 10.6 (134) <81A0B409-3906-A98F-CA9B-A49E75007495> /System/Library/PrivateFrameworks/DSObjCWrappers.framework/Versions/A/DSObjCWra ppers
    0x907f1000 - 0x90c07ff7  libBLAS.dylib 219.0.0 (compatibility 1.0.0) <C4FB303A-DB4D-F9E8-181C-129585E59603> /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.fr amework/Versions/A/libBLAS.dylib
    0x90c4e000 - 0x90c81fff  libTrueTypeScaler.dylib ??? (???) <8ADB7D19-413E-4499-C874-13C383F97685> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ATS.framework/Versions/A/Resources/libTrueTypeScaler.dylib
    0x90c82000 - 0x90cf6fef  com.apple.CoreSymbolication 2.0 (23) <8A04EA5F-83F8-5E15-B2E0-8A727C9C4E8B> /System/Library/PrivateFrameworks/CoreSymbolication.framework/Versions/A/CoreSy mbolication
    0x90cf7000 - 0x90dd1fff  com.apple.DesktopServices 1.5.11 (1.5.11) <800F2040-9211-81A7-B438-7712BF51DEE3> /System/Library/PrivateFrameworks/DesktopServicesPriv.framework/Versions/A/Desk topServicesPriv
    0x90dda000 - 0x90ebafe7  com.apple.vImage 4.1 (4.1) <D029C515-08E1-93A6-3705-DD062A3A672C> /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vImage.fr amework/Versions/A/vImage
    0x90ebb000 - 0x90ffdff7  com.apple.syncservices 5.2 (578.3) <17A876CF-DAB1-1A88-6811-64AF8BFDE508> /System/Library/Frameworks/SyncServices.framework/Versions/A/SyncServices
    0x91029000 - 0x91034ff7  libCSync.A.dylib 545.0.0 (compatibility 64.0.0) <287DECA3-7821-32B6-724D-AE03A9A350F9> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ CoreGraphics.framework/Versions/A/Resources/libCSync.A.dylib
    0x91035000 - 0x9103bfff  com.apple.CommonPanels 1.2.4 (91) <2438AF5D-067B-B9FD-1248-2C9987F360BA> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/CommonPanels. framework/Versions/A/CommonPanels
    0x9103c000 - 0x91360fef  com.apple.HIToolbox 1.6.5 (???) <21164164-41CE-61DE-C567-32E89755CB34> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/HIToolbox.fra mework/Versions/A/HIToolbox
    0x9138d000 - 0x9138dff7  com.apple.CoreServices 44 (44) <51CFA89A-33DB-90ED-26A8-67D461718A4A> /System/Library/Frameworks/CoreServices.framework/Versions/A/CoreServices
    0x91688000 - 0x916ccff3  com.apple.coreui 2 (114) <2234855E-3BED-717F-0BFA-D1A289ECDBDA> /System/Library/PrivateFrameworks/CoreUI.framework/Versions/A/CoreUI
    0x916cf000 - 0x91d4aff7  com.apple.CoreAUC 6.11.03 (6.11.03) <42B31B0F-18F9-29D2-A67C-7B81A47F6D67> /System/Library/PrivateFrameworks/CoreAUC.framework/Versions/A/CoreAUC
    0x91d53000 - 0x91dfbffb  com.apple.QD 3.36 (???) <FA2785A4-BB69-DCB4-3BA3-7C89A82CAB41> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ QD.framework/Versions/A/QD
    0x91dfc000 - 0x91e39ff7  com.apple.SystemConfiguration 1.10.8 (1.10.2) <50E4D49B-4F61-446F-1C21-1B2BA814713D> /System/Library/Frameworks/SystemConfiguration.framework/Versions/A/SystemConfi guration
    0x91e41000 - 0x91e9bfe7  com.apple.CorePDF 1.4 (1.4) <78A1DDE1-1609-223C-A532-D282DC5E0CD0> /System/Library/PrivateFrameworks/CorePDF.framework/Versions/A/CorePDF
    0x91eef000 - 0x9202cfe7  com.apple.audio.toolbox.AudioToolbox 1.6.7 (1.6.7) <423BDE4D-5082-B6CA-BB2C-E22A037235A4> /System/Library/Frameworks/AudioToolbox.framework/Versions/A/AudioToolbox
    0x9202d000 - 0x92da5fe7  com.apple.WebCore 6534.57 (6534.57.2) <6AF29D9A-F549-5BE7-3842-CFF75FC46360> /System/Library/Frameworks/WebKit.framework/Versions/A/Frameworks/WebCore.frame work/Versions/A/WebCore
    0x92da6000 - 0x93261ff7  com.apple.VideoToolbox 0.484.60 (484.60) <B53299EC-E30F-EC04-779D-29B7113CC14A> /System/Library/PrivateFrameworks/VideoToolbox.framework/Versions/A/VideoToolbo x
    0x9343f000 - 0x9344bff7  libkxld.dylib ??? (???) <9A441C48-2D18-E716-5F38-CBEAE6A0BB3E> /usr/lib/system/libkxld.dylib
    0x93473000 - 0x9367afeb  com.apple.AddressBook.framework 5.0.4 (883) <E26855A0-8CEF-8C81-F963-A2BF9E47F5C8> /System/Library/Frameworks/AddressBook.framework/Versions/A/AddressBook
    0x9367b000 - 0x936a5ff7  com.apple.shortcut 1.1 (1.1) <B0514FA9-7CAE-AD94-93CA-7B2A2C5F7B8A> /System/Library/PrivateFrameworks/Shortcut.framework/Versions/A/Shortcut
    0x936a6000 - 0x9384dff7  libSystem.B.dylib 125.2.11 (compatibility 1.0.0) <2DCD13E3-1BD1-6F25-119A-3863A3848B90> /usr/lib/libSystem.B.dylib
    0x9384e000 - 0x93976fe7  com.apple.WebKit 6534.57 (6534.57.2) <4CB86278-4657-3503-8042-074628222DF3> /System/Library/Frameworks/WebKit.framework/Versions/A/WebKit
    0x93977000 - 0x93b3afeb  com.apple.ImageIO.framework 3.0.6 (3.0.6) <5BF202E9-730A-3675-4374-E5300BC8ED10> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ImageIO.framework/Versions/A/ImageIO
    0x93b65000 - 0x93bf7fe7  com.apple.print.framework.PrintCore 6.3 (312.7) <7410D1B2-655D-68DA-D4B9-2C65747B6817> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ PrintCore.framework/Versions/A/PrintCore
    0x93c16000 - 0x93c84ff7  com.apple.QuickLookUIFramework 2.3 (327.7) <7F89C0A1-310F-ACF1-AA6E-4ADFA4DC98DC> /System/Library/Frameworks/Quartz.framework/Versions/A/Frameworks/QuickLookUI.f ramework/Versions/A/QuickLookUI
    0x93cd7000 - 0x93ce7ff7  libsasl2.2.dylib 3.15.0 (compatibility 3.0.0) <C8744EA3-0AB7-CD03-E639-C4F2B910BE5D> /usr/lib/libsasl2.2.dylib
    0x93d89000 - 0x93dc4fe7  com.apple.DebugSymbols 1.1 (70) <05013716-CFCF-801E-5535-D0643869BDCD> /System/Library/PrivateFrameworks/DebugSymbols.framework/Versions/A/DebugSymbol s
    0x93dc5000 - 0x9402bff7  com.apple.security 6.1.2 (55002) <3FA54D69-5476-78DD-0AFC-D6697263890E> /System/Library/Frameworks/Security.framework/Versions/A/Security
    0x9402c000 - 0x9405cff7  com.apple.MeshKit 1.1 (49.2) <5A74D1A4-4B97-FE39-4F4D-E0B80F0ADD87> /System/Library/PrivateFrameworks/MeshKit.framework/Versions/A/MeshKit
    0x9405d000 - 0x9405dff7  com.apple.vecLib 3.6 (vecLib 3.6) <FF4DC8B6-0AB0-DEE8-ADA8-7B57645A1F36> /System/Library/Frameworks/vecLib.framework/Versions/A/vecLib
    0x9405e000 - 0x9408fff7  libGLImage.dylib ??? (???) <D18E2E76-DBF4-6930-039A-F66CA0D120B3> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGLImage.dyl ib
    0x94090000 - 0x9413cfe7  com.apple.CFNetwork 454.12.4 (454.12.4) <DEDCD006-389F-967F-3405-EDF541F406D7> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/CFNetwo rk.framework/Versions/A/CFNetwork
    0x9413d000 - 0x9414aff7  com.apple.AppleFSCompression 24.4 (1.0) <09E7FA6D-4BE8-5CA6-732F-D70EDF0E3910> /System/Library/PrivateFrameworks/AppleFSCompression.framework/Versions/A/Apple FSCompression
    0x9414b000 - 0x9493a557  com.apple.CoreGraphics 1.545.0 (???) <1D9DC7A5-228B-42CB-7018-66F42C3A9BB3> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ CoreGraphics.framework/Versions/A/CoreGraphics
    0x9493b000 - 0x949d8fe3  com.apple.LaunchServices 362.3 (362.3) <15B47388-16C8-97DA-EEBB-1709E136169E> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/LaunchS ervices.framework/Versions/A/LaunchServices
    0x94a08000 - 0x94ad3fef  com.apple.CoreServices.OSServices 359.2 (359.2) <7C16D9C8-6F41-5754-17F7-2659D9DD9579> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/OSServi ces.framework/Versions/A/OSServices
    0x94aed000 - 0x94af0ffb  com.apple.help 1.3.2 (41.1) <8AC20B01-4A3B-94BA-D8AF-E39034B97D8C> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/Help.framewor k/Versions/A/Help
    0x94af1000 - 0x94af5ff7  IOSurface ??? (???) <89D859B7-A26A-A5AB-8401-FC1E01AC7A60> /System/Library/Frameworks/IOSurface.framework/Versions/A/IOSurface
    0x94af6000 - 0x94b3dffb  com.apple.CoreMediaIOServices 140.0 (1496) <DA152F1C-8EF4-4F5E-6D60-82B1DC72EF47> /System/Library/PrivateFrameworks/CoreMediaIOServices.framework/Versions/A/Core MediaIOServices
    0x94b3e000 - 0x94b3eff7  com.apple.Accelerate.vecLib 3.6 (vecLib 3.6) <ABF97DA4-3BDF-6FFD-6239-B023CA1F7974> /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.fr amework/Versions/A/vecLib
    0x94b53000 - 0x94b5dff7  com.apple.HelpData 2.0.5 (34.1.1) <A9CF754F-B254-5D40-B8B5-F35414DFD875> /System/Library/PrivateFrameworks/HelpData.framework/Versions/A/HelpData
    0x94b5e000 - 0x94b6cff7  com.apple.opengl 1.6.14 (1.6.14) <82622F67-E032-0BF6-A78D-50B346E8D0FD> /System/Library/Frameworks/OpenGL.framework/Versions/A/OpenGL
    0x94c1e000 - 0x94c24fe7  com.apple.CommerceCore 1.0 (9.1) <521D067B-3BDA-D04E-E1FA-CFA526C87EB5> /System/Library/PrivateFrameworks/CommerceKit.framework/Versions/A/Frameworks/C ommerceCore.framework/Versions/A/CommerceCore
    0x94c25000 - 0x94c75fe7  libTIFF.dylib ??? (???) <E8B31850-BFD4-48E6-B264-A4340CD19929> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ImageIO.framework/Versions/A/Resources/libTIFF.dylib
    0x94c76000 - 0x94c85fe7  libxar.1.dylib ??? (???) <2FC317EB-7AC2-CD6C-8C09-E06B2DF02929> /usr/lib/libxar.1.dylib
    0x94c86000 - 0x94c93ff7  com.apple.NetFS 3.2.2 (3.2.2) <DDC9C397-C35F-8D7A-BB24-3D1B42FA5FAB> /System/Library/Frameworks/NetFS.framework/Versions/A/NetFS
    0x94c94000 - 0x94cd8fe7  com.apple.Metadata 10.6.3 (507.15) <74F05E64-2A68-BA10-CCD4-128D164E5A0F> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/Metadat a.framework/Versions/A/Metadata
    0x94cd9000 - 0x94d56ff7  com.apple.iLifeMediaBrowser 2.5.5 (468.2.2) <459C8983-EAC4-7067-3355-5299D111D339> /System/Library/PrivateFrameworks/iLifeMediaBrowser.framework/Versions/A/iLifeM ediaBrowser
    0x94d57000 - 0x94d58ff7  com.apple.audio.units.AudioUnit 1.6.7 (1.6.7) <93EC71F1-4D4E-F456-8EFE-32E7EFD7A064> /System/Library/Frameworks/AudioUnit.framework/Versions/A/AudioUnit
    0x94d8f000 - 0x94daeff7  com.apple.CoreVideo 1.6.2 (45.6) <EB53CAA4-5EE2-C356-A954-5775F7DDD493> /System/Library/Frameworks/CoreVideo.framework/Versions/A/CoreVideo
    0x94daf000 - 0x94dc3fe7  libbsm.0.dylib ??? (???) <14CB053A-7C47-96DA-E415-0906BA1B78C9> /usr/lib/libbsm.0.dylib
    0x94dc4000 - 0x94e7cfeb  libFontParser.dylib ??? (???) <D2D0C922-5ED1-3AE9-6F99-707C74DF3E62> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ATS.framework/Versions/A/Resources/libFontParser.dylib
    0x94e7d000 - 0x950a8ff3  com.apple.QuartzComposer 4.2 ({156.30}) <2C88F8C3-7181-6B1D-B278-E0EE3F33A2AF> /System/Library/Frameworks/Quartz.framework/Versions/A/Frameworks/QuartzCompose r.framework/Versions/A/QuartzComposer
    0x950a9000 - 0x95129feb  com.apple.SearchKit 1.3.0 (1.3.0) <9E18AEA5-F4B4-8BE5-EEA9-818FC4F46FD9> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/SearchK it.framework/Versions/A/SearchKit
    0x9512a000 - 0x9512cff7  com.apple.securityhi 4.0 (36638) <6118C361-61E7-B34E-93DB-1B88108F8F18> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/SecurityHI.fr amework/Versions/A/SecurityHI
    0x9512d000 - 0x953dbfe7  com.apple.JavaScriptCore 6534.57 (6534.57.3) <5B18B308-DBB2-7133-DE56-494C2FA1848B> /System/Library/Frameworks/JavaScriptCore.framework/Versions/A/JavaScriptCore
    0x953dc000 - 0x95419ff7  com.apple.CoreMedia 0.484.60 (484.60) <8FAB137D-682C-6DEC-5A15-F0029A5B226F> /System/Library/PrivateFrameworks/CoreMedia.framework/Versions/A/CoreMedia
    0x95433000 - 0x95483ff7  com.apple.framework.familycontrols 2.0.2 (2020) <596ADD85-79F5-A613-537B-F83B6E19013C> /System/Library/PrivateFrameworks/FamilyControls.framework/Versions/A/FamilyCon trols
    0x95484000 - 0x954dcfe7  com.apple.datadetectorscore 2.0 (80.7) <A40AA74A-9D13-2A6C-5440-B50905923251> /System/Library/PrivateFrameworks/DataDetectorsCore.framework/Versions/A/DataDe tectorsCore
    0x954dd000 - 0x95547fe7  libstdc++.6.dylib 7.9.0 (compatibility 7.0.0) <411D87F4-B7E1-44EB-F201-F8B4F9227213> /usr/lib/libstdc++.6.dylib
    0x9563d000 - 0x9569aff7  com.apple.framework.IOKit 2.0 (???) <3DABAB9C-4949-F441-B077-0498F8E47A35> /System/Library/Frameworks/IOKit.framework/Versions/A/IOKit
    0x9569b000 - 0x957defef  com.apple.QTKit 7.7 (1791) <74F00760-A831-B8F2-869D-84C1F2366204> /System/Library/Frameworks/QTKit.framework/Versions/A/QTKit
    0x957df000 - 0x95861ffb  SecurityFoundation ??? (???) <C4506287-1AE2-5380-675D-95B0291AA425> /System/Library/Frameworks/SecurityFoundation.framework/Versions/A/SecurityFoun dation
    0x95862000 - 0x95990fe7  com.apple.CoreData 102.1 (251) <87FE6861-F2D6-773D-ED45-345272E56463> /System/Library/Frameworks/CoreData.framework/Versions/A/CoreData
    0x95991000 - 0x959b0fe3  libexpat.1.dylib 7.2.0 (compatibility 7.0.0) <82E6F83F-9667-2E39-1D9D-4A49C642527D> /usr/lib/libexpat.1.dylib
    0x959b1000 - 0x95e02fef  com.apple.RawCamera.bundle 3.7.1 (570) <AF94D180-5E0F-10DF-0CB2-FD8EDB110FA2> /System/Library/CoreServices/RawCamera.bundle/Contents/MacOS/RawCamera
    0x95e03000 - 0x95e3effb  libFontRegistry.dylib ??? (???) <19ED5DE0-D3AF-B229-9193-35D58FE377E5> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ATS.framework/Versions/A/Resources/libFontRegistry.dylib
    0x95e3f000 - 0x95e3fff7  com.apple.Cocoa 6.6 (???) <EA27B428-5904-B00B-397A-185588698BCC> /System/Library/Frameworks/Cocoa.framework/Versions/A/Cocoa
    0x95e40000 - 0x95e58ff7  com.apple.CFOpenDirectory 10.6 (10.6) <D1CF5881-0AF7-D164-4156-9E9067B7FA37> /System/Library/Frameworks/OpenDirectory.framework/Versions/A/Frameworks/CFOpen Directory.framework/Versions/A/CFOpenDirectory
    0x95f60000 - 0x95f86ffb  com.apple.DictionaryServices 1.1.2 (1.1.2) <43E1D565-6E01-3681-F2E5-72AE4C3A097A> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/Diction aryServices.framework/Versions/A/DictionaryServices
    0x95f87000 - 0x95f8eff7  com.apple.agl 3.0.12 (AGL-3.0.12) <A5FF7623-9F55-0364-AD9B-42CF13C677C1> /System/Library/Frameworks/AGL.framework/Versions/A/AGL
    0x960f2000 - 0x96107fff  com.apple.ImageCapture 6.1 (6.1) <B909459A-EAC9-A7C8-F2A9-CD757CDB59E8> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/ImageCapture. framework/Versions/A/ImageCapture
    0x961d7000 - 0x961d8ff7  com.apple.MonitorPanelFramework 1.3.0 (1.3.0) <0EC4EEFF-477E-908E-6F21-ED2C973846A4> /System/Library/PrivateFrameworks/MonitorPanel.framework/Versions/A/MonitorPane l
    0x961d9000 - 0x96226feb  com.apple.DirectoryService.PasswordServerFramework 6.1 (6.1) <00A1A83B-0E7D-D0F4-A643-8C5675C2BB21> /System/Library/PrivateFrameworks/PasswordServer.framework/Versions/A/PasswordS erver
    0x96227000 - 0x9627aff7  com.apple.HIServices 1.8.3 (???) <1D3C4587-6318-C339-BD0F-1988F246BE2E> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ HIServices.framework/Versions/A/HIServices
    0x9627b000 - 0x962b5ff7  libcups.2.dylib 2.8.0 (compatibility 2.0.0) <A6C207E3-7B42-926D-9C93-BE3F50B92496> /usr/lib/libcups.2.dylib
    0x962b6000 - 0x962b9fe7  libmathCommon.A.dylib 315.0.0 (compatibility 1.0.0) <1622A54F-1A98-2CBE-B6A4-2122981A500E> /usr/lib/system/libmathCommon.A.dylib
    0x962ba000 - 0x962c2ff7  com.apple.DisplayServicesFW 2.3.3 (289) <828084B0-9197-14DD-F66A-D634250A212E> /System/Library/PrivateFrameworks/DisplayServices.framework/Versions/A/DisplayS ervices
    0x962c3000 - 0x963c3fe7  libxml2.2.dylib 10.3.0 (compatibility 10.0.0) <BE7FCD73-03B5-25A4-FCA4-D4980F1488D6> /usr/lib/libxml2.2.dylib
    0x96a6a000 - 0x96a8afe7  libresolv.9.dylib 41.1.0 (compatibility 1.0.0) <8C2B5FA8-2469-21C7-D297-F95A0FFE5F19> /usr/lib/libresolv.9.dylib
    0x96afa000 - 0x96b50ff7  com.apple.MeshKitRuntime 1.1 (49.2) <CB9F38B1-E107-EA62-EDFF-02EE79F6D1A5> /System/Library/PrivateFrameworks/MeshKit.framework/Versions/A/Frameworks/MeshK itRuntime.framework/Versions/A/MeshKitRuntime
    0x96b51000 - 0x96ba1ff7  com.apple.Symbolication 1.1 (67) <E0C94D8B-4F12-49E6-BAA5-3B00441A047B> /System/Library/PrivateFrameworks/Symbolication.framework/Versions/A/Symbolicat ion
    0x96ba8000 - 0x96bc9fe7  com.apple.opencl 12.3.6 (12.3.6) <B4104B80-1CB3-191C-AFD3-697843C6BCFF> /System/Library/Frameworks/OpenCL.framework/Versions/A/OpenCL
    0x96c10000 - 0x96c51ff7  libRIP.A.dylib 545.0.0 (compatibility 64.0.0) <80998F66-0AD7-AD12-B9AF-3E8D2CE6DE05> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ CoreGraphics.framework/Versions/A/Resources/libRIP.A.dylib
    0x96cd4000 - 0x96d07ff7  com.apple.AE 496.5 (496.5) <BF9673D5-2419-7120-26A3-83D264C75222> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/AE.fram ework/Versions/A/AE
    0x96d08000 - 0x96d3efff  libtidy.A.dylib ??? (???) <0FD72C68-4803-4C5B-3A63-05D7394BFD71> /usr/lib/libtidy.A.dylib
    0x96d3f000 - 0x96f21fff  com.apple.imageKit 2.0.3 (1.0) <6E557757-26F7-7941-8AE7-046EC1871F50> /System/Library/Frameworks/Quartz.framework/Versions/A/Frameworks/ImageKit.fram ework/Versions/A/ImageKit
    0x96f22000 - 0x96f24fe7  com.apple.ExceptionHandling 1.5 (10) <21F37A49-E63B-121E-D406-1BBC94BEC762> /System/Library/Frameworks/ExceptionHandling.framework/Versions/A/ExceptionHand ling
    0x96f25000 - 0x96f63ff7  com.apple.QuickLookFramework 2.3 (327.7) <6387A103-C7EF-D56B-10EF-5ED5FC7F33A5> /System/Library/Frameworks/QuickLook.framework/Versions/A/QuickLook
    0x96f64000 - 0x96f64ff7  com.apple.Carbon 150 (152) <8F767518-AD3C-5CA0-7613-674CD2B509C4> /System/Library/Frameworks/Carbon.framework/Versions/A/Carbon
    0x97083000 - 0x97fd6ffb  com.apple.QuickTimeComponents.component 7.6.6 (1791) /System/Library/QuickTime/QuickTimeComponents.component/Contents/MacOS/QuickTim eComponents
    0x98018000 - 0x9801bff7  libCoreVMClient.dylib ??? (???) <37F56237-4ABA-E5B5-968D-70FFE357E8E0> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libCoreVMClien t.dylib
    0x9801c000 - 0x98197fe7  com.apple.CoreFoundation 6.6.6 (550.44) <F88C95CD-1264-782D-A1F5-204739847E93> /System/Library/Frameworks/CoreFoundation.framework/Versions/A/CoreFoundation
    0x98198000 - 0x9819aff7  libRadiance.dylib ??? (???) <5F803B4A-B294-BA94-FB68-E8756EE41B20> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ImageIO.framework/Versions/A/Resources/libRadiance.dylib
    0x9819b000 - 0x98216fff  com.apple.AppleVAFramework 4.10.27 (4.10.27) <BFD2D1CA-535C-F16F-0EB5-04905ABD65CF> /System/Library/PrivateFrameworks/AppleVA.framework/Versions/A/AppleVA
    0x98217000 - 0x98222ff7  com.apple.CrashReporterSupport 10.6.7 (258) <8F3E7415-1FFF-0C20-2EAB-6A23B9728728> /System/Library/PrivateFrameworks/CrashReporterSupport.framework/Versions/A/Cra shReporterSupport
    0x98223000 - 0x9829dfff  com.apple.audio.CoreAudio 3.2.6 (3.2.6) <156A532C-0B60-55B0-EE27-D02B82AA6217> /System/Library/Frameworks/CoreAudio.framework/Versions/A/CoreAudio
    0x9829e000 - 0x9829eff7  liblangid.dylib ??? (???) <B99607FC-5646-32C8-2C16-AFB5EA9097C2> /usr/lib/liblangid.dylib
    0x9829f000 - 0x9837cfe3  com.apple.DiscRecording 5.0.9 (5090.4.2) <92C85A16-5C80-9F35-13BE-2B312956AA9A> /Sys

    Hi again ... Blueberry ... I tried 64bit on both LP and BFD2,but the same thing - crashes every five to ten minutes,and I got thread 7 crashing two consecutive times ... so I send the last crash report ... for maybe another chance ?! Again,thanx in advance ... !!!
    Process:         Logic Pro [436]
    Path:            /Applications/Logic Pro.app/Contents/MacOS/Logic Pro
    Identifier:      com.apple.logic.pro
    Version:         9.1.7 (1700.57)
    Build Info:      Logic-17005700~1
    Code Type:       X86-64 (Native)
    Parent Process:  launchd [104]
    Date/Time:       2012-09-24 13:36:13.220 +0200
    OS Version:      Mac OS X 10.6.8 (10K549)
    Report Version:  6
    Interval Since Last Report:          120270 sec
    Crashes Since Last Report:           3
    Per-App Interval Since Last Report:  3719 sec
    Per-App Crashes Since Last Report:   3
    Anonymous UUID:                      E83ADF94-6FF4-4FE4-8493-150481609770
    Exception Type:  EXC_CRASH (SIGABRT)
    Exception Codes: 0x0000000000000000, 0x0000000000000000
    Crashed Thread:  7
    Application Specific Information:
    abort() called
    Thread 0:  Dispatch queue: com.apple.main-thread
    0   libSystem.B.dylib                       0x00007fff87146d7a mach_msg_trap + 10
    1   libSystem.B.dylib                       0x00007fff871473ed mach_msg + 59
    2   com.apple.CoreGraphics                  0x00007fff87e46230 _CGSSynchronizeWindowBackingStore + 97
    3   com.apple.CoreGraphics                  0x00007fff87e2bda9 _CGSLockWindow + 4515
    4   com.apple.CoreGraphics                  0x00007fff87e3293f CGSDeviceLock + 535
    5   libRIP.A.dylib                          0x00007fff84748e7b ripd_Lock + 46
    6   libRIP.A.dylib                          0x00007fff8474f1f9 ripl_BltImage + 294
    7   libRIP.A.dylib                          0x00007fff8474ee61 ripc_RenderImage + 323
    8   libRIP.A.dylib                          0x00007fff8474cf96 ripc_DrawImage + 2411
    9   com.apple.CoreGraphics                  0x00007fff87e68c0a CGContextDrawImage + 446
    10  com.apple.logic.pro                     0x00000001006fc67f CSeqEvHdr_Templ<CEvMarker, (TSeqEvHdrType)3, CEv, CEv, std::allocator<CEvMarker> >::EvValidAt(TSignedPureClock) + 38191
    11  com.apple.logic.pro                     0x0000000100512a7d std::vector<unsigned int, std::allocator<unsigned int> >::reserve(unsigned long) + 192701
    12  com.apple.logic.pro                     0x0000000100514d92 std::vector<unsigned int, std::allocator<unsigned int> >::reserve(unsigned long) + 201682
    13  com.apple.logic.pro                     0x0000000100399999 std::vector<POINT, std::allocator<POINT> >::erase(__gnu_cxx::__normal_iterator<POINT*, std::vector<POINT, std::allocator<POINT> > >, __gnu_cxx::__normal_iterator<POINT*, std::vector<POINT, std::allocator<POINT> > >) + 19433
    14  com.apple.logic.pro                     0x000000010050cdf1 std::vector<unsigned int, std::allocator<unsigned int> >::reserve(unsigned long) + 169009
    15  com.apple.logic.pro                     0x000000010050d1bf std::vector<unsigned int, std::allocator<unsigned int> >::reserve(unsigned long) + 169983
    16  com.apple.logic.pro                     0x0000000100521efe std::vector<unsigned int, std::allocator<unsigned int> >::reserve(unsigned long) + 255294
    17  com.apple.logic.pro                     0x00000001001adfb8 std::vector<TTempoWarpMerge, std::allocator<TTempoWarpMerge> >::reserve(unsigned long) + 162360
    18  com.apple.logic.pro                     0x00000001005dc79f std::_Rb_tree<std::string, std::pair<std::string const, TOSCMessageData>, std::_Select1st<std::pair<std::string const, TOSCMessageData> >, std::less<std::string>, std::allocator<std::pair<std::string const, TOSCMessageData> > >::insert_unique(std::_Rb_tree_iterator<std::pair<std::string const, TOSCMessageData> >, std::pair<std::string const, TOSCMessageData> const&) + 417727
    19  com.apple.logic.pro                     0x00000001005cedaa std::_Rb_tree<std::string, std::pair<std::string const, TOSCMessageData>, std::_Select1st<std::pair<std::string const, TOSCMessageData> >, std::less<std::string>, std::allocator<std::pair<std::string const, TOSCMessageData> > >::insert_unique(std::_Rb_tree_iterator<std::pair<std::string const, TOSCMessageData> >, std::pair<std::string const, TOSCMessageData> const&) + 361930
    20  com.apple.logic.pro                     0x00000001006c87c5 std::_Rb_tree<TPureClock, std::pair<TPureClock const, EuControlSwitch*>, std::_Select1st<std::pair<TPureClock const, EuControlSwitch*> >, std::less<TPureClock>, std::allocator<std::pair<TPureClock const, EuControlSwitch*> > >::insert_unique(std::pair<TPureClock const, EuControlSwitch*> const&) + 269685
    21  com.apple.AppKit                        0x00007fff85cacd75 -[NSView _drawRect:clip:] + 3566
    22  com.apple.AppKit                        0x00007fff85caa54b -[NSView _recursiveDisplayRectIfNeededIgnoringOpacity:isVisibleRect:rectIsVisibleRectFor View:topView:] + 2112
    23  com.apple.AppKit                        0x00007fff85caaed6 -[NSView _recursiveDisplayRectIfNeededIgnoringOpacity:isVisibleRect:rectIsVisibleRectFor View:topView:] + 4555
    24  com.apple.AppKit                        0x00007fff85caaed6 -[NSView _recursiveDisplayRectIfNeededIgnoringOpacity:isVisibleRect:rectIsVisibleRectFor View:topView:] + 4555
    25  com.apple.AppKit                        0x00007fff85caaed6 -[NSView _recursiveDisplayRectIfNeededIgnoringOpacity:isVisibleRect:rectIsVisibleRectFor View:topView:] + 4555
    26  com.apple.AppKit                        0x00007fff85caaed6 -[NSView _recursiveDisplayRectIfNeededIgnoringOpacity:isVisibleRect:rectIsVisibleRectFor View:topView:] + 4555
    27  com.apple.AppKit                        0x00007fff85ca9b2c -[NSThemeFrame _recursiveDisplayRectIfNeededIgnoringOpacity:isVisibleRect:rectIsVisibleRectFor View:topView:] + 254
    28  com.apple.prokit                        0x000000010123163d -[NSProWindowFrame _recursiveDisplayRectIfNeededIgnoringOpacity:isVisibleRect:rectIsVisibleRectFor View:topView:] + 85
    29  com.apple.AppKit                        0x00007fff85ca63de -[NSView _displayRectIgnoringOpacity:isVisibleRect:rectIsVisibleRectForView:] + 2683
    30  com.apple.AppKit                        0x00007fff85c1fc0e -[NSView displayIfNeeded] + 969
    31  com.apple.AppKit                        0x00007fff85c1aaba _handleWindowNeedsDisplay + 678
    32  com.apple.CoreFoundation                0x00007fff873b3b07 __CFRunLoopDoObservers + 519
    33  com.apple.CoreFoundation                0x00007fff8738f434 __CFRunLoopRun + 468
    34  com.apple.CoreFoundation                0x00007fff8738ed8f CFRunLoopRunSpecific + 575
    35  com.apple.HIToolbox                     0x00007fff86b227ee RunCurrentEventLoopInMode + 333
    36  com.apple.HIToolbox                     0x00007fff86b225f3 ReceiveNextEventCommon + 310
    37  com.apple.HIToolbox                     0x00007fff86b224ac BlockUntilNextEventMatchingListInMode + 59
    38  com.apple.AppKit                        0x00007fff85befeb2 _DPSNextEvent + 708
    39  com.apple.AppKit                        0x00007fff85bef801 -[NSApplication nextEventMatchingMask:untilDate:inMode:dequeue:] + 155
    40  com.apple.AppKit                        0x00007fff85bb568f -[NSApplication run] + 395
    41  com.apple.prokit                        0x000000010120805b NSProApplicationMain + 267
    42  com.apple.logic.pro                     0x000000010002a638 DummyConnection::DummyConnection() + 86
    Thread 1:  Dispatch queue: com.apple.libdispatch-manager
    0   libSystem.B.dylib                       0x00007fff8715fc0a kevent + 10
    1   libSystem.B.dylib                       0x00007fff87161add _dispatch_mgr_invoke + 154
    2   libSystem.B.dylib                       0x00007fff871617b4 _dispatch_queue_invoke + 185
    3   libSystem.B.dylib                       0x00007fff871612de _dispatch_worker_thread2 + 252
    4   libSystem.B.dylib                       0x00007fff87160c08 _pthread_wqthread + 353
    5   libSystem.B.dylib                       0x00007fff87160aa5 start_wqthread + 13
    Thread 2:
    0   libSystem.B.dylib                       0x00007fff87146d7a mach_msg_trap + 10
    1   libSystem.B.dylib                       0x00007fff871473ed mach_msg + 59
    2   com.apple.CoreFoundation                0x00007fff8738f902 __CFRunLoopRun + 1698
    3   com.apple.CoreFoundation                0x00007fff8738ed8f CFRunLoopRunSpecific + 575
    4   com.apple.Foundation                    0x00007fff8545a14f +[NSURLConnection(NSURLConnectionReallyInternal) _resourceLoadLoop:] + 297
    5   com.apple.Foundation                    0x00007fff853db114 __NSThread__main__ + 1429
    6   libSystem.B.dylib                       0x00007fff8717ffd6 _pthread_start + 331
    7   libSystem.B.dylib                       0x00007fff8717fe89 thread_start + 13
    Thread 3:  com.apple.CFSocket.private
    0   libSystem.B.dylib                       0x00007fff8718a932 select$DARWIN_EXTSN + 10
    1   com.apple.CoreFoundation                0x00007fff873b1468 __CFSocketManager + 824
    2   libSystem.B.dylib                       0x00007fff8717ffd6 _pthread_start + 331
    3   libSystem.B.dylib                       0x00007fff8717fe89 thread_start + 13
    Thread 4:
    0   libSystem.B.dylib                       0x00007fff87181a6a __semwait_signal + 10
    1   libSystem.B.dylib                       0x00007fff87185881 _pthread_cond_wait + 1286
    2   com.apple.music.apps.MAFiles            0x00000001030334d4 ExtendedAudioFileScheduler::WorkerThreadProc() + 100
    3   com.apple.music.apps.MAFiles            0x0000000103033589 ExtendedAudioFileScheduler::WorkerThreadProc(void*) + 9
    4   libSystem.B.dylib                       0x00007fff8717ffd6 _pthread_start + 331
    5   libSystem.B.dylib                       0x00007fff8717fe89 thread_start + 13
    Thread 5:
    0   libSystem.B.dylib                       0x00007fff87181a6a __semwait_signal + 10
    1   libSystem.B.dylib                       0x00007fff87185881 _pthread_cond_wait + 1286
    2   com.apple.music.apps.MAFiles            0x00000001030334d4 ExtendedAudioFileScheduler::WorkerThreadProc() + 100
    3   com.apple.music.apps.MAFiles            0x0000000103033589 ExtendedAudioFileScheduler::WorkerThreadProc(void*) + 9
    4   libSystem.B.dylib                       0x00007fff8717ffd6 _pthread_start + 331
    5   libSystem.B.dylib                       0x00007fff8717fe89 thread_start + 13
    Thread 6:
    0   libSystem.B.dylib                       0x00007fff87146dda semaphore_timedwait_signal_trap + 10
    1   libSystem.B.dylib                       0x00007fff87185772 _pthread_cond_wait + 1015
    2   com.apple.audio.CoreAudio               0x00007fff832d868c CAGuard::WaitFor(unsigned long long) + 168
    3   com.apple.audio.CoreAudio               0x00007fff832dac1b CAGuard::WaitUntil(unsigned long long) + 185
    4   com.apple.audio.CoreAudio               0x00007fff832d8d85 HP_IOThread::WorkLoop() + 1369
    5   com.apple.audio.CoreAudio               0x00007fff832d8827 HP_IOThread::ThreadEntry(HP_IOThread*) + 9
    6   com.apple.audio.CoreAudio               0x00007fff832d8755 CAPThread::Entry(CAPThread*) + 125
    7   libSystem.B.dylib                       0x00007fff8717ffd6 _pthread_start + 331
    8   libSystem.B.dylib                       0x00007fff8717fe89 thread_start + 13
    Thread 7 Crashed:
    0   libSystem.B.dylib                       0x00007fff871b99ce __semwait_signal_nocancel + 10
    1   libSystem.B.dylib                       0x00007fff871b98d0 nanosleep$NOCANCEL + 129
    2   libSystem.B.dylib                       0x00007fff872163ce usleep$NOCANCEL + 57
    3   libSystem.B.dylib                       0x00007fff872359a1 __abort + 113
    4   libSystem.B.dylib                       0x00007fff87235a05 abort_report_np + 0
    5   com.apple.logic.pro                     0x00000001003b1df6 std::_Rb_tree<short, std::pair<short const, CGRect>, std::_Select1st<std::pair<short const, CGRect> >, std::less<short>, std::allocator<std::pair<short const, CGRect> > >::_M_erase(std::_Rb_tree_node<std::pair<short const, CGRect> >*) + 98422
    6   libSystem.B.dylib                       0x00007fff871a71ba _sigtramp + 26
    7   ???                                     0x000000012487e210 0 + 4907852304
    8   com.FXpansion.BFD2                      0x000000012578a32e BFD2::StartVoice(VFoundation::VObjectRef<BFD2KitPiece>&, VFoundation::VObjectRef<BFD2Artic>&, float, int, bool, int, float) + 510
    9   com.FXpansion.BFD2                      0x000000012578d609 BFD2::NoteOn(int, int, float, unsigned int, int, double, bool) + 1161
    10  com.FXpansion.BFD2                      0x000000012578db3d BFD2::ProcessMIDIEvent(VstMidiEvent const*) + 893
    11  com.FXpansion.BFD2                      0x00000001257a2a42 SynthBase::ProcessCollectedEvents(int, bool, bool) + 434
    12  com.FXpansion.BFD2                      0x0000000125788032 BFD2::ProcessCollectedEvents(int, bool) + 34
    13  com.FXpansion.BFD2                      0x000000012578b09d BFD2::bfd2process(float**, float**, int) + 2109
    14  com.FXpansion.BFD2                      0x000000012578c368 BFD2::processReplacing(float**, float**, int) + 584
    15  com.FXpansion.BFD2                      0x0000000125bdb31e VST2AU::CPluginWrapperLite::CallProcReplaceFP(float**, int) + 156
    16  com.FXpansion.BFD2                      0x0000000125bdc288 VST2AU::CPluginWrapperLite::ProcessData(float**, int, VST2AU::MusicalTime*) + 706
    17  com.FXpansion.BFD2                      0x0000000125bd5d7f CVST2AUPlugin<CAuEntryPointMusicDeviceBase>::Render(unsigned int&, AudioTimeStamp const&, unsigned int) + 1377
    18  com.FXpansion.BFD2                      0x0000000125bcda85 AUBase::RenderBus(unsigned int&, AudioTimeStamp const&, unsigned int, unsigned int) + 81
    19  com.FXpansion.BFD2                      0x0000000125be460b AUBase::DoRenderBus(unsigned int&, AudioTimeStamp const&, unsigned int, AUOutputElement*, unsigned int, AudioBufferList&) + 167
    20  com.FXpansion.BFD2                      0x0000000125bdf440 AUBase::DoRender(unsigned int&, AudioTimeStamp const&, unsigned int, unsigned int, AudioBufferList&) + 584
    21  com.FXpansion.BFD2                      0x0000000125be5e57 AUBase::ComponentEntryDispatch(ComponentParameters*, AUBase*) + 2343
    22  com.FXpansion.BFD2                      0x0000000125bec6c1 MusicDeviceBase::ComponentEntryDispatch(ComponentParameters*, MusicDeviceBase*) + 473
    23  com.FXpansion.BFD2                      0x000000012596bcd7 CVST2AUPluginEntry + 39
    24  ...apple.audio.units.AudioUnit          0x00007fff8564dee7 AudioUnitRender + 61
    25  com.apple.logic.pro                     0x0000000100538ef8 std::vector<unsigned int, std::allocator<unsigned int> >::reserve(unsigned long) + 349496
    26  ...le.music.apps.MAAudioEngine          0x000000010310cf99 MD::PluginProcess(MDProcInfo*, MDPlug*, float const*, long, long, long, eProcessLevel) + 4377
    27  ...le.music.apps.MAAudioEngine          0x000000010310dfaf MD::StreamProcessing(eProcessLevel, long, long, long) + 1807
    28  ...le.music.apps.MAAudioEngine          0x0000000103111009 MD::Process(eProcessLevel) + 1065
    29  ...le.music.apps.MAAudioEngine          0x00000001031133c3 MD::CallProcessThread1(void*) + 211
    30  libSystem.B.dylib                       0x00007fff8717ffd6 _pthread_start + 331
    31  libSystem.B.dylib                       0x00007fff8717fe89 thread_start + 13
    Thread 8:
    0   libSystem.B.dylib                       0x00007fff87181a6a __semwait_signal + 10
    1   libSystem.B.dylib                       0x00007fff87185881 _pthread_cond_wait + 1286
    2   ...le.music.apps.MAAudioEngine          0x00000001031131fe MD::CallProcessThread2(void*) + 302
    3   libSystem.B.dylib                       0x00007fff8717ffd6 _pthread_start + 331
    4   libSystem.B.dylib                       0x00007fff8717fe89 thread_start + 13
    Thread 9:
    0   libSystem.B.dylib                       0x00007fff87181a6a __semwait_signal + 10
    1   libSystem.B.dylib                       0x00007fff87185881 _pthread_cond_wait + 1286
    2   ...le.music.apps.MAAudioEngine          0x00000001031116de MD::CallProcessThread15(void*) + 302
    3   libSystem.B.dylib                       0x00007fff8717ffd6 _pthread_start + 331
    4   libSystem.B.dylib                       0x00007fff8717fe89 thread_start + 13
    Thread 10:
    0   libSystem.B.dylib                       0x00007fff87146dce semaphore_timedwait_trap + 10
    1   com.FXpansion.BFD2                      0x0000000125b36fd2 VFoundation::VSemaphore::WaitForSemaphore(int) + 100
    2   com.FXpansion.BFD2                      0x0000000125b25c1e VFoundation::VLogFile::WriteThread() + 52
    3   com.FXpansion.BFD2                      0x0000000125b25ff4 VFoundation::VLogFile::WriteThread_Proxy(void*) + 30
    4   libSystem.B.dylib                       0x00007fff8717ffd6 _pthread_start + 331
    5   libSystem.B.dylib                       0x00007fff8717fe89 thread_start + 13
    Thread 11:
    0   libSystem.B.dylib                       0x00007fff87146dce semaphore_timedwait_trap + 10
    1   com.FXpansion.BFD2                      0x0000000125b36fd2 VFoundation::VSemaphore::WaitForSemaphore(int) + 100
    2   com.FXpansion.BFD2                      0x0000000125b22eb6 VFoundation::VJobServer::ServerThread() + 256
    3   com.FXpansion.BFD2                      0x0000000125b23512 VFoundation::VJobServer::ServerThreadProxy(void*) + 38
    4   libSystem.B.dylib                       0x00007fff8717ffd6 _pthread_start + 331
    5   libSystem.B.dylib                       0x00007fff8717fe89 thread_start + 13
    Thread 12:
    0   libSystem.B.dylib                       0x00007fff87181a6a __semwait_signal + 10
    1   libSystem.B.dylib                       0x00007fff871818f9 nanosleep + 148
    2   libSystem.B.dylib                       0x00007fff871ce9ac sleep + 61
    3   ...sic.apps.MAAudioUnitSupport          0x00000001010c998a CAudioUnitClient::WatchDog(void*) + 26
    4   libSystem.B.dylib                       0x00007fff8717ffd6 _pthread_start + 331
    5   libSystem.B.dylib                       0x00007fff8717fe89 thread_start + 13
    Thread 13:
    0   libSystem.B.dylib                       0x00007fff87181a6a __semwait_signal + 10
    1   libSystem.B.dylib                       0x00007fff87185881 _pthread_cond_wait + 1286
    2   ...le.music.apps.MAAudioEngine          0x000000010312e140 CAudioFileBlockManager::GetBlock(MDFile const*, long, int) + 2064
    3   libSystem.B.dylib                       0x00007fff8717ffd6 _pthread_start + 331
    4   libSystem.B.dylib                       0x00007fff8717fe89 thread_start + 13
    Thread 14:
    0   libSystem.B.dylib                       0x00007fff87146d7a mach_msg_trap + 10
    1   libSystem.B.dylib                       0x00007fff871473ed mach_msg + 59
    2   com.apple.audio.midi.CoreMIDI           0x00000001016e69c1 XServerMachPort::ReceiveMessage(int&, void*, int&) + 155
    3   com.apple.audio.midi.CoreMIDI           0x000000010170373d MIDIProcess::RunMIDIInThread() + 147
    4   com.apple.audio.midi.CoreMIDI           0x00000001016e7ace XThread::RunHelper(void*) + 10
    5   com.apple.audio.midi.CoreMIDI           0x00000001016e7509 CAPThread::Entry(CAPThread*) + 67
    6   libSystem.B.dylib                       0x00007fff8717ffd6 _pthread_start + 331
    7   libSystem.B.dylib                       0x00007fff8717fe89 thread_start + 13
    Thread 15:
    0   libSystem.B.dylib                       0x00007fff87146dda semaphore_timedwait_signal_trap + 10
    1   libSystem.B.dylib                       0x00007fff87185772 _pthread_cond_wait + 1015
    2   ...ple.CoreServices.CarbonCore          0x00007fff85861018 TSWaitOnConditionTimedRelative + 209
    3   ...ple.CoreServices.CarbonCore          0x00007fff85860dc6 TSWaitOnSemaphoreCommon + 416
    4   ...ple.CoreServices.CarbonCore          0x00007fff858d75b8 TimerThread + 63
    5   libSystem.B.dylib                       0x00007fff8717ffd6 _pthread_start + 331
    6   libSystem.B.dylib                       0x00007fff8717fe89 thread_start + 13
    Thread 16:
    0   libSystem.B.dylib                       0x00007fff8718a932 select$DARWIN_EXTSN + 10
    1   com.apple.logic.pro                     0x000000010090e1d2 std::vector<std::pair<double, AttachedTimerListener>, std::allocator<std::pair<double, AttachedTimerListener> > >::_M_insert_aux(__gnu_cxx::__normal_iterator<std::pair<double, AttachedTimerListener>*, std::vector<std::pair<double, AttachedTimerListener>, std::allocator<std::pair<double, AttachedTimerListener> > > >, std::pair<double, AttachedTimerListener> const&) + 1554
    2   com.apple.logic.pro                     0x0000000100556b9d std::vector<TOSCService, std::allocator<TOSCService> >::erase(__gnu_cxx::__normal_iterator<TOSCService*, std::vector<TOSCService, std::allocator<TOSCService> > >, __gnu_cxx::__normal_iterator<TOSCService*, std::vector<TOSCService, std::allocator<TOSCService> > >) + 40317
    3   libSystem.B.dylib                       0x00007fff8717ffd6 _pthread_start + 331
    4   libSystem.B.dylib                       0x00007fff8717fe89 thread_start + 13
    Thread 17:
    0   libSystem.B.dylib                       0x00007fff87146dce semaphore_timedwait_trap + 10
    1   com.FXpansion.BFD2                      0x0000000125b36fd2 VFoundation::VSemaphore::WaitForSemaphore(int) + 100
    2   com.FXpansion.BFD2                      0x0000000125b22eb6 VFoundation::VJobServer::ServerThread() + 256
    3   com.FXpansion.BFD2                      0x0000000125b23512 VFoundation::VJobServer::ServerThreadProxy(void*) + 38
    4   libSystem.B.dylib                       0x00007fff8717ffd6 _pthread_start + 331
    5   libSystem.B.dylib                       0x00007fff8717fe89 thread_start + 13
    Thread 18:
    0   libSystem.B.dylib                       0x00007fff87146dce semaphore_timedwait_trap + 10
    1   com.FXpansion.BFD2                      0x0000000125b36fd2 VFoundation::VSemaphore::WaitForSemaphore(int) + 100
    2   com.FXpansion.BFD2                      0x0000000125b22eb6 VFoundation::VJobServer::ServerThread() + 256
    3   com.FXpansion.BFD2                      0x0000000125b23512 VFoundation::VJobServer::ServerThreadProxy(void*) + 38
    4   libSystem.B.dylib                       0x00007fff8717ffd6 _pthread_start + 331
    5   libSystem.B.dylib                       0x00007fff8717fe89 thread_start + 13
    Thread 19:
    0   libSystem.B.dylib                       0x00007fff87146dce semaphore_timedwait_trap + 10
    1   com.FXpansion.BFD2                      0x0000000125b36fd2 VFoundation::VSemaphore::WaitForSemaphore(int) + 100
    2   com.FXpansion.BFD2                      0x0000000125b22eb6 VFoundation::VJobServer::ServerThread() + 256
    3   com.FXpansion.BFD2                      0x0000000125b23512 VFoundation::VJobServer::ServerThreadProxy(void*) + 38
    4   libSystem.B.dylib                       0x00007fff8717ffd6 _pthread_start + 331
    5   libSystem.B.dylib                       0x00007fff8717fe89 thread_start + 13
    Thread 20:
    0   libSystem.B.dylib                       0x00007fff87160a2a __workq_kernreturn + 10
    1   libSystem.B.dylib                       0x00007fff87160e3c _pthread_wqthread + 917
    2   libSystem.B.dylib                       0x00007fff87160aa5 start_wqthread + 13
    Thread 7 crashed with X86 Thread State (64-bit):
      rax: 0x000000000000003c  rbx: 0x000000012487dab0  rcx: 0x000000012487da68  rdx: 0x0000000000000001
      rdi: 0x0000000000000c03  rsi: 0x0000000000000000  rbp: 0x000000012487daa0  rsp: 0x000000012487da68
       r8: 0x0000000000000000   r9: 0x0000000000989680  r10: 0x0000000000000001  r11: 0x0000000000000246
      r12: 0x0000000000000000  r13: 0x000000012f16a490  r14: 0x000000010359e480  r15: 0x000000010359e480
      rip: 0x00007fff871b99ce  rfl: 0x0000000000000247  cr2: 0x00007fff87216395
    Binary Images:
           0x100000000 -        0x100c15ff7  com.apple.logic.pro 9.1.7 (1700.57) <0FDF8E7F-0CCD-ECA3-2441-D4A0B3824CF9> /Applications/Logic Pro.app/Contents/MacOS/Logic Pro
           0x101081000 -        0x10109ffef  com.apple.XSKey 1.0.0 (52) <800DD908-E341-2BCD-11D9-DEAC7E8197E9> /Library/Frameworks/XSKey.framework/Versions/A/XSKey
           0x1010b1000 -        0x1010ebff7  com.apple.music.apps.MAAudioUnitSupport 9.1.7 (233.39) <857ADF31-BFFC-72D8-138D-825264CA1496> /Applications/Logic Pro.app/Contents/Frameworks/MAAudioUnitSupport.framework/Versions/A/MAAudioUnit Support
           0x10110e000 -        0x10113cff7  com.apple.musicaudiodataservices 1.1 (250.92) <AEEF1D8D-B0F3-80E3-EFF7-D8CC48624611> /Applications/Logic Pro.app/Contents/Frameworks/MAAssetSharing.framework/Versions/A/MAAssetSharing
           0x10114e000 -        0x1011b1ff7  com.apple.music.apps.MALoopManagement 9.1.7 (218.94) <0F151234-E08E-6104-F3F3-84B43A54CB93> /Applications/Logic Pro.app/Contents/Frameworks/MALoopManagement.framework/Versions/A/MALoopManagem ent
           0x1011e8000 -        0x101476ff7  com.apple.prokit 7.0 (1331) <652F2738-CDD3-8E56-63CB-E5E94F863562> /System/Library/PrivateFrameworks/ProKit.framework/Versions/A/ProKit
           0x1015f8000 -        0x10168efe7  com.apple.music.apps.MACore 9.1.7 (477.48) <CE7FBC7E-CC01-1E48-AEF9-2FC36CA0CDC7> /Applications/Logic Pro.app/Contents/Frameworks/MACore.framework/Versions/A/MACore
           0x1016d8000 -        0x101728ff7  com.apple.audio.midi.CoreMIDI 1.7.1 (42) <E7DBCE93-A637-ABA2-B623-6A76B82EE243> /System/Library/Frameworks/CoreMIDI.framework/Versions/A/CoreMIDI
           0x101750000 -        0x1017aefef  com.apple.music.apps.MAHarmony 9.1.7 (198.94) <B73F8A72-F258-B576-5087-4FA84157BF6B> /Applications/Logic Pro.app/Contents/Frameworks/MAHarmony.framework/Versions/A/MAHarmony
           0x1017d6000 -        0x101c17ff7  com.apple.music.apps.MAPlugInGUI 9.1.7 (424.69) <997BFC84-CA1B-D0C2-F693-AF6A19D4D532> /Applications/Logic Pro.app/Contents/Frameworks/MAPlugInGUI.framework/Versions/A/MAPlugInGUI
           0x101edb000 -        0x101fb7fff  com.apple.music.apps.OMF 9.1.7 (108.93) <DF8FBD5E-0E11-6906-4668-B2D766AC58AC> /Applications/Logic Pro.app/Contents/Frameworks/OMF.framework/Versions/A/OMF
           0x101fd6000 -        0x102606fe7  com.apple.music.apps.MADSP 9.1.7 (588.88) <550A0E49-9337-ABBC-F2A9-7238E63F6671> /Applications/Logic Pro.app/Contents/Frameworks/MADSP.framework/Versions/A/MADSP
           0x102e64000 -        0x102e89ff7  com.apple.music.apps.LogicFileBrowser 9.1.7 (1700.57) <084F804E-1E7F-5798-828A-0A2E2EF04681> /Applications/Logic Pro.app/Contents/Frameworks/LogicFileBrowser.framework/Versions/A/LogicFileBrow ser
           0x102e9c000 -        0x102f1afff  com.apple.music.apps.LogicLoopBrowser 9.1.7 (1700.57) <36AC91D8-EF48-7A54-286F-3F1174324AFF> /Applications/Logic Pro.app/Contents/Frameworks/LogicLoopBrowser.framework/Versions/A/LogicLoopBrow ser
           0x102f49000 -        0x102f6dff7  com.apple.music.apps.MAApogeeSupport 9.1.7 (311.94) <497FDA37-5101-16D5-6596-55C461316E52> /Applications/Logic Pro.app/Contents/Frameworks/MAApogeeSupport.framework/Versions/A/MAApogeeSuppor t
           0x102f7b000 -        0x102f80fff  com.apple.music.apps.MAResources 9.1.7 (211.95) <25F7F06C-9114-021A-8A36-508BC6F3F113> /Applications/Logic Pro.app/Contents/Frameworks/MAResources.framework/Versions/A/MAResources
           0x102f83000 -        0x102faffff  com.apple.audio.CoreAudioKit 1.6.1 (1.6.1) <5B92DFB9-CE09-74B3-E67D-7302FB5984E8> /System/Library/Frameworks/CoreAudioKit.framework/Versions/A/CoreAudioKit
           0x102fc8000 -        0x102fdbff7  com.apple.AERegistration 1.2 (401) <A424BA9F-0DD7-BE25-2738-4BCD22F0BB2A> /Applications/Logic Pro.app/Contents/Frameworks/AERegistration.framework/Versions/A/AERegistration
           0x102ff4000 -        0x103001fff  com.apple.music.apps.MAUnitTest 9.1.7 (95.94) <52F71799-5698-697F-B6DA-B02CEFE7E781> /Applications/Logic Pro.app/Contents/Frameworks/MAUnitTest.framework/Versions/A/MAUnitTest
           0x10300a000 -        0x1030c5fe7  com.apple.music.apps.MAFiles 9.1.7 (144.77) <79A435CF-6C06-4C2E-1190-DC1EA172CF68> /Applications/Logic Pro.app/Contents/Frameworks/MAFiles.framework/Versions/A/MAFiles
           0x1030fe000 -        0x10317afe7  com.apple.music.apps.MAAudioEngine 9.1.7 (158.32) <D1DF9B37-D550-B036-C469-659F71C6D12B> /Applications/Logic Pro.app/Contents/Frameworks/MAAudioEngine.framework/Versions/A/MAAudioEngine
           0x1031ee000 -        0x1031f9fff  com.apple.music.apps.MAToolKit 9.1.7 (357.98) <7481B55A-8BC6-441F-7977-684B512FFBB9> /Applications/Logic Pro.app/Contents/Frameworks/MAToolKit.framework/Versions/A/MAToolKit
           0x103200000 -        0x10320eff7  com.apple.music.apps.MAVideo 9.1.7 (11.99) <185F8F8E-E133-8129-BF4B-2E30A1C97F51> /Applications/Logic Pro.app/Contents/Frameworks/MAVideo.framework/Versions/A/MAVideo
           0x103216000 -        0x1032fcfe7  libcrypto.0.9.7.dylib 0.9.7 (compatibility 0.9.7) <2D39CB30-54D9-B03E-5FCF-E53122F87484> /usr/lib/libcrypto.0.9.7.dylib
           0x103354000 -        0x103402fec  com.apple.MobileMe 9 (1.01) <F322542E-D3BB-7861-602A-3F405F2BD61B> /Applications/Logic Pro.app/Contents/Frameworks/MobileMe.framework/Versions/A/MobileMe
           0x104500000 -        0x10453dff7  com.apple.prokit.SnowLeopardPanels 7.0 (1331) <73B8BB80-7F77-B5DF-C0B5-BA34E925825A> /System/Library/PrivateFrameworks/ProKit.framework/Versions/A/Resources/SnowLeo pardPanels.bundle/Contents/MacOS/SnowLeopardPanels
           0x1045dd000 -        0x1045ebfff  com.apple.iokit.IOHIDLib 1.6.6 (1.6.6) <E92BCF13-7E55-68CD-22BD-EF427D6EC310> /System/Library/Extensions/IOHIDFamily.kext/Contents/PlugIns/IOHIDLib.plugin/Co ntents/MacOS/IOHIDLib
           0x104708000 -        0x104716fe7  com.apple.audiounit.speechsynthesis 3.10.35 (3.10.35) <F7103418-C4CE-05FB-3F17-60B1655CC5DD> /System/Library/Components/AUSpeechSynthesis.component/Contents/MacOS/AUSpeechS ynthesis
           0x10474b000 -        0x10474dff7  com.apple.music.apps.anvil.resources 9.1.7 (279.92) <709F70D3-7362-0596-94BB-01069BDD9554> /Applications/Logic Pro.app/Contents/PlugIns/anvil.res/Contents/MacOS/anvil
           0x104752000 -        0x104754ff7  com.apple.music.apps.common.resources 9.1.7 (279.92) <6C0ADD96-4929-D745-2292-4660766577CE> /Applications/Logic Pro.app/Contents/PlugIns/common.res/Contents/MacOS/common
           0x104759000 -        0x10475bff7  com.apple.music.apps.ebp.resources 9.1.7 (279.92) <3A2961DD-3994-FE9B-DC48-61B53D568463> /Applications/Logic Pro.app/Contents/PlugIns/ebp.res/Contents/MacOS/ebp
           0x104760000 -        0x104762ff7  com.apple.music.apps.efx.resources 9.1.7 (279.92) <AB2579BC-ACE9-1BF7-9CC0-6C25F361A541> /Applications/Logic Pro.app/Contents/PlugIns/efx.res/Contents/MacOS/efx
           0x104767000 -        0x104769ff7  com.apple.music.apps.egt.resources 9.1.7 (279.92) <28D7C9CF-3FE3-4138-58E6-9C564FB28636> /Applications/Logic Pro.app/Contents/PlugIns/egt.res/Contents/MacOS/egt
           0x10476e000 -        0x104770ff7  com.apple.music.apps.emx.resources 9.1.7 (279.92) <A49C109C-D27E-F0D2-2FC0-8DB8BDDAF905> /Applications/Logic Pro.app/Contents/PlugIns/emx.res/Contents/MacOS/emx
           0x104775000 -        0x104777ff7  com.apple.music.apps.es1.resources 9.1.7 (279.92) <DF6133F9-5010-9A09-F652-32E9918B7F54> /Applications/Logic Pro.app/Contents/PlugIns/es1.res/Contents/MacOS/es1
           0x10477c000 -        0x10477eff7  com.apple.music.apps.es2.resources 9.1.7 (279.92) <CFCFE1D6-9A91-6786-08E8-D5BF24EEBDA4> /Applications/Logic Pro.app/Contents/PlugIns/es2.res/Contents/MacOS/es2
           0x104783000 -        0x104785ff7  com.apple.music.apps.esp.resources 9.1.7 (279.92) <6026F1D3-AA9B-05CA-B053-F280479D4309> /Applications/Logic Pro.app/Contents/PlugIns/esp.res/Contents/MacOS/esp
           0x10478a000 -        0x10478cff7  com.apple.music.apps.evb3.resources 9.1.7 (279.92) <5D87B929-C9B6-6A9A-1945-83B4D15F3143> /Applications/Logic Pro.app/Contents/PlugIns/evb3.res/Contents/MacOS/evb3
           0x104791000 -        0x104793ff7  com.apple.music.apps.evd6.resources 9.1.7 (279.92) <55D57D3C-633A-F334-AD02-3EB5C9703C14> /Applications/Logic Pro.app/Contents/PlugIns/evd6.res/Contents/MacOS/evd6
           0x104798000 -        0x10479aff7  com.apple.music.apps.evoc.resources 9.1.7 (279.92) <9E1A5435-8F18-3094-55F0-3278C114C0CC> /Applications/Logic Pro.app/Contents/PlugIns/evoc.res/Contents/MacOS/evoc
           0x10479f000 -        0x1047a1ff7  com.apple.music.apps.evp88.resources 9.1.7 (279.92) <F6717871-BEBF-7A98-BCBB-8F7934BC82F0> /Applications/Logic Pro.app/Contents/PlugIns/evp88.res/Contents/MacOS/evp88
           0x1047a6000 -        0x1047a8ff7  com.apple.music.apps.exs24.resources 9.1.7 (279.92) <50561320-583F-7436-9DAF-5035A5AD3BA9> /Applications/Logic Pro.app/Contents/PlugIns/exs24.res/Contents/MacOS/exs24
           0x1047ad000 -        0x1047afff7  com.apple.music.apps.guitaramp.resources 9.1.7 (279.92) <07E4A900-E153-3CAB-2173-539379D25E4C> /Applications/Logic Pro.app/Contents/PlugIns/guitaramp.res/Contents/MacOS/guitaramp
           0x1047b4000 -        0x1047b6ff7  com.apple.music.apps.guitarcontrols.resources 9.1.7 (279.92) <0A2BB83E-563B-1C16-55D2-E0FE301FAC85> /Applications/Logic Pro.app/Contents/PlugIns/guitarcontrols.res/Contents/MacOS/guitarcontrols
           0x1047bb000 -        0x1047bdff7  com.apple.music.apps.mutapdel.resources 9.1.7 (279.92) <4FCDDB6F-EA62-0DB1-99B6-6BC5C77C5D28> /Applications/Logic Pro.app/Contents/PlugIns/mutapdel.res/Contents/MacOS/mutapdel
           0x1047c2000 -        0x1047c4ff7  com.apple.music.apps.pedalboard.resources 9.1.7 (279.92) <334D1D4E-BBD1-8E13-F905-76C02D4AAD53> /Applications/Logic Pro.app/Contents/PlugIns/pedalboard.res/Contents/MacOS/pedalboard
           0x1047f2000 -        0x1047f6fff  com.apple.audio.AudioIPCPlugIn 1.1.6 (1.1.6) <917E3DC8-E34D-B130-F61F-50808466E674> /System/Library/Extensions/AudioIPCDriver.kext/Contents/Resources/AudioIPCPlugI n.bundle/Contents/MacOS/AudioIPCPlugIn
           0x119fa1000 -        0x119fc6fff  com.apple.speech.SpeechDictionary 3.10.29 (3.10.29) <65783EAD-7E32-F4AB-6A94-7E4F2D314130> /System/Library/PrivateFrameworks/SpeechDictionary.framework/Versions/A/SpeechD ictionary
           0x11a0f2000 -        0x11a0f8ff7  com.apple.audio.AppleHDAHALPlugIn 2.0.5 (2.0.5f14) <C35BDA60-35FC-4BE7-B378-DCC73D99E2C9> /System/Library/Extensions/AppleHDA.kext/Contents/PlugIns/AppleHDAHALPlugIn.bun dle/Contents/MacOS/AppleHDAHALPlugIn
           0x11b4db000 -        0x11b4e3ff7  com.apple.proapps.mrcheckpro 1.4 (397) <9B320059-8D28-D7DA-8CD4-B42796969065> /Applications/Logic Pro.app/Contents/Resources/MRCheckPro.bundle/Contents/MacOS/MRCheckPro
           0x11b612000 -        0x11b61aff7 +com.FXpansion.BFD2CocoaView 1.0 (1) <2B1B0124-C430-05AC-3C9F-3E9739343750> /Library/Audio/Plug-Ins/Components/BFD2.component/Contents/Resources/BFD2CocoaV iew.bundle/Contents/MacOS/BFD2CocoaView
           0x11bd56000 -        0x11bee9fe7  GLEngine ??? (???) <BCE83654-81EC-D231-ED6E-1DD449B891F2> /System/Library/Frameworks/OpenGL.framework/Resources/GLEngine.bundle/GLEngine
           0x11e0f0000 -        0x11e50cfff  com.apple.ATIRadeonX2000GLDriver 1.6.36 (6.3.6) <EBE273B9-6BF7-32B1-C5A2-2B3C85D776AA> /System/Library/Extensions/ATIRadeonX2000GLDriver.bundle/Contents/MacOS/ATIRade onX2000GLDriver
           0x11e558000 -        0x11e57efff  GLRendererFloat ??? (???) <38621D22-8F49-F937-851B-E21BD49A8A88> /System/Library/Frameworks/OpenGL.framework/Resources/GLRendererFloat.bundle/GL RendererFloat
           0x11e86f000 -        0x11e870ff7  com.apple.music.apps.midi.device.plugin.MCS3 9.1.7 (198.2) <7B446743-3200-951F-9E09-86AB91849293> /Applications/Logic Pro.app/Contents/MIDI Device Plug-ins/MCS3.bundle/Contents/MacOS/MCS3
           0x11e87a000 -        0x11e87cfe7  com.apple.music.apps.midi.device.plugin.CS-32 9.1.7 (198.2) <64730AB4-B60C-A5AC-DA68-C0188B81AA68> /Applications/Logic Pro.app/Contents/MIDI Device Plug-ins/CS-32.bundle/Contents/MacOS/CS-32
           0x11e884000 -        0x11e887ff7  com.apple.music.apps.midi.device.plugin.FW-1884 9.1.7 (198.2) <28FA1EAE-FED3-BB3D-5542-C46A0E30961A> /Applications/Logic Pro.app/Contents/MIDI Device Plug-ins/FW-1884.bundle/Contents/MacOS/FW-1884
           0x11e890000 -        0x11e892ff7  com.apple.music.apps.midi.device.plugin.GiO 9.1.7 (198.2) <0731A7B8-0120-571F-3AF6-76A19FE0003E> /Applications/Logic Pro.app/Contents/MIDI Device Plug-ins/GiO.bundle/Contents/MacOS/GiO
           0x11e897000 -        0x11e89cff7  com.apple.music.apps.midi.device.plugin.HUI 9.1.7 (198.2) <94BE837C-5709-A5B8-E20D-F2F6CB625668> /Applications/Logic Pro.app/Contents/MIDI Device Plug-ins/HUI.bundle/Contents/MacOS/HUI
           0x11e8a9000 -        0x11e8aafef  com.apple.music.apps.midi.device.plugin.iControl 9.1.7 (198.2) <BD5DEC8F-3A56-CFE6-AD88-54AC4405C3A1> /Applications/Logic Pro.app/Contents/MIDI Device Plug-ins/iControl.bundle/Contents/MacOS/iControl
           0x11e8af000 -        0x11e8b2fff  com.apple.music.apps.midi.device.plugin.microKONTROL 9.1.7 (198.2) <F5A5A33B-1315-2961-7B0C-9BBBF89523E6> /Applications/Logic Pro.app/Contents/MIDI Device Plug-ins/microKONTROL.bundle/Contents/MacOS/microKONTROL
           0x11e8b9000 -        0x11e8baff7  com.apple.music.apps.midi.device.plugin.Recording-Light 9.1.7 (198.2) <86D25562-5A77-8C27-D6C8-589959F166D6> /Applications/Logic Pro.app/Contents/MIDI Device Plug-ins/Recording Light.bundle/Contents/MacOS/Recording Light
           0x11e8be000 -        0x11e8c1ff7  com.apple.music.apps.midi.device.plugin.TouchOSC 9.1.7 (198.2) <A5BA6317-2B71-2986-319E-1D41D6660DDB> /Applications/Logic Pro.app/Contents/MIDI Device Plug-ins/TouchOSC.bundle/Contents/MacOS/TouchOSC
           0x11e925000 -        0x11e927fff  com.apple.music.apps.midi.device.plugin.TranzPort 9.1.7 (198.2) <1FC018E6-88F3-2931-EC5A-CBC36FC27334> /Applications/Logic Pro.app/Contents/MIDI Device Plug-ins/TranzPort.bundle/Contents/MacOS/TranzPort
           0x11e92e000 -        0x11e930fff  com.apple.music.apps.midi.device.plugin.US-2400 9.1.7 (198.2) <6B5E2CC4-764D-301B-89D4-074FA65C32B3> /Applications/Logic Pro.app/Contents/MIDI Device Plug-ins/US-2400.bundle/Contents/MacOS/US-2400
           0x11e96f000 -        0x11e971ff7  com.apple.music.apps.revolver.resources 9.1.7 (279.92) <F9956B53-B923-6C68-583F-FC7E4C1D8294> /Applications/Logic Pro.app/Contents/PlugIns/revolver.res/Contents/MacOS/revolver
           0x11e976000 -        0x11e978ff7  com.apple.music.apps.sphere.resources 9.1.7 (279.92) <D45E1C4C-AD05-18D2-0450-065B48163D78> /Applications/Logic Pro.app/Contents/PlugIns/sphere.res/Contents/MacOS/sphere
           0x11fc5f000 -        0x11fc63ff7  libFontRegistryUI.dylib ??? (???) <DE4D4824-5DF2-189F-0FFE-62C81C21F8BB> /System/Library/Frameworks/ApplicationServices.framework/Frameworks/ATS.framewo rk/Resources/libFontRegistryUI.dylib
           0x11fc83000 -        0x11fc8afef  com.apple.music.apps.midi.device.plugin.Logic-Control 9.1.7 (198.2) <EAD66EFA-2D5D-6473-2044-7EA8076E36FE> /Applications/Logic Pro.app/Contents/MIDI Device Plug-ins/Logic Control.bundle/Contents/MacOS/Logic Control
           0x11fcac000 -        0x11fcadfef  com.apple.music.apps.midi.device.plugin.US-428 9.1.7 (198.2) <69BF4BFD-3220-4345-0872-4E6AC1488FD4> /Applications/Logic Pro.app/Contents/MIDI Device Plug-ins/US-428.bundle/Contents/MacOS/US-428
           0x1253c4000 -        0x12548ffef  com.apple.audio.units.Components 1.6.5 (1.6.5) <7786F079-E0CE-39BC-0CE9-EAE1097AF851> /System/Library/Components/CoreAudio.component/Contents/MacOS/CoreAudio
           0x125683000 -        0x126079fe7 +com.FXpansion.BFD2 2.3.0.38 (2.3.0.38) <4EDFEE29-519F-A6CD-9951-99D5061E84D1> /Library/Audio/Plug-Ins/Components/BFD2.component/Contents/MacOS/BFD2
           0x127100000 -        0x1271a2fe7  com.apple.speech.synthesis.MacinTalkSynthesizer 3.10.35 (3.10.35) <CDD6EDFB-9E4F-52F6-5E58-7FD542DC937A> /System/Library/Speech/Synthesizers/MacinTalk.SpeechSynthesizer/Contents/MacOS/ MacinTalk
           0x12cb43000 -        0x12cd35ff7  com.apple.audio.codecs.Components 2.0.4 (2.0.4) <D674F6B1-EA1B-F541-CDA8-8AED81AB5375> /System/Library/Components/AudioCodecs.component/Contents/MacOS/AudioCodecs
        0x7fff5fc00000 -     0x7fff5fc3be0f  dyld 132.1 (???) <29DECB19-0193-2575-D838-CF743F0400B2> /usr/lib/dyld
        0x7fff800b9000 -     0x7fff800b9ff7  com.apple.ApplicationServices 38 (38) <10A0B9E9-4988-03D4-FC56-DDE231A02C63> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Application Services
        0x7fff800ba000 -     0x7fff800bfff7  com.apple.CommonPanels 1.2.4 (91) <4D84803B-BD06-D80E-15AE-EFBE43F93605> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/CommonPanels. framework/Versions/A/CommonPanels
        0x7fff800c0000 -     0x7fff800dbff7  com.apple.openscripting 1.3.1 (???) <9D50701D-54AC-405B-CC65-026FCB28258B> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/OpenScripting .framework/Versions/A/OpenScripting
        0x7fff800dc000 -     0x7fff800edfff  com.apple.DSObjCWrappers.Framework 10.6 (134) <3C08225D-517E-2822-6152-F6EB13A4ADF9> /System/Library/PrivateFrameworks/DSObjCWrappers.framework/Versions/A/DSObjCWra ppers
        0x7fff800ee000 -     0x7fff80204ff7  libxml2.2.dylib 10.3.0 (compatibility 10.0.0) <3814FCF9-92B9-A6AB-E76A-F7021894AA3F> /usr/lib/libxml2.2.dylib
        0x7fff80205000 -     0x7fff80217fe7  libsasl2.2.dylib 3.15.0 (compatibility 3.0.0) <76B83C8D-8EFE-4467-0F75-275648AFED97> /usr/lib/libsasl2.2.dylib
        0x7fff80272000 -     0x7fff802a5ff7  libTrueTypeScaler.dylib ??? (???) <B7BA8104-FA18-39A2-56E1-922EE7A660AC> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ATS.framework/Versions/A/Resources/libTrueTypeScaler.dylib
        0x7fff802a6000 -     0x7fff802a6ff7  com.apple.Accelerate 1.6 (Accelerate 1.6) <15DF8B4A-96B2-CB4E-368D-DEC7DF6B62BB> /System/Library/Frameworks/Accelerate.framework/Versions/A/Accelerate
        0x7fff802a7000 -     0x7fff802aaff7  libCoreVMClient.dylib ??? (???) <75819794-3B7A-8944-D004-7EA6DD7CE836> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libCoreVMClien t.dylib
        0x7fff802db000 -     0x7fff80331fe7  libTIFF.dylib ??? (???) <9BC0CAD5-47F2-9B4F-0C10-D50A7A27F461> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ImageIO.framework/Versions/A/Resources/libTIFF.dylib
        0x7fff80332000 -     0x7fff80373fef  com.apple.QD 3.36 (???) <5DC41E81-32C9-65B2-5528-B33E934D5BB4> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ QD.framework/Versions/A/QD
        0x7fff803f3000 -     0x7fff80404ff7  libz.1.dylib 1.2.3 (compatibility 1.0.0) <97019C74-161A-3488-41EC-A6CA8738418C> /usr/lib/libz.1.dylib

  • Read Memory with "processmemory"

    Hello to All 
    I'm doing a project porting from 32-bit Delphi, Visual C # to a 64-bit 
    in this project I had a procedure called "processmemory" who gave me the exact copy of the contents of a treeview component of an external application in a treeview component of my application 
    I can not find anything like it or translate it to delphi ac # 
    or even tried to use the command AutomationElement me but unfortunately this law only the nodes that are currently open in the application of the other component 
    At this point I have two choices 
    1) convert the code from Delphi to c # but valid for 64 bit 
    2) use AutomationElement but also understand how to read the closed elements or find a way how to open all nodes of the external application and then read 
    I'll post the code below processmemory
    unit uProcessMemMgr;
    author: Michael Winter, [email protected]
    ver:    0.10, 2005-04-27
    desc:
    Provides access to memory of other processes currently running on the same
    machine. Memory can be allocated and deallocated inside the context of the
    other process. Read and write operations supported, not limited to portions
    of memory allocated by the object. Works for the own process, too.
    notes:
    You need one TProcessMemMgr object for each process.
    Freeing the TProcessMemMgr frees all memory allocated for the appropriate
    process.
    Please report any problems with this unit to the email address above.
    interface
    uses
      Windows, Classes,sysutils;
    const
      MemMgrMemSize = 16*1024;
    type
      TProcessMemMgr = class(TObject)
      public
        function AllocMem(Bytes: Cardinal): Pointer; virtual; abstract;
        procedure FreeMem(P: Pointer); virtual; abstract;
        procedure Read(Source: Pointer; var Dest; Bytes: Cardinal); virtual; abstract;
        function ReadStr(Source: PChar): String; overload; virtual; abstract;
        function ReadStr(Source: Pointer; Bytes: Cardinal): String; overload;
        procedure Write(const Source; Dest: Pointer; Bytes: Cardinal); virtual; abstract;
        procedure WriteStr(const Str: String; Dest: Pointer); virtual; abstract;
      end;
    function CreateProcessMemMgr(ProcessID: Cardinal): TProcessMemMgr;
    function CreateProcessMemMgrForWnd(Wnd: HWND): TProcessMemMgr;
    implementation
    type
      EProcessMemMgr = class(Exception);
      TOwnProcessMemMgr = class(TProcessMemMgr)
      private
        FMemList: TThreadList;
      public
        constructor Create;
        destructor Destroy; override;
        function AllocMem(Bytes: Cardinal): Pointer; override;
        procedure FreeMem(P: Pointer); override;
        procedure Read(Source: Pointer; var Dest; Bytes: Cardinal); override;
        function ReadStr(Source: PChar): String; override;
        procedure Write(const Source; Dest: Pointer; Bytes: Cardinal); override;
        procedure WriteStr(const Str: String; Dest: Pointer); override;
      end;
      TForeignProcessMemMgr = class(TProcessMemMgr)
      private
        FProcess: THandle;
        FMemList: TThreadList;
      protected
        procedure NeedMoreMem(Bytes: Cardinal); virtual; abstract;
      public
        constructor Create(ProcessID: Cardinal);
        destructor Destroy; override;
        function AllocMem(Bytes: Cardinal): Pointer; override;
        procedure FreeMem(P: Pointer); override;
        procedure Read(Source: Pointer; var Dest; Bytes: Cardinal); override;
        function ReadStr(Source: PChar): String; override;
        procedure Write(const Source; Dest: Pointer; Bytes: Cardinal); override;
        procedure WriteStr(const Str: String; Dest: Pointer); override;
      end;
      TWin9xProcessMemMgr = class(TForeignProcessMemMgr)
      private
        FSharedList: TList;
      protected
        procedure NeedMoreMem(Bytes: Cardinal); override;
      public
        constructor Create(ProcessID: Cardinal);
        destructor Destroy; override;
      end;
      TWinNTProcessMemMgr = class(TForeignProcessMemMgr)
      private
        FAllocList: TList;
      protected
        procedure NeedMoreMem(Bytes: Cardinal); override;
      public
        constructor Create(ProcessID: Cardinal);
        destructor Destroy; override;
      end;
      PMemRec = ^TMemRec;
      TMemRec = record
        Start: Pointer;
        Size: Cardinal;
        Group: Integer;
        Used: Boolean;
      end;
      TSimpleSharedMem = class(TObject)
      private
        FMapping: THandle;
        FBaseAddr: Pointer;
      public
        constructor Create(Size: Cardinal);
        destructor Destroy; override;
        property BaseAddr: Pointer read FBaseAddr;
      end;
    { Win95 doesn't export these functions, thus we have to import them dynamically: }
    var
      VirtualAllocEx: function (hProcess: THandle; lpAddress: Pointer;
        dwSize, flAllocationType: DWORD; flProtect: DWORD): Pointer; stdcall = nil;
      VirtualFreeEx: function(hProcess: THandle; lpAddress: Pointer;
            dwSize, dwFreeType: DWORD): Pointer; stdcall = nil;
    procedure NeedVirtualAlloc;
    var
      H: HINST;
    begin
      if @VirtualFreeEx <> nil then exit;
      H := GetModuleHandle(kernel32);
      if H = 0 then
        RaiseLastWin32Error;
      @VirtualAllocEx := GetProcAddress(H, 'VirtualAllocEx');
      if @VirtualAllocEx = nil then
        RaiseLastWin32Error;
      @VirtualFreeEx := GetProcAddress(H, 'VirtualFreeEx');
      if @VirtualFreeEx = nil then
        RaiseLastWin32Error;
    end;
    { TProcessMemMgr }
    function TProcessMemMgr.ReadStr(Source: Pointer; Bytes: Cardinal): String;
    begin
      SetLength(Result, Bytes);
      if Bytes > 0 then
        Read(Source, Result[1], Bytes);
    end;
    { TOwnProcessMemMgr }
    function TOwnProcessMemMgr.AllocMem(Bytes: Cardinal): Pointer;
    begin
      Result := AllocMem(Bytes); //2048; //SysUtils.AllocMem(Bytes);
      FMemList.Add(Result);
    end;
    constructor TOwnProcessMemMgr.Create;
    begin
      inherited;
      FMemList := TThreadList.Create;
    end;
    destructor TOwnProcessMemMgr.Destroy;
    var
      i: Integer;
    begin
      if Assigned(FMemList) then begin
        with FMemList.LockList do try
          for i := 0 to Count - 1 do
            System.FreeMem(Items[i]);
        finally
          FMemList.UnlockList;
        end;
        FMemList.Free;
      end;
      inherited;
    end;
    procedure TOwnProcessMemMgr.FreeMem(P: Pointer);
    begin
      FMemList.Remove(P);
      System.FreeMem(P);
    end;
    procedure TOwnProcessMemMgr.Read(Source: Pointer; var Dest; Bytes: Cardinal);
    begin
      System.Move(Source^, Dest, Bytes);
    end;
    function TOwnProcessMemMgr.ReadStr(Source: PChar): String;
    begin
      Result := Source;
    end;
    procedure TOwnProcessMemMgr.Write(const Source; Dest: Pointer; Bytes: Cardinal);
    begin
      System.Move(Source, Dest^, Bytes);
    end;
    procedure TOwnProcessMemMgr.WriteStr(const Str: String; Dest: Pointer);
    begin
      StrPCopy(Dest, Str);
    end;
    { TForeignProcessMemMgr }
    function TForeignProcessMemMgr.AllocMem(Bytes: Cardinal): Pointer;
    var
      t: Integer;
      i: Integer;
      Rec, NewRec: PMemRec;
      Remain: Cardinal;
    begin
      Result := nil;
      with FMemList.LockList do try
        for t := 0 to 1 do begin
          for i := 0 to Count - 1 do begin
            Rec := Items[i];
            if not Rec^.Used and (Rec^.Size >= Bytes) then begin
              Remain := Rec^.Size - Bytes;
              Rec^.Size := Bytes;
              Rec^.Used := true;
              Result := Rec^.Start;
              if Remain > 0 then begin
                New(NewRec);
                NewRec^.Start := Pointer(Cardinal(Result) + Cardinal(Bytes));
                NewRec^.Size := Remain;
                NewRec^.Group := Rec^.Group;
                NewRec^.Used := false;
                Insert(i + 1, NewRec);
              end;
              exit;
            end;
          end;
          NeedMoreMem(Bytes);
        end;
        raise EProcessMemMgr.Create('ProcessMemMgr.AllocMem: not enough memory');
      finally
        FMemList.UnlockList;
      end;
    end;
    constructor TForeignProcessMemMgr.Create(ProcessID: Cardinal);
    begin
      inherited Create;
      FProcess := OpenProcess(PROCESS_VM_OPERATION or PROCESS_VM_READ or PROCESS_VM_WRITE, false, ProcessID);
      if FProcess = 0 then RaiseLastWin32Error;
      FMemList := TThreadList.Create;
    end;
    destructor TForeignProcessMemMgr.Destroy;
    var
      i: Integer;
    begin
      if Assigned(FMemList) then begin
        with FMemList.LockList do try
          for i := 0 to Count - 1 do
            Dispose(PMemRec(Items[i]));
        finally
          FMemList.UnlockList;
        end;
        FMemList.Free;
      end;
      CloseHandle(FProcess);
      inherited;
    end;
    procedure TForeignProcessMemMgr.FreeMem(P: Pointer);
    var
      i, j: Integer;
      Rec, NextRec: PMemRec;
    begin
      with FMemList.LockList do try
        for i := 0 to Count - 1 do begin
          Rec := Items[i];
          if Rec^.Start = P then begin
            Rec^.Used := false;
            j := i + 1;
            while j < Count do begin
              NextRec := Items[j];
              if NextRec^.Used then exit;
              if NextRec^.Group <> Rec^.Group then exit;
              inc(Rec^.Size, NextRec^.Size);
              Dispose(NextRec);
              Delete(j);
            end;
            exit;
          end;
        end;
        Assert(false, 'ProcessMemMgr.FreeMem: unknown pointer');
      finally
        FMemList.UnlockList;
      end;
    end;
    procedure TForeignProcessMemMgr.Read(Source: Pointer; var Dest; Bytes: Cardinal);
    var
      BytesRead: Cardinal;
    begin
      if not ReadProcessMemory(FProcess, Source, @Dest, Bytes, BytesRead) then
        RaiseLastWin32Error;
    end;
    function TForeignProcessMemMgr.ReadStr(Source: PChar): String;
    var
      BytesRead: Cardinal;
      OldSz, DeltaSz, NewSz: Integer;
      Buf: PChar;
      i: Integer;
      Found: Integer;
    begin
      Result := '';
      if Source = nil then exit;
      Buf := nil;
      OldSz := 0;
      DeltaSz := $1000 - (Cardinal(Source) and $FFF);
      Found := -1;
      try
        while Found < 0 do begin
          NewSz := OldSz + DeltaSz;
          System.ReallocMem(Buf, NewSz);
          if not ReadProcessMemory(FProcess, Source + OldSz, Buf + OldSz , DeltaSz, BytesRead) then
            RaiseLastWin32Error;
          for i := OldSz to NewSz - 1 do begin
            if Buf[i] = #0 then begin
              Found := i;
              break;
            end;
          end;
          OldSz := NewSz;
          DeltaSz := $1000;
        end;
        SetLength(Result, Found);
        if Found > 0 then
          System.Move(Buf^, Result[1], Found);
      finally
        System.FreeMem(Buf);
      end;
    end;
    procedure TForeignProcessMemMgr.Write(const Source; Dest: Pointer; Bytes: Cardinal);
    var
      BytesWritten: Cardinal;
    begin
      if not WriteProcessMemory(FProcess, Dest, @Source, Bytes, BytesWritten) then
        RaiseLastWin32Error;
    end;
    procedure TForeignProcessMemMgr.WriteStr(const Str: String; Dest: Pointer);
    begin
      Write(PChar(Str)^, Dest, Length(Str) + 1);
    end;
    { TWin9xProcessMemMgr }
    constructor TWin9xProcessMemMgr.Create(ProcessID: Cardinal);
    begin
      inherited;
      FSharedList := TList.Create;
    end;
    destructor TWin9xProcessMemMgr.Destroy;
    var
      i: Integer;
    begin
      if Assigned(FSharedList) then begin
        for i := FSharedList.Count - 1 downto 0 do
          TSimpleSharedMem(FSharedList[i]).Free;
        FSharedList.Free;
      end;
      inherited;
    end;
    procedure TWin9xProcessMemMgr.NeedMoreMem(Bytes: Cardinal);
    var
      Ix: Integer;
      Share: TSimpleSharedMem;
      Rec: PMemRec;
    begin
      if Bytes < MemMgrMemSize then
        Bytes := MemMgrMemSize
      else
        Bytes := (Bytes + $FFF) and not $FFF;
      Share := TSimpleSharedMem.Create(Bytes);
      Ix := FSharedList.Add(Share);
      New(Rec);
      Rec^.Start := Share.BaseAddr;
      Rec^.Size := Bytes;
      Rec^.Group := Ix;
      Rec^.Used := false;
      FMemList.Add(Rec);
    end;
    { TWinNTProcessMemMgr }
    constructor TWinNTProcessMemMgr.Create(ProcessID: Cardinal);
    begin
      inherited;
      NeedVirtualAlloc;
      FAllocList := TList.Create;
    end;
    destructor TWinNTProcessMemMgr.Destroy;
    var
      i: Integer;
    begin
      if Assigned(FAllocList) then begin
        for i := 0 to FAllocList.Count - 1 do
          VirtualFreeEx(FProcess, FAllocList[i], 0, MEM_RELEASE);
        FAllocList.Free;
      end;
      inherited;
    end;
    procedure TWinNTProcessMemMgr.NeedMoreMem(Bytes: Cardinal);
    var
      Ix: Integer;
      Alloc: Pointer;
      Rec: PMemRec;
    begin
      if Bytes < MemMgrMemSize then
        Bytes := MemMgrMemSize
      else
        Bytes := (Bytes + $FFF) and not $FFF;
      Ix := FAllocList.Count;
      Alloc := VirtualAllocEx(FProcess, nil, MemMgrMemSize, MEM_COMMIT, PAGE_READWRITE);
      if Alloc = nil then RaiseLastWin32Error;
      FAllocList.Add(Alloc);
      New(Rec);
      Rec^.Start := Alloc;
      Rec^.Size := Bytes;
      Rec^.Group := Ix;
      Rec^.Used := false;
      FMemList.Add(Rec);
    end;
    { TSimpleSharedMem }
    constructor TSimpleSharedMem.Create(Size: Cardinal);
    var
      PerfCount: Int64;
      UniqueName: String;
    begin
      inherited Create;
      QueryPerformanceCounter(PerfCount);
      UniqueName := 'mw_pmm_' + IntToHex(PerfCount, 16);
      FMapping := CreateFileMapping(Cardinal(-1), nil, PAGE_READWRITE, 0, Size, PChar(UniqueName));
      if FMapping = 0 then
        RaiseLastWin32Error;
      FBaseAddr := MapViewOfFile(FMapping, FILE_MAP_WRITE, 0, 0, Size);
      if not Assigned(FBaseAddr) then
        RaiseLastWin32Error;
    end;
    destructor TSimpleSharedMem.Destroy;
    begin
      UnmapViewOfFile(FBaseAddr);
      CloseHandle(FMapping);
      inherited;
    end;
    function CreateProcessMemMgr(ProcessID: Cardinal): TProcessMemMgr;
    begin
      if ProcessID = GetCurrentProcessId then begin
        Result := TOwnProcessMemMgr.Create;
      end else begin
        if Win32Platform = VER_PLATFORM_WIN32_NT then
          Result := TWinNTProcessMemMgr.Create(ProcessID)
        else
          Result := TWin9xProcessMemMgr.Create(ProcessID);
      end;
    end;
    function CreateProcessMemMgrForWnd(Wnd: HWND): TProcessMemMgr;
    var
      PID: Cardinal;
    begin
      PID := 0;
      GetWindowThreadProcessId(Wnd, @PID);
      Result := CreateProcessMemMgr(PID);
    end;
    end.
    Wacky Teseo

    Hi Wacky Teseo,
    This forum is to discuss problems of Windows Forms. Your question is related to TreeNode in winForms, but the conversion between C# and Delphi is not supported here.
    You could consider posting it at the Delphi forum
    for some solutions in Delphi. Thanks!
    Best regards,
    Youjun Tang
    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.

  • Which bytes should be edited in a WMF hex string stored in an RTF file in order to change image dimensions?

    I  would like to save the WMF file with proper dimensions as they are in the editor (my saved WMFs have the dimensions of my screen resolution).  They come from a RichEdit.
    Thanks.
    Edit:
    My goal is to convert the images that appear on a RichEdit to another format.
    Here is the fragment of the RTF:
    {\pict\wmetafile8\picw7407\pich9259\picwgoal4199\pichgoal5249 
    010009000003703e020000005a3e02000000050000000b0200000000050000000c022b24ef1c5a
    ffffffffffffff030000000000
    }\cf2\lang1033\b\f1\fs23\par
    For each 2 chars in this string I converted it to hex and saved it through a memory stream. Then I opened it in Paint or GIMP and there is the image.  I even can convert it to a PNG file through ImageMagick tool. But the dimensions are wrong. How to fix
    this?
    I am using Lazarus.
    I could guess that the header is not OK, but how they can be opened by Paint and converted? So I guess the dimensions info is wrong in the header. In GIMP even the dimensions are right, here a link to the GIMP's dialogbox confirmation with the dimensions
    it has encountered in the file (  http://s13.postimg.org/s536tgo9z/Metafile_in_GIMP.png  ).
    So the info is there, but is wrong. When I open the images in Paint, they are wrong. Microsoft Office Picture Manager can also open them correctly, but could not convert them so. I need to do it programmatically. TMetafile Delphi class could not open these
    files as well in order to be converted. So I could only edit the bytes.
    My RichEdit WMF data can not be accepted by ComputeAldusChecksum routine nor get a handle from SetWinMetaFileBits API call, which would convert it to an EMF format.
    procedure TMetafile.ReadWMFStream(Stream: TStream; Length: Longint);
    var
    WMF: TMetafileHeader;
    BitMem: Pointer;
    MFP: TMetaFilePict;
    begin
    NewImage;
    Stream.Read(WMF, SizeOf(WMF));
    if (WMF.Key <> WMFKEY) or (ComputeAldusChecksum(WMF) <> WMF.CheckSum) then
    raise EComponentError.Create('Invalid metafile.'); // <<<<<<<<<<<<<<< exception here
    Dec(Length, SizeOf(WMF));
    GetMem(Bitmem, Length);
    with FImage do
    try
    Stream.Read(BitMem^, Length);
    FImage.FInch := WMF.Inch;
    if WMF.Inch = 0 then
    WMF.Inch := 96;
    FWidth := MulDiv(WMF.Box.Right - WMF.Box.Left,25400,WMF.Inch);
    FHeight := MulDiv(WMF.Box.Bottom - WMF.Box.Top,25400,WMF.Inch);
    with MFP do
    begin
    MM := MM_ANISOTROPIC;
    xExt := 0;
    yExt := 0;
    hmf := 0;
    end;
    FHandle := SetWinMetaFileBits(Length, BitMem, 0, MFP); 
    if FHandle = 0 then
    raise EComponentError.Create('Invalid metafile.'); // <<<<<<<<<<<<<< exception here
    Enhanced := False;
    finally
    Freemem(BitMem, Length);
    end;
    end;

    Hi Antônio G,
    Based on your description, I’m afraid that it is not the correct forum for this issue, since this forum is to discuss:
    Visual Studio WPF/SL Designer, Visual Studio Guidance Automation Toolkit, Developer Documentation and Help System, and Visual Studio Editor.
    To make this issue clearly, would you mind letting us know more information about this issue? Which language are you using? Which kind of app are you developing?
    Reference:
    https://social.msdn.microsoft.com/Forums/vstudio/en-US/a9e1857d-dd5b-443b-8633-397aea6e7b8c/help-on-properly-handling-wmf-mmanisotropic-image-in-rtf-file-when-extracted?forum=csharpgeneral
    https://social.msdn.microsoft.com/Forums/vstudio/en-US/5b99d331-ef56-4d60-bf12-3e3b70783376/how-to-convert-a-hex-string-save-in-a-rtf-file-into-an-image-jpg-or-bmp?forum=csharpgeneral#a9219408-f73b-4e98-a9d8-7a1e0f20cdd9
    Maybe you could select the language development forum for this kind of issue. If not, please let me know more information about it, I will help you find a more appropriate forum.
    Best Regards,
    Jack
    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.

  • How to find the right kstat info & interpret it ?

    Having found out how to read the kstat structures I am
    still struggling with finding the right information which
    makes sense!
    I am interested in the following statistics:
    0. Swap Space - similar to that reported by swap
    1. Scan rate similar to that reported by vmstat
    2. Handspread page (see Adrian Cockcrofts' performance monitoring articles)
    3. Disk Space Usage - similar to df -k
    4. Process memory usage -- ps
    5. System Error Messages -- this may not be possible to read at all
    from kstat. Probably here I will have to make do with reading /var/adm/messages
    6. Disk Errors -- similar to iostat -E (Solaris 2.6 onwards)
    7. Ethernet stats -- like netstat -I le0
    I found the following article on SunSolve Online: FAQ 1230 'Three Virtual Memory Performance Monitors' which directs me to some of the kstat cell
    types.
    I started with swap space. The above article plus a few other pointers seemed to indicate the the
    correct kstat struct and field to use here was vminfo.swap_avail
    When I compared the figures dumped from this structure with those reported by vmstat & swap they
    did not compare! eg.
    kstat: vminfo.swap_avail 321393372929
    kstat: vminfo.swap_free 33339822544
    vmstat unix tool:
    swap avail (KB) 19932
    Furthermore sysinfo.h indicates that vminfo.swap_avail is expressed in pages.
    1 page = 4.096 KB, so the kstat figures should be multiplied by 4 which makes
    the comparison even worse. Whilst I don't expect the figures to be
    an exact match -- I was hoping they would be in the same ball-park,
    Next I tried page in/page out rate
    Here I compared:
    kstat: cpu_vminfo.pgpgin 473224
    kstat: cpu_vminfo.pgpgout 14554
    vmstat unix tool:
    pi (page in) 4
    po (page out) 0
    These figures sort of match up, if you take the most sig digit in
    vminfo.
    I was wondering if anyone has a definitive list on what are the best
    kstat fields to use -- and if any wierd and wonderful calculations must
    be performed on any of them to get figures close to that supplied by
    the familiar unix tools.

    Hi!
    I wrote a quick program to read the vminfo stats and like you saw completely crazy figures. I looked further into this and found that every second, the system clock routine adds the freemem, swap and so on to a cumulative total.
    To put it another way, the figure you see for free memory is the sum total of the value of freemem sampled every second since your system booted.
    Thus, to get the average freemem in pages since boot, you need to read the value of freemem and divide by the number of seconds since boot.
    You can derive the number of seconds in two ways from the kstats:
    (1) read lbolt (incremented every 100th sec) and divide by 100 (hz)
    or (2) read sysinfo.updates (which is incremented every time the kstats are updated).
    I have attached a sample program that demonstrates both of these and reports average freemem since boot in K (like vmstat).
    Similarly, to get a 5 second average, take two readings of freemem and sysinfo.updates five seconds apart , then calculate
    (freemem2-freemem1)/(updates2-updates1)
    It seems most, if not all, of the system counters are cumulative in this fashion.
    Hope that helps.
    Ralph
    SUN Developer Technical Support
    <pre>
    #include <stdio.h>
    #include <stdlib.h>
    #include <unistd.h>
    #include <kstat.h>
    #include <sys/types.h>
    #include <sys/time.h>
    #include <sys/sysinfo.h>
    #include <stdio.h>
    main()
    kstat_ctl_t *kc;
    kstat_t *vminfo_ksp;
    kstat_t *system_misc_ksp;
    kstat_t *sysinfo_ksp;
    kstat_named_t *lbolt_knp;
    vminfo_t vminfo;
    sysinfo_t sysinfo;
    int hz;
    int ltime;
    ulong_t updates;
    if ((kc = kstat_open()) == NULL)
    perror("kstat_open failed"); exit(1);
    /* get lbolt and divide by hz to get secs since boot */
    system_misc_ksp = kstat_lookup(kc, "unix", 0, "system_misc");
    kstat_read(kc, system_misc_ksp, NULL);
    lbolt_knp = kstat_data_lookup(system_misc_ksp, "lbolt");
    hz = sysconf(_SC_CLK_TCK);
    ltime = lbolt_knp->value.l/hz;
    /* get number of statistic updates so far (=secs since boot) */
    sysinfo_ksp = kstat_lookup(kc, "unix", 0, "sysinfo");
    kstat_read(kc, sysinfo_ksp, &sysinfo);
    updates=sysinfo.updates;
    printf("lbolt time %d\n",ltime);
    printf("updates %d\n",updates);
    /* get vminfo */
    vminfo_ksp = kstat_lookup(kc, "unix", -1, "vminfo");
    kstat_read(kc, vminfo_ksp, &vminfo);
    printf("freemem %lld\n",(vminfo.freemem*4)/updates);
    printf("freemem %lld\n",(vminfo.freemem*4)/ltime);
    </pre>

  • GC doesn't seem to work properly with Swing components

    Well, I have a problem, and it's quite a big deal.
    I don't understand why the java GC refuses to free the memory.
    I have made a VERY LITTLE example, so that everybody will see what the problem is made with.
    a frame with 2 buttons. the first one make another frame appears, which contains a quite big Swing component. The other is here in order to try to free the memory of this frame.
    Here are the 2 classes :
    import javax.swing.*;
    import java.awt.*;
    import java.awt.event.*;
    public class FirstClass extends JFrame{
    private JButton jButton1 = new JButton("free memory");
    private JButton jButton2 = new JButton("load frame");
    private MyFrameColor frame;
    public FirstClass() {
    jButton1.addMouseListener(new java.awt.event.MouseAdapter() {
    public void mouseClicked(MouseEvent e) {
    jButton1_mouseClicked(e);
    jButton2.addMouseListener(new java.awt.event.MouseAdapter() {
    public void mouseClicked(MouseEvent e) {
    jButton2_mouseClicked(e);
    this.getContentPane().add(jButton1, BorderLayout.NORTH);
    this.getContentPane().add(jButton2, BorderLayout.SOUTH);
    this.show();
    public static void main(String[] args)
    new FirstClass();
    import javax.swing.*;
    import java.awt.*;
    public class MyFrameColor extends JFrame {
    JColorChooser jColorChooser1 = new JColorChooser();
    public MyFrameColor() {
    this.getContentPane().add(jColorChooser1, BorderLayout.CENTER);
    the problem is that, according to the Windows task Manager the memory isn't freed after having pressed on "free memory" button.
    Moreover, in my real application, there are so much data that aren't freed this way, that, at the third launching of a frame, I have a Out of Memory exception !
    THank you for answering
    Have a good day :-)

    First, obviously you didnt include all the code. And the most important part(the references to the classes in question) are missing. How can we make a judgement?
    Second, the windows taskbar is no measure of how much memory your program is using, its a measure of how much memory the JVM is using. You didnt write the JVM so you really should not be concerned with that.
    1. Try using System.freemem() or some similar call to see what your program is actually using.
    2. Try making the GC verbose to see when it actually reclaims objects
    3. Try calling the GC to force a little GC before you check the memory.
    4. Try calling UpdateUI if it actually shows that your memory is really not being released.

  • Screen backspace broken, delete ok, backspace and del ok in plain bash

    Hi, all, im having a little trouble getting backspace to work in screen session, i have looked up previous messages and everything works fine in normal bash session to server (debian), utf-8 ok, delete ok, backspace ok, but when i launch screen on server side, the backspace is not working, i get visual bell.
    On screen session at mac server this is working properly, and on local machine everything is ok.
    I tried to set .screenrc file on server containing:
    bindkey -d kb stuff \177
    bindkey -d kb stuff "\177"
    bindkey -d kb stuff ^?
    bindkey -d kb stuff `H
    (single line every try offcourse), but no solution so far.
    I do realise most likely its not os x issue but im have not found working fix on linux sites either, and asking & telling im a mac user closes some doors.
    Oh and i should point out, im using mbp and delete combo is fn-backspace, wich is working ok in screen, but plain backspace is the problem.
    Any idea's or directions other than google appreciated. Thanks.
    .:: Macbook Pro c2d & Maxtor 160Gb fw ::.   Mac OS X (10.4.8)  

    Hi Freemem,
       What you didn't say is how you got backspace to work in the Debian shell. I don't know anything about screen but most command line utilities work correctly if you fix the problem at the terminal level rather than the shell level. You can use bindkey in the shell but that isn't always communicated to utilities launched from that shell. (like screen) I don't know if screen will benefit from the following but the preferred way to get the terminal to grok the '^?' control character being sent by the backspace or delete key is to use stty. (this issue is hardly limited to Macs; every machine I use, including RedHat, sends the '^?' control character when the backspace key is pressed) I use the following in my remote shells.
    if [ "$-" = "himBH" ]; then
       stty erase ^?
    fi
    Note that the "^?" should actually be the control character produced by the key sequence, <Control>-v, <Delete>. Also, I've included the test for shell interactivity that I use; you may have to adjust that for Debian. If you copy-and-paste the above, make sure you replace the non-breaking spaces I used for indention at the beginning of the second line with real spaces. Note that I don't use screen so I don't know whether this will help in a screen session but I think it has a good chance; it helps with every app I use.
    Gary
    ~~~~
       Just remember: when you go to court, you are trusting
       your fate to twelve people that weren't smart enough
       to get out of jury duty!

  • Out Of Memory with tons of free mem

    I need help diagnosing a problem I'm having with a server application.
    The problem:
    I'm getting general flakeyness and sometimes "OutOfMemory: cannot create new native thread" after the application has been running several hours (with 150 or so logins and 300 or so signs rendered).
    The environment:
    We run Tomcat 3.2.4, Xalan2, JAXP1.1, mysql w/ mm.sql JDBC driver v1.2.0.13, JDK 1.3.1_03
    on a SunFire v880 w/ 4 processors, 8Gig RAM running Solaris 8. JVM args set to -server -Xms3g -Xmx3g -XX:NewSize=1024m -XX:MaxNewSize=1024m -XX:SurvivorRatio=16 -XX:+DisableExplicitGC
    What I've tried:
    I've run under OptimizeIt and found only small amounts of mem being consumed ongoing. Something the GC ought to be able to handle. I've played with the GC parameters in an effort to get this problem under control. I monitor the freemem and can see it go up and down through out the day. The lowest freemem has come down is to 900Meg, then bounces back up to 2.7Gig or so. I suspected fragmentation, but from what I read, hotspot shouldn't allow that to happen.
    That exception is thrown from native code in "jvm.cpp" in the JVM_StartThread() method. Comments say it could happen when memory is low (duh).
    Our App:
    We render in store signs for a major US department store. Our app provides simplified sign composition. We render the signs for printing (generating postscript for the printers). Sometimes we deal with buffers as large as 112Meg. We use XML for sign templates and jobs. We spit out XML from servlets, using XSLT to transform to HTML for the browser. Our sign templates use some XSLT to add common things into the templates as they are loaded. We support image upload to a repository that the sign creators can use in the signs. So, we deal with lots if image data and XML throughout the app. We hit the database throughout the workflow.
    HELP!

    Hi,
    I had the same problem under Linux, but found a solution:
    There are 2 different factors for this problem.
    There is the "Xss" option of Java and the "stack size"
    as reported/set by ulimit:
    ulimit -acore file size (blocks) 0
    data seg size (kbytes) unlimited
    file size (blocks) unlimited
    max locked memory (kbytes) unlimited
    max memory size (kbytes) unlimited
    open files 1024
    pipe size (512 bytes) 8
    stack size (kbytes) 8192
    cpu time (seconds) unlimited
    max user processes 16896
    virtual memory (kbytes) unlimited
    When using java 1.3.1, the "Xss" option is ignored, so
    only the "stack size" of ulimit counts. Setting the
    stack size using ulimit is done using the -s option:
    ulimit -s 8129This sets the stack size per Java thread to 8MB.
    The default stack size in Redhat Enterprise Server 3.1
    is 10MB. When a Java thread is started, this 10MB is not taken
    immediately, but the Linux kernel does guarantee this thread 10MB
    if it needs it. Suppose you hava 2GB memory in your machine, then
    after starting 200 Java threads, the light goes out even though
    "top" reports 1.5GB of free memory. The memory is free, but the
    kernel has already promised all of it to the 200 executing Java
    threads.
    Under java 1.4.2, the Xss option is not ignored. It has the same
    effect as the "stack size" set by ulimit; specifying a large amount
    of memory for Xss will limit the amount of threads you can start.
    Using java 1.4.2 it seems these settings both have to be tuned.
    Greetz,
    Chris Twigt

  • Solaris 10, amd64, JVM crash at short time after startup

    Hi All,
    I have an application which allocate 10G of memory for his Heap, run on 4 dual core amd64 CPUs, 16G RAM machine and crash in 98% of the cases at short time after startup. This is a customer machine.
    I have a similar machine for tests with only 2 dual core amd64 CPU and 12G RAM and I don't experience any crashes running application with similar configuration, similar version of JDK and similar input data.
    I have tried with different GC algorithms, but we obtain crashes sonner or later. I rare cases when application manage to start seems that CMS offer the greatest performance.
    There is a bug in JVM? Knows anybody an workaround for this?
    # An unexpected error has been detected by Java Runtime Environment:
    # SIGSEGV (0xb) at pc=0xfffffd7ffebbdb33, pid=21678, tid=5
    # Java VM: Java HotSpot(TM) 64-Bit Server VM (1.6.0_03-b05 mixed mode)
    # Problematic frame:
    # V [libjvm.so+0x5bdb33]
    # If you would like to submit a bug report, please visit:
    # http://java.sun.com/webapps/bugreport/crash.jsp
    --------------- T H R E A D ---------------
    Current thread (0x000000000042e000): GCTaskThread [id=5]
    siginfo:si_signo=11, si_errno=0, si_code=1, si_addr=0x00000000000000a8
    Registers:
    RAX=0x0000000000000000, RBX=0x0000000000000002, RCX=0x0000000000000000, RDX=0x0000000000000000
    RSP=0xfffffd7ffad37800, RBP=0xfffffd7ffad37830, RSI=0x0000000000000000, RDI=0x00000000004e6790
    , R8=0x0000000000000000, R9=0x0000000000000002, R10=0x0000000000000000, R11=0xfffffd7d7bddd058, R12=0x00000000004e6790, R13=0x0000000000000000, R14=0x0000000000000000, R15=0x0000000000429650
    RIP=0xfffffd7ffebbdb33, RFLAGS=0x0000000000010246
    Top of Stack: (sp=0xfffffd7ffad37800)
    0xfffffd7ffad37800: fffffd7fff1051c8 000000000042a1f0
    0xfffffd7ffad37810: fffffd7d72bd05a0 0000000000000000
    0xfffffd7ffad37820: fffffd7d72bd05a0 0000000000000001
    0xfffffd7ffad37830: fffffd7ffad37840 fffffd7ffebcfdd1
    0xfffffd7ffad37840: fffffd7ffad37cc0 fffffd7ffee8953b
    0xfffffd7ffad37850: fffffd7d72bd05a0 0000000000000001
    0xfffffd7ffad37860: 000000000042a370 000000000042e000
    0xfffffd7ffad37870: 0000000000000002 0000000000000000
    0xfffffd7ffad37880: 0000000000000000 0000000000422e80
    0xfffffd7ffad37890: 000000000042c120 000000000042e320
    0xfffffd7ffad378a0: 000000000042e330 000000000042e708
    0xfffffd7ffad378b0: 000000000042e000 0000000000424180
    0xfffffd7ffad378c0: 000000000042e720 000000000042e730
    0xfffffd7ffad378d0: 000000000042eb08 00000000004241c0
    0xfffffd7ffad378e0: 00000000004224a0 0000000000000000
    0xfffffd7ffad378f0: 0000000000000000 0000000000000000
    0xfffffd7ffad37900: 0000000000000000 0000000000000400
    0xfffffd7ffad37910: fffffd7d7a92c5f8 fffffd7d7a92c5f8
    0xfffffd7ffad37920: fffffd7d7a92c5f8 fffffd7d7a92c5f8
    0xfffffd7ffad37930: 0000000000000000 0000000000000000
    0xfffffd7ffad37940: 0000000000000000 0000000000038800
    0xfffffd7ffad37950: 0000000000000479 0000000000000000
    0xfffffd7ffad37960: 0000000000000000 0000000000000000
    0xfffffd7ffad37970: 0000000000000000 fffffd7ffad37b10
    0xfffffd7ffad37980: fffffd7ffad37b58 fffffd7ffad37ba0
    0xfffffd7ffad37990: fffffd7ffad37c30 0000000000430240
    0xfffffd7ffad379a0: 0000000000429650 fffffd7d7a930000
    0xfffffd7ffad379b0: 000000026ed7667f 0000000000000000
    0xfffffd7ffad379c0: 000000000003a890 0000000000000000
    0xfffffd7ffad379d0: 0000000000000000 0000000000000000
    0xfffffd7ffad379e0: 0000000000000000 0000000000000000
    0xfffffd7ffad379f0: 0000000000000000 0000000000000000
    Instructions: (pc=0xfffffd7ffebbdb33)
    0xfffffd7ffebbdb23: 24 20 4c 8b 44 24 20 4d 89 03 eb 18 4d 8b 43 08
    0xfffffd7ffebbdb33: 4d 8b 80 a8 00 00 00 4c 89 44 24 28 4c 8b 44 24
    Stack: [0x0000000000000000,0x0000000000000000), sp=0xfffffd7ffad37800, free space=1610527966k
    Native frames: (J=compiled Java code, j=interpreted, Vv=VM code, C=native code)
    V [libjvm.so+0x5bdb33]
    V [libjvm.so+0x5cfdd1]
    V [libjvm.so+0x88953b]
    V [libjvm.so+0x98e8a6]
    V [libjvm.so+0x98e799]
    V [libjvm.so+0x87b18c]
    C [libc.so.1+0xcb34b] thrslot_offset+0x31b
    C [libc.so.1+0xcb580] thrslot_offset+0x550
    --------------- P R O C E S S ---------------
    Java Threads: ( => current thread )
    0x0000000000a6b400 JavaThread "Timer-0" [_thread_blocked, id=19]
    0x0000000000743400 JavaThread "Low Memory Detector" daemon [_thread_blocked, id=17]
    0x0000000000742000 JavaThread "CompilerThread1" daemon [_thread_blocked, id=16]
    0x0000000000740c00 JavaThread "CompilerThread0" daemon [_thread_blocked, id=15]
    0x000000000072c400 JavaThread "JDWP Event Helper Thread" daemon [_thread_blocked, id=14]
    0x0000000000729800 JavaThread "JDWP Transport Listener: dt_socket" daemon [_thread_in_native, id=13]
    0x000000000071c400 JavaThread "Signal Dispatcher" daemon [_thread_blocked, id=12]
    0x000000000071b800 JavaThread "Surrogate Locker Thread (CMS)" daemon [_thread_blocked, id=11]
    0x00000000006f3000 JavaThread "Finalizer" daemon [_thread_blocked, id=10]
    0x00000000006f2800 JavaThread "Reference Handler" daemon [_thread_blocked, id=9]
    0x0000000000428400 JavaThread "main" [_thread_blocked, id=2]
    Other Threads:
    0x00000000006ee400 VMThread [id=8]
    0x0000000000744c00 WatcherThread [id=18]
    VM state:at safepoint (normal execution)
    VM Mutex/Monitor currently owned by a thread: ([mutex/lock_event])
    [0x00000000004273a0/0x0000000000427400] Threads_lock - owner thread: 0x00000000006ee400
    [0x0000000000423500/0x0000000000427b10] Heap_lock - owner thread: 0x0000000000428400
    Heap
    par new generation total 74560K, used 63936K [0xfffffd7d75600000, 0xfffffd7d7a930000, 0xfffffd7d7a930000)
    eden space 63936K, 100% used [0xfffffd7d75600000, 0xfffffd7d79470000, 0xfffffd7d79470000)
    from space 10624K, 0% used [0xfffffd7d79470000, 0xfffffd7d79470000, 0xfffffd7d79ed0000)
    to space 10624K, 100% used [0xfffffd7d79ed0000, 0xfffffd7d7a930000, 0xfffffd7d7a930000)
    concurrent mark-sweep generation total 10400576K, used 29146K [0xfffffd7d7a930000, 0xfffffd7ff5600000, 0xfffffd7ff5600000)
    concurrent-mark-sweep perm gen total 21248K, used 6589K [0xfffffd7ff5600000, 0xfffffd7ff6ac0000, 0xfffffd7ffaa00000)
    Dynamic libraries:
    0x0000000000400000      /export/home/tg/jre1.6.0_03/bin/amd64/java
    0xfffffd7fff380000      /lib/64/libthread.so.1
    0xfffffd7fff360000      /export/home/tg/jre1.6.0_03/bin/amd64/../../lib/amd64/jli/libjli.so
    0xfffffd7fff390000      /lib/64/libdl.so.1
    0xfffffd7fff240000      /lib/64/libc.so.1
    0xfffffd7ffe600000      /export/home/tg/jre1.6.0_03/lib/amd64/server/libjvm.so
    0xfffffd7fff1e0000      /lib/64/libsocket.so.1
    0xfffffd7fff340000      /usr/lib/64/libsched.so.1
    0xfffffd7fff1a0000      /lib/64/libm.so.1
    0xfffffd7fff170000      /usr/lib/64/libCrun.so.1
    0xfffffd7fff140000      /lib/64/libdoor.so.1
    0xfffffd7ffe530000      /lib/64/libnsl.so.1
    0xfffffd7ffe4b0000      /lib/64/libm.so.2
    0xfffffd7ffe470000      /lib/64/libscf.so.1
    0xfffffd7ffe440000      /lib/64/libuutil.so.1
    0xfffffd7ffe420000      /lib/64/libmd5.so.1
    0xfffffd7ffe3f0000      /lib/64/libmp.so.2
    0xfffffd7ffe270000      /export/home/tg/jre1.6.0_03/lib/amd64/native_threads/libhpi.so
    0xfffffd7ffe210000      /export/home/tg/jre1.6.0_03/lib/amd64/libjdwp.so
    0xfffffd7ffe1e0000      /export/home/tg/jre1.6.0_03/lib/amd64/libnpt.so
    0xfffffd7ffe190000      /usr/lib/iconv/amd64/UTF-8%646.so
    0xfffffd7ffe160000      /usr/lib/iconv/amd64/646%UTF-8.so
    0xfffffd7ffe110000      /export/home/tg/jre1.6.0_03/lib/amd64/libverify.so
    0xfffffd7ffe0c0000      /export/home/tg/jre1.6.0_03/lib/amd64/libjava.so
    0xfffffd7ffe080000      /export/home/tg/jre1.6.0_03/lib/amd64/libzip.so
    0xfffffd7ffe010000      /export/home/tg/jre1.6.0_03/lib/amd64/libdt_socket.so
    0xfffffd7d75460000      /lib/64/nss_files.so.1
    VM Arguments:
    jvm_args: -XX:+UseConcMarkSweepGC -XX:ParallelGCThreads=4 -Dapp.dir=/opt/tg/cos-deploy-0.35/bin/.. -Dlog.dir=log -Dapp.name=process -Detc.dir=/opt/tg/cos-deploy-0.35/bin/../etc -Dconfig.file=/opt/tg/cos-deploy-0.35/bin/../etc/process.properties -Dlog4j.configuration=etc/log4j.xml -Xdebug -Xnoagent -Djava.compiler=NONE -Xrunjdwp:transport=dt_socket,server=y,suspend=n,address=5005 -Xms10G -Xmx10G
    java_command: tg.cos.server.Main
    Launcher Type: SUN_STANDARD
    Environment Variables:
    JAVA_HOME=/export/home/tg/jre1.6.0_03
    PATH=/opt/tg/fcs-foundation/perl/bin:/opt/tg/fcs-foundation/perl/bin:/sbin:/usr/sbin:/usr/sfw/bin:/opt/sfw/bin:/usr/X/bin:/usr/ccs/bin:/usr/local/bin:/usr/bin:/usr/sbin:/export/home/oracle_install/product/client/10.2/bin:/opt/tg/POOL/bin:/opt/tg/MailSender/bin:/export/home/tg/bin:/usr/sbin:/export/home/oracle_install/product/client/10.2/bin:/opt/tg/POOL/bin:/opt/tg/MailSender/bin
    LD_LIBRARY_PATH=/export/home/tg/jre1.6.0_03/lib/amd64/server:/export/home/tg/jre1.6.0_03/lib/amd64:/export/home/tg/jre1.6.0_03/../lib/amd64
    SHELL=/bin/bash
    Signal Handlers:
    SIGSEGV: [libjvm.so+0x9883b0], sa_mask[0]=0xffbffeff, sa_flags=0x0000000c
    SIGBUS: [libjvm.so+0x9883b0], sa_mask[0]=0xffbffeff, sa_flags=0x0000000c
    SIGFPE: [libjvm.so+0x315b10], sa_mask[0]=0xffbffeff, sa_flags=0x0000000c
    SIGPIPE: [libjvm.so+0x315b10], sa_mask[0]=0xffbffeff, sa_flags=0x0000000c
    SIGILL: [libjvm.so+0x315b10], sa_mask[0]=0xffbffeff, sa_flags=0x0000000c
    SIGUSR1: SIG_DFL, sa_mask[0]=0x00000000, sa_flags=0x00000000
    SIGUSR2: SIG_DFL, sa_mask[0]=0x00000000, sa_flags=0x00000000
    SIGHUP: [libjvm.so+0x87ca80], sa_mask[0]=0xffbffeff, sa_flags=0x00000004
    SIGINT: [libjvm.so+0x87ca80], sa_mask[0]=0xffbffeff, sa_flags=0x00000004
    SIGQUIT: [libjvm.so+0x87ca80], sa_mask[0]=0xffbffeff, sa_flags=0x00000004
    SIGTERM: [libjvm.so+0x87ca80], sa_mask[0]=0xffbffeff, sa_flags=0x00000004
    SIGQUIT: [libjvm.so+0x87ca80], sa_mask[0]=0xffbffeff, sa_flags=0x00000004
    SIGTERM: [libjvm.so+0x87ca80], sa_mask[0]=0xffbffeff, sa_flags=0x00000004
    SIG39: [libjvm.so+0x87f4d0], sa_mask[0]=0x00000000, sa_flags=0x00000008
    SIG40: [libjvm.so+0x315b10], sa_mask[0]=0xffbffeff, sa_flags=0x0000000c
    --------------- S Y S T E M ---------------
    OS: Solaris 10 11/06 s10x_u3wos_10 X86
    Copyright 2006 Sun Microsystems, Inc. All Rights Reserved.
    Use is subject to license terms.
    Assembled 14 November 2006
    uname:SunOS 5.10 Generic_118855-33 i86pc (T2 libthread)
    rlimit: STACK 10240k, CORE infinity, NOFILE 65536, AS infinity
    load average:3.72 3.68 3.23
    CPU:total 8 (2 cores per cpu, 1 threads per core) family 15 model 65 stepping 2, cmov, cx8, fxsr, mmx, sse, sse2, sse3, mmxext, 3dnow, 3dnowext
    Memory: 4k page, physical 16775096k(1672236k free)
    vm_info: Java HotSpot(TM) 64-Bit Server VM (1.6.0_03-b05) for solaris-amd64, built on Sep 24 2007 22:29:24 by "" with unknown Workshop:0x580
    I created a small test which somehow emulate the real application and I obtain the same results: on test machine run without any issues on live machine it crashes all the time.
    What can be the cause?
    import java.util.*;
    public class MemoryTest {
         private List<Page> pages = new LinkedList<Page>();
         public void initTest() {
              int counter = 1;
              while( canAddOneMorePage() ) {
                   Page page = new Page(counter, (byte)counter++);
                   pages.add(page);
         private boolean canAddOneMorePage() {
              boolean result = true;
              long freeMem = Runtime.getRuntime().freeMemory() / (1024*1024) ;
              if (freeMem < 512) {
                   result = false;
              return result;
         private boolean validatePages() {
              boolean arePagesValid = true;
              for(Page p : pages) {
                   boolean isPageValid = p.isValid();
                   if ( !isPageValid ) {
                        System.out.println("Page "+p.id+ " contains corrupted data");
                        arePagesValid = false;
              return arePagesValid;
         private void updatePages(byte value) {
              for(Page p : pages) {
                   p.updateValues(value);
         public void runTest() {
              int TESTS_NUM = 100;
              System.out.println("There are "+pages.size()+" pages.");
              System.out.println("Currently the pages "+ (validatePages() ? "contain no errors" : "contain errors"));
              for(int i=1; i<TESTS_NUM; i++) {
                   System.out.println("Test "+i+" of "+TESTS_NUM);
                   updatePages((byte)i);
                   validatePages();
         public static void main(String[] args) {
              MemoryTest main = new MemoryTest();
              main.initTest();
              main.runTest();
    class Page {
         public static final int LENGTH = 1024*1024;
         List <byte[]> list;
         public byte value = 0;
         public int id;
         public Page(int id, byte value) {
              this.list = new LinkedList<byte[]>();
              this.value = value;
              this.id = id;
              for(int i=0; i<LENGTH; i++) {
                   byte[] data = new byte [512];
                   for( int j=0; j<512; j++) {
                        data[j] = value;
                   list.add(data);
         public void updateValues(byte value) {
              this.value = value;
              this.list = new LinkedList<byte[]>();
              System.out.println("Updating page "+id);
              for(int i=0; i<LENGTH; i++) {
                   byte[] data = new byte [512];
                   for( int j=0; j<512; j++) {
                        data[j] = value;
                   list.add(data);
         public boolean isValid() {
              boolean result = true;
              for( byte[] data: list) {
                   for( byte b : data) {
                        if (value != b) {
                             result = false;
                             break;
                   if ( !result ) {
                        break;
              return result;
    }Edited by: blue67 on Dec 10, 2007 12:57 AM

    I've experienced the same crash problem for my application in a Sun Fire x4600 M2..
    My application which allocates 50G of memory for his Heap, runs on 8 quad core amd64 CPUs, 64G RAM machine and crash in 98% of the cases at short time after startup.
    If I run my application on a different machine, for example a Sun Fire 280R with 2 CPUs UltraSPARC-III+ 1.2Ghz 8MB, there are no crashes.
    I think the problem is related to the AMD 64 bits CPU architecture.
    I filed a bug to the Sun Bug DB with ID 1415527, but it hasn't been published yet.
    I cannot understand why, since it seems to be a problem common also to other users.
    Here's part of my last hs_err_pidXXX.log file:
    # An unexpected error has been detected by Java Runtime Environment:
    # SIGSEGV (0xb) at pc=0xfffffd7ffebbd0bd, pid=25799, tid=50
    # Java VM: Java HotSpot(TM) 64-Bit Server VM (11.0-b16 mixed mode solaris-amd64)
    # Problematic frame:
    # V [libjvm.so+0x5bd0bd]
    # If you would like to submit a bug report, please visit:
    # http://java.sun.com/webapps/bugreport/crash.jsp
    T H R E A D
    Current thread (0x0000000000b21c00): GCTaskThread [stack: 0x0000000000000000,0x0000000000000000] [id=50]
    siginfo:si_signo=SIGSEGV: si_errno=0, si_code=1 (SEGV_MAPERR), si_addr=0xfffffd7ffebbd0bd
    Registers:
    RAX=0x0000000000000000, RBX=0x0000000000000008, RCX=0x0000000000000002, RDX=0xfffffd73b56f1ce8
    RSP=0xfffffd73b56f1cb0, RBP=0xfffffd73b56f1e00, RSI=0xfffffd7c55dd2f08, RDI=0xfffffd7c55dd2bb9
    , R8=0xb000000000000000, R9=0x0000000000c38ff0, R10=0x00000000042d0e97, R11=0xfffffd7c55dd2d88, R12=0x0000000000b38f00, R13=0x000000000045d070, R14=0x000000000045d070, R15=0x0000000000003c4f
    RIP=0xfffffd7ffebbd0bd, RFLAGS=0x0000000000010246
    Top of Stack: (sp=0xfffffd73b56f1cb0)
    0xfffffd73b56f1cb0: fffffd7fff0f15a8 0000000000000000
    0xfffffd73b56f1cc0: fffffd73b56f1e48 fffffd73b45e0790
    0xfffffd73b56f1cd0: 0000000000000008 fffffd7ffebbc239
    0xfffffd73b56f1ce0: fffffd7fff0f15a8 fffffd7fff0ec260
    0xfffffd73b56f1cf0: 0000000000000000 0000000000b0c5b0
    0xfffffd73b56f1d00: fffffd73fbc00000 000000017fa80000
    0xfffffd73b56f1d10: 0000000000b0c710 0000000000b0c850
    0xfffffd73b56f1d20: 0000000000000000 000000000045d070
    0xfffffd73b56f1d30: 0000000000000000 0000000000b0c850
    0xfffffd73b56f1d40: fffffd73b45e07f8 0000000000b0c8d8
    0xfffffd73b56f1d50: 0000000900b0c5b0 fffffd792b971d60
    0xfffffd73b56f1d60: fffffd7fff103d04 0000441ef1e00000
    0xfffffd73b56f1d70: fffffd7c55dd2f08 fffffd7f00003c4d
    0xfffffd73b56f1d80: fffffd73b45e0790 441f3c4d00000000
    0xfffffd73b56f1d90: 441f3c4d441f3c4d 441f3c4d441f3c4d
    0xfffffd73b56f1da0: 441e3c4d441f3c4d 441f3c4d441e3c4d
    0xfffffd73b56f1db0: 43c03c1e441e3c4d 441e3c4d441e3c4d
    0xfffffd73b56f1dc0: 5e3634bf5e3634bf 10830ae010830ae0
    0xfffffd73b56f1dd0: 036b3673036b3674 036b3673036b3673
    0xfffffd73b56f1de0: 5e3634c05e3634c1 5e3634c05e3634c0
    0xfffffd73b56f1df0: fffffd73b45e0790 00000054b45e0790
    0xfffffd73b56f1e00: fffffd73b56f1eb0 fffffd7ffebbbd47
    0xfffffd73b56f1e10: fffffd73b56f1ef8 0000000000b0ce20
    0xfffffd73b56f1e20: 0000000000b21c00 fffffd7fff04a509
    0xfffffd73b56f1e30: 0000000000000008 00000000ffffffff
    0xfffffd73b56f1e40: fffffd73b56f1e70 0000000000000000
    0xfffffd73b56f1e50: 000002185a539ab2 fffffd7fff103d01
    0xfffffd73b56f1e60: 000000000042c560 0000000000b21e90
    0xfffffd73b56f1e70: 0000000000b21ea0 0000000000b22278
    0xfffffd73b56f1e80: 0000000000b21c00 000000000045a780
    0xfffffd73b56f1e90: 0000000000b22290 0000000000b222a0
    0xfffffd73b56f1ea0: 0000000000b22678 000000000045a7c0
    Thanks

  • Solaris 8 processes memory consumption

    Hi,
    I'm working with solaris 8 and I have the following problem. On a random base one of the users that are logged on the server starts a dtterm process that uses a lot of available memory and the only solution is to log out that user and then login again. I report the ps -eafl involving the processes
    8 S ais 24241 24233 0 57 20 ? 148286 ? 10:13:19 ? 0:00 /usr/dt/bin/dtterm -session dtjmaac
    8 S ais 24243 24233 0 67 20 ? 148286 ? 10:13:19 ? 0:00 /usr/dt/bin/dtterm -session dt8maWb
    and the father process
    8 S ais 24233 24210 0 48 20 ? 970 ? 10:13:14 pts/14 0:00 /usr/dt/bin/dtsession.
    Sorry if this problem has already been discussed but I'm a newbie of this forum and thanks for any help...
    Andrea Parrini

    tzzhc4 wrote:
    prtmem was part of the MEMTOOLS package you just listed, I belive it relies on a kernel module in that package and doesn't work on any of the newer kernel revisions.But it certainly works on 8, right? And that's the OS you were referring to, so I assumed you were thinking of something else.
    From that page:
    System Requirements:     SPARC/Solaris 2.6
                   SPARC/Solaris 7
                   SPARC/Solaris 8
                   SPARC/Solaris 9
                   x86 /Solaris 8
                   x86 /Solaris 9
    So if that's what you want to use, go for it!
    I thought freemem didn't include pages that had an identity, so there could be more memory free then was actually listed in freemem.What do you mean by 'identity'? Most pages are either allocated/reserved by a process (in use) or used by the disk cache. Under Solaris 7 and earlier, both reduced the 'freemem' number. Under 8 and later, only the first one does.
    Darren

  • Too many users in terminal when i look at who

    Hi, i know there was discussion earlier (i tried to search without luck) about users shown in terminal using who command. There (if i remember correctly) should be 1 console + 1 each open terminal.
    i for some reason have 1 + 3 with single terminal?
    freemem console Nov 6 15:20
    freemem ttyp1 Nov 8 22:04
    freemem ttyp2 Nov 8 22:24
    freemem ttyp3 Nov 7 16:44
    with command w i get:
    freemem console - Mon15 2days -
    freemem p1 - 22:04 - -
    freemem p2 - 22:24 - w
    freemem p3 - Tue16 29:19 -
    Any idea's?
    New mbp with 10.4.8 all updates done, clean install + migration assistant used to import accounts (from intel iMac 10.4.8).

    Ah thanks, reboot did the trick and ill try relog with tty back and exit the next time.
    I use terminal every day and this was the first time i had those hanging out, i must of just forgotten to exit out normally
    Minor yet interresting issue solved thanks again all.

Maybe you are looking for

  • Why Can't I install Adobe Flash Player? Please Help!

    I have Windows 7 and my laptop is fairly new. I want to install Adobe Flash Player because when i go to Youtube it just shows a black screen for videos, Facebook doesn't load completely, when i go to google images, If i type in the most basic search

  • Is there any way to get total peer to peer PSTN calls report for a particular duration in Lync Server.

    From monitoring report I can find complete peer to peer audio calls details but I would like to get a report of only PSTN calls. How can I get that report.

  • PDF memory leak

    opening the following URL and scrolling down to the graphic in section 4.3 causes Safari 4 to consume all RAM and then crash. http://delivery.acm.org/10.1145/1370000/1364038/p1498-park.pdf?key1=1364038&key2 =4311574421&coll=GUIDE&dl=GUIDE&CFID=389845

  • Filter groups for outbound Vendor master , customer master idocs

    I need to create Vendor , Customer IDOCS CREMAS and DEBMAS only when the user changes the company code . I do not want the IDOCS to be produced when any other fields change. I am able to achieve the same using filter groups for Cost Center but not fo

  • BSOD crash when launching PS Elements or Premiere Elements

    Every time I try to run PS Elements 8 or Premiere Elements 8 I get the blue screen of death.  Everything else on my system runs just fine, including all other photo editing programs.  A few weeks ago I recall doing a windows update, other than that n