Forcing the use of a currently-running JVM

Hi there.
I am writing a Java application. Now, due to the (relatively) slow startup times of Java apps, I would like to enable my app to startup when the user's OS loads, but in the background (i.e. no GUI). Then, when the user double-clicks the icon to actually run my app, the background instance becomes visible and the user doesn't need to wait.
My problem is that when the user double-clicks to run my app, a new JVM instance is started... which can't access the state info, threads etc. held in the JVM that contains my hidden app. I need a way to force my shortcut to use the currently-running JVM.
I think this will require some dipping into native code to access the already-running JVM process, but I'd prefer not to do that. So, can anyone help me out here?
(The above is a bit incoherent, I know. If it's not clear then please ask and I will try to clarify.)

It's going to either:
1. Require native code
2. Require that you launch another JVM, at least temporarily
Either way, you can have your Java app listen on a pre-determined port number, and your native (or Java app), when launched, attempts to send a special message to that port. When received, the application can show itself.
If you want the double click to be on the exact same icon, then you are going to have to do #2, which means that you are going to be loading a new JVM - at least temporarily. If the time you are worried about is how long it takes the JVM to start, then that's not going to work. If the startup time is long because of things that your app is doing, then it will work.
- K

Similar Messages

  • Force the use of synonym (database link)

    Hello,
    I'm on a database DB_1 with the user NP.
    In the NP schema I have a table TEST_TABLE.
    I create a public synonym on TEST_TABLE referencing a table named TEST_TABLE in a database DB_2 (*the synonym use a dblink*).
    In my DB_1 instance connected with NP user, when I run "SELECT * FROM TEST_TABLE", the result is the content of TEST_TABLE in DB_1.
    Connected with NP user on DB1_instance, how can i force the use of the synonym to get the content of TEST_TABLE in DB_2 instance ? Is it possible ?
    Thanks...

    Pl post details of OS and database versions.
    I do not believe you can achieve your requirement, unless you name the synonym something other than "TEST_TABLE". The resolution to "TEST_TABLE" will always result in the local table first - the synonym will not be included in the name resolution.
    http://docs.oracle.com/cd/E11882_01/server.112/e26088/sql_elements009.htm#SQLRF51134
    HTH
    Srini

  • Script to find the list of Queries currently running in database with User Login Name and Host Name.

    Hai,
    How to find the list of queries currently running in the Database with User Login Information.
    Since my database application is running slow, to find the slow queries.

    Try the below query
    SELECT r.start_time [Start Time],r.session_id [SPID],
    DB_NAME(database_id) [Database],
    s.host_name,
    s.program_name,
    s.login_name,
    SUBSTRING(t.text,(r.statement_start_offset/2)+1,
    CASE WHEN statement_end_offset=-1 OR statement_end_offset=0
    THEN (DATALENGTH(t.Text)-r.statement_start_offset/2)+1
    ELSE (r.statement_end_offset-r.statement_start_offset)/2+1
    END) [Executing SQL],
    r.status,command,wait_type,wait_time,wait_resource,
    last_wait_type
    FROM sys.dm_exec_requests r
    OUTER APPLY sys.dm_exec_sql_text(sql_handle) t
    inner join sys.dm_exec_sessions s
    on s.session_id = r.session_id
    WHERE r.session_id !=@@SPID -- don't show this query
    AND r.session_id > 50 -- don't show system queries
    ORDER BY r.start_time
    Regards, Ashwin Menon My Blog - http:\\sqllearnings.com

  • My iPad2 is four weeks old and the home button will not always close the applicaton that is currently running

    My iPad2 is four weeks old and the home button will not always close the application it is currently running and the problem is getting worse and I have tried to restore the iPad but this did not improve the problem...Is this a hardware problem that I need to seek a replacement

    Your home button and power button are completely unresponsive, even when you attempt a hard reset? If so you will have to put into recovery mode and restore through itunes or possibly DFU if that does not work

  • How can I force the use on a specific application when I am in the Downloads window?

    I have Vista and Firefox 3.6.15
    when I open an email attachment it goes to the intended application but when I click on the downloaded file in Downloads it invokes OpenOffice and then it displays:
    "Move background page assignment
    The loading of password-encrypted Microsoft Powerpoint presentationsis n ot supported"
    How can I force the use on a specific application when I am in the Downloads window?

    Hi Frank!
    you should catch your save-event and after saving put the following line:
    oMatrix.Columns.Item(4).Cells.Item(lstRowIndex + 1).Click(SAPbouiCOM.BoCellClickType.ct_Regular);
    that's it!

  • How to change the explain plan for currently running query?

    Hi All,
    I am using Oracle enterprise 9i edition. I have a query which frames dynamically and running in the database. I noticed a table with 31147758 rows
    in the query which has no indexes and taking more time to process. I tried to create an INdex on that table. I know the query is already running with a FULL table scan. Is it possible to change the explain plan for the current running query to consider the INDEX?
    [code]
    SELECT /*+ USE_HASH (c,e,b,a) */
    d.att_fcc extrt_prod_dim_id,
    d.att_fcc compr_prod_dim_id,
      a.glbl_uniq_id glbl_uniq_id,
      to_date(c.dit_code,'RRRRMMDD')STRT_DT,
      (to_date(c.dit_code,'RRRRMMDD')+150)END_DT,
      a.pat_nbr pat_id,
      a.rxer_id       rxer_id,
      e.rxer_geog_id  rxer_geog_id,
      a.pharmy_id pharmy_id,
      a.pscr_pack_id pscr_pack_id,
      a.dspnsd_pack_id dspnsd_pack_id,
      DENSE_RANK () OVER (PARTITION BY a.pat_nbr ORDER BY c.dit_code) daterank,
      COUNT( DISTINCT d.att_fcc ) OVER (PARTITION BY a.pat_nbr, c.dit_code) event_cnt
      DENSE_RANK () OVER (PARTITION BY a.pat_nbr,
    d.att_fcc
      ORDER BY c.dit_code) prodrank,
      DENSE_RANK () OVER (PARTITION BY a.pat_nbr,
    d.att_fcc
      ORDER BY c.dit_code DESC) stoprank
      FROM
      pd_dimitems c,
       pd_pack_attribs   d ,
        lrx_tmp_rxer_geog e,
        lrx_tmp_pat_daterank p,
        lrx_tmp_valid_fact_link     a
        WHERE c.dit_id = a.tm_id
        AND   e.rxer_id = a.rxer_id
        AND   a.glbl_uniq_id = p.glbl_uniq_id
        AND   p.daterank > 1
      AND   a.pscr_pack_id = d.att_dit_id
    [/code]
    The table lrx_tmp_pat_daterank is having that 31147758 rows. So I am wondering how to make the query to use the newly created index on the table?

    Why do you think using Indexes will improve the performance of the query? How many rows this query is returning? Optimizer might chose a Full table scan when it finds out that Index plan might not be useful. Why are you using /*+ USE_HASH (c,e,b,a) */ hint? This Hint will force oracle to use Full table scan instead of using the index. Try removing it and see if the plan changes.
    Regards,

  • Using a dummy where-clause to force the use of an index

    I notice that an index only gets used when I use the index key in the where clause. Should I use a dummy where clause to force the index to be used?
    SQL> create table emp (
    2 empno NUMBER(5),
    3 empname VARCHAR2(15) );
    Table created.
    SQL> create index idx_emp_no on emp (empno);
    Index created.
    SQL> insert into emp (empno, empname) values (1, 'Peter');
    1 row created.
    SQL> set autotrace traceonly;
    SQL> select empno from emp;
    Execution Plan
    Plan hash value: 3956160932
    | Id | Operation | Name | Rows | Bytes | Cost (%CPU)| Time |
    | 0 | SELECT STATEMENT | | 1 | 13 | 3 (0)| 00:00:01 |
    | 1 | TABLE ACCESS FULL| EMP | 1 | 13 | 3 (0)| 00:00:01 |
    SQL> select empno from emp where empno > 0;
    Execution Plan
    Plan hash value: 434430053
    | Id | Operation | Name | Rows | Bytes | Cost (%CPU)| Time |
    | 0 | SELECT STATEMENT | | 1 | 13 | 1 (0)| 00:00:01 |
    |* 1 | INDEX RANGE SCAN| IDX_EMP_NO | 1 | 13 | 1 (0)| 00:00:01 |
    As you can see, using a dummy where clause (empno > 0), I manage to reduce the cost from 3 to 1.

    Again. Be careful with comparisons. But I like the discussion. It is usefull to carefully look at what happens "behind the scenes" and find a sensible explaination for that.
    Your new scenario now is different. By selecting one specific row instead of selection all you already made an assumption. That only one or few of the rows are returned. Andre's statement still is correct. Now the CBO will prefere the index scan.
    The CBO now has to decide between two options.
    Option a) use the index.
    This means =>
    Step 1: Access the index to find the value
    Step 2: Access the table using the rowid that was found in the index leaf entry.
    Option b) scan the full table
    This means =>
    Step 1: Iterate over all rows of the table
    Step 2: Apply a filter condition (empno = :x)
    We can see this execution plan by adding a hint to the query.
    select /*+ FULL(emp) */ * from emp where empno = 1;This hint will force the CBO to access the table emp using a full table scan.
    The cost in my environment for option B is 3.
    Option A has a cost with 2. Therefore the CBO prefers Option A.
    However this can easily change.
    Consider the following
    begin
      for i in 1..1000 loop
        insert into emp (empno, empname) values (1, 'Employee');
      end loop;
    end;
    commit;
    execute dbms_stats.gather_table_stats(user,'EMP');The run the select again.
    SQL> set autotrace traceonly
    SQL> select * from emp where empno = 1;
    1001 Zeilen ausgewõhlt.
    Ausf³hrungsplan
    Plan hash value: 3956160932
    | Id  | Operation         | Name | Rows  | Bytes | Cost (%CPU)| Time     |
    |   0 | SELECT STATEMENT  |      |  1001 | 12012 |     3   (0)| 00:00:01 |
    |*  1 |  TABLE ACCESS FULL| EMP  |  1001 | 12012 |     3   (0)| 00:00:01 |
    Predicate Information (identified by operation id):
       1 - filter("EMPNO"=1)
    Statistiken
              1  recursive calls
              0  db block gets
             74  consistent gets
              0  physical reads
              0  redo size
          18356  bytes sent via SQL*Net to client
           1250  bytes received via SQL*Net from client
             68  SQL*Net roundtrips to/from client
              0  sorts (memory)
              0  sorts (disk)
           1001  rows processedThe CBO now prefers the full table scan and not the index access.
    If we force it to use an index then the cost increases.
    SQL> set linesize 100
    SQL> select /*+INDEX(emp) */ * from emp where empno = 1
    1001 Zeilen ausgewõhlt.
    Ausf³hrungsplan
    Plan hash value: 2426388914
    | Id  | Operation                   | Name      | Rows  | Bytes | Cost (%CPU)| Time     |
    |   0 | SELECT STATEMENT            |           |  1001 | 12012 |     5   (0)| 00:00:01 |
    |   1 |  TABLE ACCESS BY INDEX ROWID| EMP       |  1001 | 12012 |     5   (0)| 00:00:01 |
    |*  2 |   INDEX RANGE SCAN          | IDX_EMPNO |  1001 |       |     2   (0)| 00:00:01 |
    Predicate Information (identified by operation id):
       2 - access("EMPNO"=1)
    Statistiken
              0  recursive calls
              0  db block gets
            139  consistent gets
              0  physical reads
              0  redo size
          30550  bytes sent via SQL*Net to client
           1250  bytes received via SQL*Net from client
             67  SQL*Net roundtrips to/from client
              0  sorts (memory)
              0  sorts (disk)
           1001  rows processed
    SQL>The cost using the index range scan is now 5. WHile the FTS is still 3. Therefore the CBO prefers to use the FTS.

  • Forcing the browser to display current images

    Hi all
              I have a content manager tool where images are uploaded to a server.On the
              same screen the current version of the image is displayed
              When a new version of the image is uploaded and the page is requested again
              without closing the browser window), the old image displays unless the user
              clicks the refresh button or hits the F5 key.
              Is there a meta tag that will specifically expire images in the browser
              cache and force the browser to get the new version?
              I have tried various meta tags eg
              <meta http-equiv="Expires" content="0" />
              <META HTTP-EQUIV="REFRESH" CONTENT="-1">
              <META HTTP-EQUIV="PRAGMA" CONTENT="NO-CACHE">
              If the user closes the browser, opens it again and request the url then the
              new version of the image displays. It as though the cache doesnt flush or
              something until the browser is closed.
              The only other way I can think of is to add a ?param=some_random_number
              query string to each image in my html - not sure if that would work or not.
              Any help appreciated
              Thanks
              Matt
              

    Hi
              I ended up adding a randomly generated query string to all of my images that
              need to be reretrieved and it worked
              eg the url for my image would be images/myimage.gif?cacheparam=12345
              I did this instead of a custom filter/servlet because only about 3% of my
              images have these strict "ignore the cache" requirements and I couldnt think
              of a url pattern that would properly isolate them without also disabling
              caching for all of my other images.
              Thanks for your replies - i never thought of being able to set response
              headers individually for images.
              "Wenjin Zhang" <[email protected]> wrote in message
              news:[email protected]...
              >
              > I believe you can do that by adding HTTP headers in response object in
              your filter.
              >
              > "Matt Krevs" <[email protected]> wrote:
              > >Thanks
              > >
              > >Could I do this with a filter instead of a servlet?
              > >
              > >what headers would i set for each image?
              > >
              > >"Wenjin Zhang" <[email protected]> wrote in message
              > >news:[email protected]...
              > >>
              > >> If you have a customized servlet to serve your images, you can add
              > >cache
              > >control
              > >> in HTTP header (not meta in HTML).
              > >>
              > >>
              > >> "Matt Krevs" <[email protected]> wrote:
              > >> >Hi all
              > >> >
              > >> >I have a content manager tool where images are uploaded to a server.On
              > >> >the
              > >> >same screen the current version of the image is displayed
              > >> >
              > >> >When a new version of the image is uploaded and the page is requested
              > >> >again
              > >> >without closing the browser window), the old image displays unless
              > >the
              > >> >user
              > >> >clicks the refresh button or hits the F5 key.
              > >> >
              > >> >Is there a meta tag that will specifically expire images in the
              browser
              > >> >cache and force the browser to get the new version?
              > >> >
              > >> >I have tried various meta tags eg
              > >> >
              > >> ><meta http-equiv="Expires" content="0" />
              > >> ><META HTTP-EQUIV="REFRESH" CONTENT="-1">
              > >> ><META HTTP-EQUIV="PRAGMA" CONTENT="NO-CACHE">
              > >> >
              > >> >If the user closes the browser, opens it again and request the url
              > >then
              > >> >the
              > >> >new version of the image displays. It as though the cache doesnt flush
              > >> >or
              > >> >something until the browser is closed.
              > >> >
              > >> >The only other way I can think of is to add a
              ?param=some_random_number
              > >> >query string to each image in my html - not sure if that would work
              > >or
              > >> >not.
              > >> >
              > >> >Any help appreciated
              > >> >
              > >> >Thanks
              > >> >Matt
              > >> >
              > >> >
              > >> >
              > >>
              > >
              > >
              >
              

  • How to get Application name of a current running process in LiveCycle??

    Hi,
    I want to get the Application name of current running process in LiveCycle as a output value.
    I have 3 applictions, the 3 applications are calling same SubProcess, so I want get the name of the application from which the sub process has been called.
    I want to retrieve the Application name and asssign this value to a output variable.
    I have searched for the solution I found a method getApplicationName() but inorder to get the current running process's Application Name this might not be useful..
    So suggest the way to resolve this..
    Thanks in Advance.....
    Regards,
    Kalyan Urimi

    Use an input/output string variable in the subprocess and set its value in each calling process as respective Application name.
    May be if this could help.
    Thanks,
    Wasil

  • How to check which apps are currently running? C3

    Anybody out there...When there is not enough memory to open a new app it gives you the opportunity to stop currently running background apps.  Is there a way to check and/or stop apps before you run out of memory?
    Phone: C3
    Thanks

    unfortunately there is no way to launch that "task killing" app from anywhere from the phone, it just starts itself when you run out resources.

  • Safari won't launch - "Safari quit unexpectedly while using the Quartzcomposer plug-in". I'm currently running 10.9.2

    Hi, Safari will no longer lanch on my Macbook Pro, It says "Safari quit unexpectedly while using the Quartzcomposer plug-in". I'm currently running 10.9.2, any help would be appreciated.
    It gives me this report:
    Process:    
    Safari [893]
    Path:       
    /Applications/Safari.app/Contents/MacOS/Safari
    Identifier: 
    com.apple.Safari
    Version:    
    7.0.3 (9537.75.14)
    Build Info: 
    WebBrowser-7537075014000000~3
    Code Type:  
    X86-64 (Native)
    Parent Process:  launchd [157]
    Responsible:
    Safari [893]
    User ID:    
    501
    PlugIn Path:  
    /System/Library/Frameworks/Quartz.framework/Versions/A/Frameworks/QuartzComposer .framework/Versions/A/QuartzComposer
    PlugIn Identifier: com.apple.QuartzComposer
    PlugIn Version:
    5.1 (319)
    Date/Time:  
    2014-04-26 19:30:38.021 +1000
    OS Version: 
    Mac OS X 10.9.2 (13C64)
    Report Version:  11
    Anonymous UUID:  619A9070-C362-7C96-9A9F-C8EED36382FF
    Crashed Thread:  0  Dispatch queue: com.apple.main-thread
    Exception Type:  EXC_BAD_ACCESS (Code Signature Invalid)
    Exception Codes: 0x0000000000000032, 0x00007fff74cf2588
    VM Regions Near 0x7fff74cf2588:
    __DATA            
    00007fff74c2a000-00007fff74c31000 [   28K] rw-/rwx SM=COW  /System/Library/Frameworks/Quartz.framework/Versions/A/Frameworks/QuartzCompose r.framework/Versions/A/QuartzComposer
    --> __DATA            
    00007fff74c31000-00007fff74cf8000 [  796K] rw-/rwx SM=COW  /System/Library/Frameworks/Quartz.framework/Versions/A/Frameworks/QuartzCompose r.framework/Versions/A/QuartzComposer
    __DATA            
    00007fff74cf8000-00007fff74cf9000 [
    4K] rw-/rwx SM=COW  /usr/lib/system/libsystem_m.dylib
    Application Specific Information:
    dyld: in dlopen()
    /System/Library/Frameworks/Quartz.framework/Versions/A/Frameworks/QuartzComposer .framework/Versions/A/QuartzComposer
    Process Model:
    Multiple Web Processes
    Enabled Extensions:
    com.spigot.safari.searchme-B652554955 (1.3 - 1.3) Searchme
    com.spigot.safari.ebayshopassist-B652554955 (1.1 - 1.1) Ebay Shopping Assistant
    com.spigot.safari.amazonshopassist-B652554955 (1.1 - 1.1) Amazon Shopping Assistant
    com.spigot.safari.slicksavings-B652554955 (1.0 - 1.0) Slick Savings
    Thread 0 Crashed:: Dispatch queue: com.apple.main-thread
    0   dyld                     
    0x00007fff6722d664 ImageLoaderMachO::bindLocation(ImageLoader::LinkContext const&, unsigned long, unsigned long, ImageLoader const*, unsigned char, char const*, long, char const*) + 216
    1   dyld                     
    0x00007fff67233364 ImageLoaderMachOCompressed::bindAt(ImageLoader::LinkContext const&, unsigned long, unsigned char, char const*, unsigned char, long, int, char const*, ImageLoaderMachOCompressed::LastLookup*, bool) + 116
    2   dyld                     
    0x00007fff67233add ImageLoaderMachOCompressed::eachBind(ImageLoader::LinkContext const&, unsigned long (ImageLoaderMachOCompressed::*)(ImageLoader::LinkContext const&, unsigned long, unsigned char, char const*, unsigned char, long, int, char const*, ImageLoaderMachOCompressed::LastLookup*, bool)) + 1693
    3   dyld                     
    0x00007fff672333bf ImageLoaderMachOCompressed::doBind(ImageLoader::LinkContext const&, bool) + 63
    4   dyld                     
    0x00007fff6722a2f8 ImageLoader::recursiveBind(ImageLoader::LinkContext const&, bool, bool) + 168
    5   dyld                     
    0x00007fff6722a2cd ImageLoader::recursiveBind(ImageLoader::LinkContext const&, bool, bool) + 125
    6   dyld                     
    0x00007fff6722a2cd ImageLoader::recursiveBind(ImageLoader::LinkContext const&, bool, bool) + 125
    7   dyld                     
    0x00007fff6722a2cd ImageLoader::recursiveBind(ImageLoader::LinkContext const&, bool, bool) + 125
    8   dyld                     
    0x00007fff6722a2cd ImageLoader::recursiveBind(ImageLoader::LinkContext const&, bool, bool) + 125
    9   dyld                     
    0x00007fff67229a37 ImageLoader::link(ImageLoader::LinkContext const&, bool, bool, bool, ImageLoader::RPathChain const&) + 179
    10  dyld                     
    0x00007fff67220764 dyld::link(ImageLoader*, bool, bool, ImageLoader::RPathChain const&) + 166
    11  dyld                     
    0x00007fff6722776d dlopen + 440
    12  libdyld.dylib            
    0x00007fff8e0bf7ee dlopen + 59
    13  com.apple.Safari.framework
    0x0000000108f721e8 AOSAccountsFramework() + 39
    14  com.apple.Safari.framework
    0x0000000108f70eed getMMAOSAccountStatusLoginNotification() + 27
    15  com.apple.Safari.framework
    0x0000000108df5f09 ___ZL29aosAccountsFrameworkAvailablev_block_invoke + 11
    16  com.apple.Safari.framework
    0x0000000108df3e71 aosAccountsFrameworkAvailable() + 33
    17  com.apple.Safari.framework
    0x0000000108df3d69 -[CloudTabStore init] + 65
    18  com.apple.Safari.framework
    0x0000000108df3d18 +[CloudTabStore sharedCloudTabStore] + 58
    19  com.apple.Safari.framework
    0x0000000108f97150 -[ToolbarController _canShowToolbarItemForCloudTabs] + 29
    20  com.apple.Safari.framework
    0x0000000108f97893 -[ToolbarController toolbarDefaultItemIdentifiers:] + 154
    21  com.apple.AppKit         
    0x00007fff8cc04b11 -[NSToolbar _defaultItemIdentifiers] + 80
    22  com.apple.AppKit         
    0x00007fff8cc04904 -[NSToolbar _setConfigurationFromDictionary:notifyFamilyAndUpdateDefaults:upgradedConfigura tion:] + 291
    23  com.apple.AppKit         
    0x00007fff8cc0474c -[NSToolbar _setConfigurationUsingName:domain:] + 324
    24  com.apple.AppKit         
    0x00007fff8cc045f4 -[NSToolbar setConfigurationUsingName:] + 201
    25  com.apple.AppKit         
    0x00007fff8cc04431 -[NSToolbar _loadFromUDIfNecessary] + 121
    26  com.apple.AppKit         
    0x00007fff8cc04175 -[NSWindow setToolbar:] + 535
    27  com.apple.Safari.framework
    0x0000000108f95d5b -[ToolbarController initWithBrowserWindowController:] + 587
    28  com.apple.Safari.framework
    0x0000000108dc2568 -[BrowserWindowControllerMac windowDidLoad] + 739
    29  com.apple.AppKit         
    0x00007fff8cd9641c -[NSWindowController _windowDidLoad] + 450
    30  com.apple.Safari.framework
    0x0000000108ff4c13 -[WindowController _windowDidLoad] + 43
    31  com.apple.AppKit         
    0x00007fff8cd7d016 -[NSWindowController window] + 110
    32  com.apple.Safari.framework
    0x0000000108dc2c9a -[BrowserWindowControllerMac showWindow:] + 50
    33  com.apple.AppKit         
    0x00007fff8ce4a605 -[NSDocument showWindows] + 100
    34  com.apple.Safari.framework
    0x0000000108d9100b -[BrowserDocument showWindows] + 39
    35  com.apple.AppKit         
    0x00007fff8ce49178 -[NSDocumentController openUntitledDocumentAndDisplay:error:] + 458
    36  com.apple.AppKit         
    0x00007fff8ce48f6f -[NSDocumentController newDocument:] + 36
    37  com.apple.Safari.framework
    0x0000000108f244e3 -[WindowReopener reopenWithArrayOfWindowControllerNames:] + 120
    38  com.apple.Safari.framework
    0x0000000108f246a4 -[WindowReopener init] + 117
    39  com.apple.Safari.framework
    0x0000000108f247b3 +[WindowReopener reopenWindows] + 43
    40  com.apple.Safari.framework
    0x0000000108d060f7 -[AppController _openUntitledFileWhileLaunching:] + 157
    41  com.apple.Safari.framework
    0x0000000108d02fa3 -[AppController applicationOpenUntitledFile:] + 22
    42  com.apple.AppKit         
    0x00007fff8cd77e20 -[NSApplication _doOpenUntitled] + 447
    43  com.apple.AppKit         
    0x00007fff8cc9af01 __58-[NSApplication(NSAppleEventHandling) _handleAEOpenEvent:]_block_invoke + 254
    44  com.apple.AppKit         
    0x00007fff8cc9ac23 __78-[NSDocumentController(NSInternal) _autoreopenDocumentsWithCompletionHandler:]_block_invoke_2 + 140
    45  com.apple.AppKit         
    0x00007fff8cc9a80d -[NSDocumentController(NSInternal) _autoreopenDocumentsWithCompletionHandler:] + 746
    46  com.apple.AppKit         
    0x00007fff8cb05b7b -[NSApplication _reopenWindowsAsNecessaryIncludingRestorableState:registeringAsReady:completion Handler:] + 323
    47  com.apple.AppKit         
    0x00007fff8cb05909 -[NSApplication(NSAppleEventHandling) _handleAEOpenEvent:] + 557
    48  com.apple.AppKit         
    0x00007fff8cb0536b -[NSApplication(NSAppleEventHandling) _handleCoreEvent:withReplyEvent:] + 242
    49  com.apple.Foundation     
    0x00007fff876e8f0a -[NSAppleEventManager dispatchRawAppleEvent:withRawReply:handlerRefCon:] + 294
    50  com.apple.Foundation     
    0x00007fff876e8d7d _NSAppleEventManagerGenericHandler + 106
    51  com.apple.AE             
    0x00007fff839aee1f aeDispatchAppleEvent(AEDesc const*, AEDesc*, unsigned int, unsigned char*) + 381
    52  com.apple.AE             
    0x00007fff839aec32 dispatchEventAndSendReply(AEDesc const*, AEDesc*) + 31
    53  com.apple.AE             
    0x00007fff839aeb36 aeProcessAppleEvent + 315
    54  com.apple.HIToolbox      
    0x00007fff8532f161 AEProcessAppleEvent + 56
    55  com.apple.AppKit         
    0x00007fff8cb01246 _DPSNextEvent + 1026
    56  com.apple.AppKit         
    0x00007fff8cb00a2b -[NSApplication nextEventMatchingMask:untilDate:inMode:dequeue:] + 122
    57  com.apple.Safari.framework
    0x0000000108d55d00 -[BrowserApplication nextEventMatchingMask:untilDate:inMode:dequeue:] + 161
    58  com.apple.AppKit         
    0x00007fff8caf4b2c -[NSApplication run] + 553
    59  com.apple.AppKit         
    0x00007fff8cadf913 NSApplicationMain + 940
    60  com.apple.Safari.framework
    0x0000000108f27c8d SafariMain + 267
    61  libdyld.dylib            
    0x00007fff8e0c05fd start + 1
    Thread 1:: Dispatch queue: com.apple.CFURLCACHE_work_queue
    0   libsystem_kernel.dylib   
    0x00007fff876b1fe2 __fcntl + 10
    1   libsystem_kernel.dylib   
    0x00007fff876b0a4d fcntl + 240
    2   libsqlite3.dylib         
    0x00007fff8751f85d unixSync + 45
    3   libsqlite3.dylib         
    0x00007fff875334f6 sqlite3WalCheckpoint + 1990
    4   libsqlite3.dylib         
    0x00007fff87544578 sqlite3Checkpoint + 248
    5   libsqlite3.dylib         
    0x00007fff875443ea sqlite3_wal_checkpoint_v2 + 362
    6   libsqlite3.dylib         
    0x00007fff8751f9ca sqlite3WalDefaultHook + 26
    7   libsqlite3.dylib         
    0x00007fff874f6790 sqlite3_step + 1568
    8   libsqlite3.dylib         
    0x00007fff874b9f38 sqlite3_exec + 440
    9   com.apple.CFNetwork      
    0x00007fff8fa8500d __CFURLCache::PostDatabaseOpenPragmaExecute_NoLock() + 35
    10  com.apple.CFNetwork      
    0x00007fff8fa84e19 __CFURLCache::OpenDatabase() + 367
    11  com.apple.CFNetwork      
    0x00007fff8fa84c4f __CFURLCache::ProcessCacheTasks0(bool) + 1373
    12  com.apple.CFNetwork      
    0x00007fff8fa84591 __CFURLCache::ProcessCacheTasks(bool) + 53
    13  com.apple.CFNetwork      
    0x00007fff8fa84066 __CFURLCache::_CFURLCacheTimerCallback0() + 286
    14  com.apple.CFNetwork      
    0x00007fff8fa83ee7 __CFURLCache::_CFURLCacheTimerCallback(void*) + 43
    15  com.apple.CFNetwork      
    0x00007fff8fa83e0f ___ZN12__CFURLCache29SignalWorkerTaskToPerformWorkEv_block_invoke + 18
    16  libdispatch.dylib        
    0x00007fff89e191d7 _dispatch_call_block_and_release + 12
    17  libdispatch.dylib        
    0x00007fff89e162ad _dispatch_client_callout + 8
    18  libdispatch.dylib        
    0x00007fff89e1868f _dispatch_queue_drain + 451
    19  libdispatch.dylib        
    0x00007fff89e199dd _dispatch_queue_invoke + 110
    20  libdispatch.dylib        
    0x00007fff89e17fa3 _dispatch_root_queue_drain + 75
    21  libdispatch.dylib        
    0x00007fff89e19193 _dispatch_worker_thread2 + 40
    22  libsystem_pthread.dylib  
    0x00007fff8be80ef8 _pthread_wqthread + 314
    23  libsystem_pthread.dylib  
    0x00007fff8be83fb9 start_wqthread + 13
    Thread 2:: Dispatch queue: com.apple.libdispatch-manager
    0   libsystem_kernel.dylib   
    0x00007fff876b3662 kevent64 + 10
    1   libdispatch.dylib        
    0x00007fff89e1843d _dispatch_mgr_invoke + 239
    2   libdispatch.dylib        
    0x00007fff89e18152 _dispatch_mgr_thread + 52
    Thread 3:
    0   libsystem_kernel.dylib   
    0x00007fff876b2e6a __workq_kernreturn + 10
    1   libsystem_pthread.dylib  
    0x00007fff8be80f08 _pthread_wqthread + 330
    2   libsystem_pthread.dylib  
    0x00007fff8be83fb9 start_wqthread + 13
    Thread 4:
    0   libsystem_kernel.dylib   
    0x00007fff876b2e6a __workq_kernreturn + 10
    1   libsystem_pthread.dylib  
    0x00007fff8be80f08 _pthread_wqthread + 330
    2   libsystem_pthread.dylib  
    0x00007fff8be83fb9 start_wqthread + 13
    Thread 5:: WebCore: IconDatabase
    0   libsystem_kernel.dylib   
    0x00007fff876b3962 pread + 10
    1   libsqlite3.dylib         
    0x00007fff874b81d4 unixRead + 100
    2   libsqlite3.dylib         
    0x00007fff874de5ee readDbPage + 478
    3   libsqlite3.dylib         
    0x00007fff874dd18d sqlite3PagerAcquire + 349
    4   libsqlite3.dylib         
    0x00007fff8758a3a1 checkTreePage + 289
    5   libsqlite3.dylib         
    0x00007fff8758a7ca checkTreePage + 1354
    6   libsqlite3.dylib         
    0x00007fff8758a7ca checkTreePage + 1354
    7   libsqlite3.dylib         
    0x00007fff8758a98d checkTreePage + 1805
    8   libsqlite3.dylib         
    0x00007fff87505d53 sqlite3VdbeExec + 59651
    9   libsqlite3.dylib         
    0x00007fff874f640a sqlite3_step + 666
    10  com.apple.WebCore        
    0x000000010a06fe39 WebCore::SQLiteStatement::step() + 73
    11  com.apple.WebCore        
    0x000000010a7b990e WebCore::IconDatabase::checkIntegrity() + 110
    12  com.apple.WebCore        
    0x000000010a06f721 WebCore::IconDatabase::performOpenInitialization() + 65
    13  com.apple.WebCore        
    0x000000010a06f033 WebCore::IconDatabase::iconDatabaseSyncThread() + 259
    14  com.apple.JavaScriptCore 
    0x00000001095f753f ***::wtfThreadEntryPoint(void*) + 15
    15  libsystem_pthread.dylib  
    0x00007fff8be7f899 _pthread_body + 138
    16  libsystem_pthread.dylib  
    0x00007fff8be7f72a _pthread_start + 137
    17  libsystem_pthread.dylib  
    0x00007fff8be83fc9 thread_start + 13
    Thread 6:
    0   libsystem_kernel.dylib   
    0x00007fff876b2e6a __workq_kernreturn + 10
    1   libsystem_pthread.dylib  
    0x00007fff8be80f08 _pthread_wqthread + 330
    2   libsystem_pthread.dylib  
    0x00007fff8be83fb9 start_wqthread + 13
    Thread 7:
    0   libsystem_kernel.dylib   
    0x00007fff876b2e6a __workq_kernreturn + 10
    1   libsystem_pthread.dylib  
    0x00007fff8be80f08 _pthread_wqthread + 330
    2   libsystem_pthread.dylib  
    0x00007fff8be83fb9 start_wqthread + 13
    Thread 8:
    0   libsystem_kernel.dylib   
    0x00007fff876b2e6a __workq_kernreturn + 10
    1   libsystem_pthread.dylib  
    0x00007fff8be80f08 _pthread_wqthread + 330
    2   libsystem_pthread.dylib  
    0x00007fff8be83fb9 start_wqthread + 13
    Thread 9:
    0   libsystem_kernel.dylib   
    0x00007fff876b2e6a __workq_kernreturn + 10
    1   libsystem_pthread.dylib  
    0x00007fff8be80f08 _pthread_wqthread + 330
    2   libsystem_pthread.dylib  
    0x00007fff8be83fb9 start_wqthread + 13
    Thread 10:: com.apple.CoreAnimation.render-server
    0   libsystem_kernel.dylib   
    0x00007fff876aea1a mach_msg_trap + 10
    1   libsystem_kernel.dylib   
    0x00007fff876add18 mach_msg + 64
    2   com.apple.QuartzCore     
    0x00007fff87afd377 CA::Render::Server::server_thread(void*) + 195
    3   com.apple.QuartzCore     
    0x00007fff87afd2ad thread_fun + 25
    4   libsystem_pthread.dylib  
    0x00007fff8be7f899 _pthread_body + 138
    5   libsystem_pthread.dylib  
    0x00007fff8be7f72a _pthread_start + 137
    6   libsystem_pthread.dylib  
    0x00007fff8be83fc9 thread_start + 13
    Thread 11:: com.apple.NSURLConnectionLoader
    0   libsystem_kernel.dylib   
    0x00007fff876aea1a mach_msg_trap + 10
    1   libsystem_kernel.dylib   
    0x00007fff876add18 mach_msg + 64
    2   com.apple.CoreFoundation 
    0x00007fff8e593155 __CFRunLoopServiceMachPort + 181
    3   com.apple.CoreFoundation 
    0x00007fff8e592779 __CFRunLoopRun + 1161
    4   com.apple.CoreFoundation 
    0x00007fff8e5920b5 CFRunLoopRunSpecific + 309
    5   com.apple.Foundation     
    0x00007fff8772e967 +[NSURLConnection(Loader) _resourceLoadLoop:] + 348
    6   com.apple.Foundation     
    0x00007fff8772e76b __NSThread__main__ + 1318
    7   libsystem_pthread.dylib  
    0x00007fff8be7f899 _pthread_body + 138
    8   libsystem_pthread.dylib  
    0x00007fff8be7f72a _pthread_start + 137
    9   libsystem_pthread.dylib  
    0x00007fff8be83fc9 thread_start + 13
    Thread 12:: JavaScriptCore::BlockFree
    0   libsystem_kernel.dylib   
    0x00007fff876b2716 __psynch_cvwait + 10
    1   libsystem_pthread.dylib  
    0x00007fff8be81c3b _pthread_cond_wait + 727
    2   com.apple.JavaScriptCore 
    0x00000001096026f6 ***::ThreadCondition::timedWait(***::Mutex&, double) + 118
    3   com.apple.JavaScriptCore 
    0x0000000109602215 JSC::BlockAllocator::blockFreeingThreadMain() + 117
    4   com.apple.JavaScriptCore 
    0x00000001095f753f ***::wtfThreadEntryPoint(void*) + 15
    5   libsystem_pthread.dylib  
    0x00007fff8be7f899 _pthread_body + 138
    6   libsystem_pthread.dylib  
    0x00007fff8be7f72a _pthread_start + 137
    7   libsystem_pthread.dylib  
    0x00007fff8be83fc9 thread_start + 13
    Thread 13:: JavaScriptCore::Marking
    0   libsystem_kernel.dylib   
    0x00007fff876b2716 __psynch_cvwait + 10
    1   libsystem_pthread.dylib  
    0x00007fff8be81c3b _pthread_cond_wait + 727
    2   com.apple.JavaScriptCore 
    0x0000000109602d17 JSC::GCThread::waitForNextPhase() + 119
    3   com.apple.JavaScriptCore 
    0x0000000109602ba8 JSC::GCThread::gcThreadMain() + 88
    4   com.apple.JavaScriptCore 
    0x00000001095f753f ***::wtfThreadEntryPoint(void*) + 15
    5   libsystem_pthread.dylib  
    0x00007fff8be7f899 _pthread_body + 138
    6   libsystem_pthread.dylib  
    0x00007fff8be7f72a _pthread_start + 137
    7   libsystem_pthread.dylib  
    0x00007fff8be83fc9 thread_start + 13
    Thread 14:: JavaScriptCore::Marking
    0   libsystem_kernel.dylib   
    0x00007fff876b2716 __psynch_cvwait + 10
    1   libsystem_pthread.dylib  
    0x00007fff8be81c3b _pthread_cond_wait + 727
    2   com.apple.JavaScriptCore 
    0x0000000109602d17 JSC::GCThread::waitForNextPhase() + 119
    3   com.apple.JavaScriptCore 
    0x0000000109602ba8 JSC::GCThread::gcThreadMain() + 88
    4   com.apple.JavaScriptCore 
    0x00000001095f753f ***::wtfThreadEntryPoint(void*) + 15
    5   libsystem_pthread.dylib  
    0x00007fff8be7f899 _pthread_body + 138
    6   libsystem_pthread.dylib  
    0x00007fff8be7f72a _pthread_start + 137
    7   libsystem_pthread.dylib  
    0x00007fff8be83fc9 thread_start + 13
    Thread 15:: JavaScriptCore::Marking
    0   libsystem_kernel.dylib   
    0x00007fff876b2716 __psynch_cvwait + 10
    1   libsystem_pthread.dylib  
    0x00007fff8be81c3b _pthread_cond_wait + 727
    2   com.apple.JavaScriptCore 
    0x0000000109602d17 JSC::GCThread::waitForNextPhase() + 119
    3   com.apple.JavaScriptCore 
    0x0000000109602ba8 JSC::GCThread::gcThreadMain() + 88
    4   com.apple.JavaScriptCore 
    0x00000001095f753f ***::wtfThreadEntryPoint(void*) + 15
    5   libsystem_pthread.dylib  
    0x00007fff8be7f899 _pthread_body + 138
    6   libsystem_pthread.dylib  
    0x00007fff8be7f72a _pthread_start + 137
    7   libsystem_pthread.dylib  
    0x00007fff8be83fc9 thread_start + 13
    Thread 16:
    0   libsystem_kernel.dylib   
    0x00007fff876b2e6a __workq_kernreturn + 10
    1   libsystem_pthread.dylib  
    0x00007fff8be80f08 _pthread_wqthread + 330
    2   libsystem_pthread.dylib  
    0x00007fff8be83fb9 start_wqthread + 13
    Thread 0 crashed with X86 Thread State (64-bit):
      rax: 0x0000000000000001  rbx: 0x00007fff74cf2588  rcx: 0x00007fff749bc460  rdx: 0x00007fff74cf2588
      rdi: 0x00007ff138c22b00  rsi: 0x0000000000000001  rbp: 0x00007fff56f11050  rsp: 0x00007fff56f11000
       r8: 0x00007fff6725cb70   r9: 0x0000000000000001  r10: 0x00007fff672332f0  r11: 0x0000000010b749eb
      r12: 0x00007fff749bc460  r13: 0x00007fff672500b0  r14: 0x00007fff749bc470  r15: 0x00007fff6725cb70
      rip: 0x00007fff6722d664  rfl: 0x0000000000010246  cr2: 0x00007fff74cf2588
    Logical CPU:
    2
    Error Code: 
    0x00000004
    Trap Number:
    14
    Binary Images:
    0x108ced000 -   
    0x108cedffd  com.apple.Safari (7.0.3 - 9537.75.14) <170ED2F7-108B-326D-96B6-D54CCA40AA85> /Applications/Safari.app/Contents/MacOS/Safari
    0x108cf9000 -   
    0x1091ffffb  com.apple.Safari.framework (9537 - 9537.75.14) <4803DE3D-4606-3B70-A537-6D12F172665A> /System/Library/StagedFrameworks/Safari/Safari.framework/Versions/A/Safari
    0x1095ee000 -   
    0x109965ff6  com.apple.JavaScriptCore (9537 - 9537.75.12) <8018AEEE-9FAB-34DE-AF60-97B2F221747A> /System/Library/StagedFrameworks/Safari/JavaScriptCore.framework/Versions/A/Jav aScriptCore
    0x109a63000 -   
    0x109b99ffc  com.apple.WebKit (9537 - 9537.75.14) <CBAF76C6-E6F7-390A-A21D-CBCAF4A6896A> /System/Library/StagedFrameworks/Safari/WebKit.framework/Versions/A/WebKit
    0x109c90000 -   
    0x109e81ff3  com.apple.WebKit2 (9537 - 9537.75.14) <B3511A1C-A7E7-3F81-9EDB-2602C4EFAF19> /System/Library/StagedFrameworks/Safari/WebKit2.framework/Versions/A/WebKit2
    0x10a069000 -   
    0x10aebbffb  com.apple.WebCore (9537 - 9537.75.14) <99715507-9651-3DCE-831B-BF815FB3DE44> /System/Library/StagedFrameworks/Safari/WebCore.framework/Versions/A/WebCore
    0x7fff6721c000 -
    0x7fff6724f817  dyld (239.4) <2B17750C-ED1B-3060-B64E-21897D08B28B> /usr/lib/dyld
    0x7fff824ef000 -
    0x7fff8251ffff  com.apple.IconServices (25 - 25.17) <4751127E-FBD5-3ED5-8510-08D4E4166EFE> /System/Library/PrivateFrameworks/IconServices.framework/Versions/A/IconService s
    0x7fff8256f000 -
    0x7fff825d3fff  com.apple.datadetectorscore (5.0 - 354.3) <B92E87D1-2045-3AB2-AE3F-8F948B30518A> /System/Library/PrivateFrameworks/DataDetectorsCore.framework/Versions/A/DataDe tectorsCore
    0x7fff825dd000 -
    0x7fff825deff7  libsystem_sandbox.dylib (278.11) <5E5A6E09-33A9-391A-AB34-E57D93BB1551> /usr/lib/system/libsystem_sandbox.dylib
    0x7fff827f6000 -
    0x7fff829aeff3  libicucore.A.dylib (511.31) <167DDD0A-A935-31AF-B5B9-940268EC3A3C> /usr/lib/libicucore.A.dylib
    0x7fff829af000 -
    0x7fff82bf7ff7  com.apple.CoreData (107 - 481.01) <DA339795-5D97-35B5-9B04-629830013720> /System/Library/Frameworks/CoreData.framework/Versions/A/CoreData
    0x7fff82bf8000 -
    0x7fff82c20ffb  libxslt.1.dylib (13) <C9794936-633C-3F0C-9E71-30190B9B41C1> /usr/lib/libxslt.1.dylib
    0x7fff82c21000 -
    0x7fff82c29ffc  libGFXShared.dylib (9.6) <E276D384-3616-3511-B5F2-92621D6372D6> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGFXShared.d ylib
    0x7fff82c2a000 -
    0x7fff82c31fff  libcompiler_rt.dylib (35) <4CD916B2-1B17-362A-B403-EF24A1DAC141> /usr/lib/system/libcompiler_rt.dylib
    0x7fff82c32000 -
    0x7fff82c3cff7  com.apple.bsd.ServiceManagement (2.0 - 2.0) <2D27B498-BB9C-3D88-B05A-76908A8A26F3> /System/Library/Frameworks/ServiceManagement.framework/Versions/A/ServiceManage ment
    0x7fff82c3d000 -
    0x7fff82c61ff7  libJPEG.dylib (1042) <33648F26-A1DA-3C30-B15B-E9FFD41DB25C> /System/Library/Frameworks/ImageIO.framework/Versions/A/Resources/libJPEG.dylib
    0x7fff82c62000 -
    0x7fff82c72ffb  libsasl2.2.dylib (170) <C8E25710-68B6-368A-BF3E-48EC7273177B> /usr/lib/libsasl2.2.dylib
    0x7fff82c73000 -
    0x7fff82c80fff  com.apple.Sharing (132.2 - 132.2) <F983394A-226D-3244-B511-FA51FDB6ADDA> /System/Library/PrivateFrameworks/Sharing.framework/Versions/A/Sharing
    0x7fff82cd5000 -
    0x7fff82cd9ff7  libGIF.dylib (1042) <C57840F6-1C11-3273-B4FC-956950B94034> /System/Library/Frameworks/ImageIO.framework/Versions/A/Resources/libGIF.dylib
    0x7fff82d07000 -
    0x7fff82d7efff  com.apple.CoreServices.OSServices (600.4 - 600.4) <36B2B009-C35E-3F21-824E-E0D00E7808C7> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/OSServi ces.framework/Versions/A/OSServices
    0x7fff82d7f000 -
    0x7fff82d80ff7  libodfde.dylib (20) <C00A4EBA-44BC-3C53-BFD0-819B03FFD462> /usr/lib/libodfde.dylib
    0x7fff82d81000 -
    0x7fff82d94ff7  com.apple.AppContainer (3.0 - 1) <BD342039-430E-39FE-BC2D-8F97B557548E> /System/Library/PrivateFrameworks/AppContainer.framework/Versions/A/AppContaine r
    0x7fff82d95000 -
    0x7fff82db1fff  com.apple.frameworks.preferencepanes (16.0 - 16.0) <059E99D8-67C2-3B59-B5E7-850DD7A92D75> /System/Library/Frameworks/PreferencePanes.framework/Versions/A/PreferencePanes
    0x7fff82db2000 -
    0x7fff82dbaff3  libCGCMS.A.dylib (599.20.11) <BB1E8D63-9FA1-3588-AC5D-1980576ED62C> /System/Library/Frameworks/CoreGraphics.framework/Versions/A/Resources/libCGCMS .A.dylib
    0x7fff82dbb000 -
    0x7fff82dcffff  com.apple.aps.framework (4.0 - 4.0) <23BC5746-0914-3102-B84F-BEAB31A77AEC> /System/Library/PrivateFrameworks/ApplePushService.framework/Versions/A/ApplePu shService
    0x7fff82dd0000 -
    0x7fff82dd0fff  com.apple.SafariDAVNotifier (1.1.1 - 1) <6FD70177-7044-3EFE-905F-08F1D2D40ECA> /System/Library/PrivateFrameworks/BookmarkDAV.framework/Versions/A/Frameworks/S afariDAVNotifier.framework/Versions/A/SafariDAVNotifier
    0x7fff82deb000 -
    0x7fff82eb4fff  com.apple.LaunchServices (572.26 - 572.26) <EF8A4A15-0861-35C5-9744-5E1BC5C26DD9> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/LaunchS ervices.framework/Versions/A/LaunchServices
    0x7fff83023000 -
    0x7fff8302cfff  com.apple.DisplayServicesFW (2.8 - 360.8.14) <816A9CED-1BC0-3C76-8103-1B9BE0F723BB> /System/Library/PrivateFrameworks/DisplayServices.framework/Versions/A/DisplayS ervices
    0x7fff8302d000 -
    0x7fff8302fff7  com.apple.securityhi (9.0 - 55005) <405E2BC6-2B6F-3B6B-B48E-2FD39214F052> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/SecurityHI.fr amework/Versions/A/SecurityHI
    0x7fff83030000 -
    0x7fff83031ff7  com.apple.print.framework.Print (9.0 - 260) <EE00FAE1-DA03-3EC2-8571-562518C46994> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/Print.framewo rk/Versions/A/Print
    0x7fff83032000 -
    0x7fff83099ff7  com.apple.CoreUtils (2.0 - 200.34.4) <E53B97FE-E067-33F6-A9C1-D4EC2A20FB9F> /System/Library/PrivateFrameworks/CoreUtils.framework/Versions/A/CoreUtils
    0x7fff830d4000 -
    0x7fff83164fff  com.apple.Metadata (10.7.0 - 800.23) <BFEE576F-D779-300B-B685-26A3A008710A> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/Metadat a.framework/Versions/A/Metadata
    0x7fff83165000 -
    0x7fff83194ff7  com.apple.CoreAVCHD (5.7.0 - 5700.4.3) <404369C0-ED9F-3010-8D2F-BC55285F7808> /System/Library/PrivateFrameworks/CoreAVCHD.framework/Versions/A/CoreAVCHD
    0x7fff831b8000 -
    0x7fff831d1ff7  com.apple.Kerberos (3.0 - 1) <F108AFEB-198A-3BAF-BCA5-9DFCE55EFF92> /System/Library/Frameworks/Kerberos.framework/Versions/A/Kerberos
    0x7fff8322a000 -
    0x7fff83233ffb  com.apple.CommonAuth (4.0 - 2.0) <70FDDA03-7B44-37EC-B78E-3EC3C8505C76> /System/Library/PrivateFrameworks/CommonAuth.framework/Versions/A/CommonAuth
    0x7fff83275000 -
    0x7fff83275fff  com.apple.AOSMigrate (1.0 - 1) <ABA8F3F2-BC96-3F89-AAF4-1AA459A0BCBD> /System/Library/PrivateFrameworks/AOSMigrate.framework/Versions/A/AOSMigrate
    0x7fff83276000 -
    0x7fff83657ffe  libLAPACK.dylib (1094.5) <7E7A9B8D-1638-3914-BAE0-663B69865986> /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.fr amework/Versions/A/libLAPACK.dylib
    0x7fff83729000 -
    0x7fff8377afff  com.apple.QuickLookFramework (5.0 - 622.7) <17685CEC-C94B-3F83-ADE1-B24840B35E44> /System/Library/Frameworks/QuickLook.framework/Versions/A/QuickLook
    0x7fff8377b000 -
    0x7fff83928f27  libobjc.A.dylib (551.1) <AD7FD984-271E-30F4-A361-6B20319EC73B> /usr/lib/libobjc.A.dylib
    0x7fff83929000 -
    0x7fff8392cfff  com.apple.help (1.3.3 - 46) <AE763646-D07A-3F9A-ACD4-F5CBD734EE36> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/Help.framewor k/Versions/A/Help
    0x7fff8392d000 -
    0x7fff83951fff  libxpc.dylib (300.90.2) <AB40CD57-F454-3FD4-B415-63B3C0D5C624> /usr/lib/system/libxpc.dylib
    0x7fff83952000 -
    0x7fff839a0fff  com.apple.opencl (2.3.59 - 2.3.59) <8C2ACCC6-B0BA-3FE7-98A1-5C67284DEA4E> /System/Library/Frameworks/OpenCL.framework/Versions/A/OpenCL
    0x7fff839a1000 -
    0x7fff839fcffb  com.apple.AE (665.5 - 665.5) <BBA230F9-144C-3CAB-A77A-0621719244CD> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/AE.fram ework/Versions/A/AE
    0x7fff839fd000 -
    0x7fff83a56fff  libTIFF.dylib (1042) <51D02EEC-0D0C-34C1-91C8-D316473A3FEA> /System/Library/Frameworks/ImageIO.framework/Versions/A/Resources/libTIFF.dylib
    0x7fff83a57000 -
    0x7fff83a62ff7  com.apple.NetAuth (5.0 - 5.0) <C811E662-9EC3-3B74-808A-A75D624F326B> /System/Library/PrivateFrameworks/NetAuth.framework/Versions/A/NetAuth
    0x7fff83a63000 -
    0x7fff83abafff  com.apple.ViewBridge (1.0 - 46.2) <4AF3CB98-7691-39A2-8DC3-ABE5CC55CE7F> /System/Library/PrivateFrameworks/ViewBridge.framework/Versions/A/ViewBridge
    0x7fff83c49000 -
    0x7fff83c58ff8  com.apple.LangAnalysis (1.7.0 - 1.7.0) <8FE131B6-1180-3892-98F5-C9C9B79072D4> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ LangAnalysis.framework/Versions/A/LangAnalysis
    0x7fff83c59000 -
    0x7fff83c60ff7  com.apple.phonenumbers (1.1.1 - 105) <767A63EB-244C-34F1-9FFA-D1A6BED60C31> /System/Library/PrivateFrameworks/PhoneNumbers.framework/Versions/A/PhoneNumber s
    0x7fff83c61000 -
    0x7fff83c63fff  com.apple.EFILogin (2.0 - 2) <C360E8AF-E9BB-3BBA-9DF0-57A92CEF00D4> /System/Library/PrivateFrameworks/EFILogin.framework/Versions/A/EFILogin
    0x7fff83c86000 -
    0x7fff83edfff9  com.apple.security (7.0 - 55471.14) <3F7100A0-FE46-333D-9A4B-396580F1B4FE> /System/Library/Frameworks/Security.framework/Versions/A/Security
    0x7fff84d2f000 -
    0x7fff84d30fff  com.apple.AddressBook.ContactsData (8.0 - 1369) <BAF434EC-32B6-3F1C-8ABE-4419A15829FF> /System/Library/PrivateFrameworks/ContactsData.framework/Versions/A/ContactsDat a
    0x7fff84d55000 -
    0x7fff84db1fff  com.apple.coredav (1.0.1 - 229.6) <6D2B49E8-E81D-36C7-BC24-FD54FA35E5BC> /System/Library/PrivateFrameworks/CoreDAV.framework/Versions/A/CoreDAV
    0x7fff84db2000 -
    0x7fff84ee1fef  com.apple.MediaControlSender (2.0 - 200.34.4) <FC24EC8D-2E46-3F76-AF63-749F30857B96> /System/Library/PrivateFrameworks/MediaControlSender.framework/Versions/A/Media ControlSender
    0x7fff84ee2000 -
    0x7fff84ee2ffd  com.apple.audio.units.AudioUnit (1.10 - 1.10) <486A97CD-C1F7-324D-87BC-B07F7A415B68> /System/Library/Frameworks/AudioUnit.framework/Versions/A/AudioUnit
    0x7fff84ee3000 -
    0x7fff84f0cfff  com.apple.DictionaryServices (1.2 - 208) <A539A058-BA57-35EE-AA08-D0B0E835127D> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/Diction aryServices.framework/Versions/A/DictionaryServices
    0x7fff84f4c000 -
    0x7fff84f78ff7  com.apple.framework.SystemAdministration (1.0 - 1.0) <6FD03EF6-32B6-397D-B9D7-D68E89A462F5> /System/Library/PrivateFrameworks/SystemAdministration.framework/Versions/A/Sys temAdministration
    0x7fff84f79000 -
    0x7fff84f79fff  com.apple.Cocoa (6.8 - 20) <E90E99D7-A425-3301-A025-D9E0CD11918E> /System/Library/Frameworks/Cocoa.framework/Versions/A/Cocoa
    0x7fff84f7a000 -
    0x7fff84fb2ff7  com.apple.RemoteViewServices (2.0 - 94) <3F34D630-3DDB-3411-BC28-A56A9B55EBDA> /System/Library/PrivateFrameworks/RemoteViewServices.framework/Versions/A/Remot eViewServices
    0x7fff850ea000 -
    0x7fff85119ff5  com.apple.GSS (4.0 - 2.0) <62046C17-5D09-346C-B08E-A664DBC18411> /System/Library/Frameworks/GSS.framework/Versions/A/GSS
    0x7fff85166000 -
    0x7fff85237fff  com.apple.QuickLookUIFramework (5.0 - 622.7) <13841701-34C2-353D-868D-3E08D020C90F> /System/Library/Frameworks/Quartz.framework/Versions/A/Frameworks/QuickLookUI.f ramework/Versions/A/QuickLookUI
    0x7fff85238000 -
    0x7fff85241ff3  libsystem_notify.dylib (121) <52571EC3-6894-37E4-946E-064B021ED44E> /usr/lib/system/libsystem_notify.dylib
    0x7fff85268000 -
    0x7fff85284fff  libresolv.9.dylib (54) <11C2C826-F1C6-39C6-B4E8-6E0C41D4FA95> /usr/lib/libresolv.9.dylib
    0x7fff85285000 -
    0x7fff85288ffc  com.apple.IOSurface (91 - 91) <07CA8A59-1E32-3FB6-B506-18DAF58A8CE0> /System/Library/Frameworks/IOSurface.framework/Versions/A/IOSurface
    0x7fff85289000 -
    0x7fff852a7fff  com.apple.facetimeservices (10.0 - 1000) <DED6A966-DF0E-3E58-BD34-D85ED82A99D7> /System/Library/PrivateFrameworks/FTServices.framework/Versions/A/FTServices
    0x7fff852a8000 -
    0x7fff852f3fff  com.apple.ImageCaptureCore (5.0 - 5.0) <F529EDDC-E2F5-30CA-9938-AF23296B5C5B> /System/Library/Frameworks/ImageCaptureCore.framework/Versions/A/ImageCaptureCo re
    0x7fff852f4000 -
    0x7fff8559eff5  com.apple.HIToolbox (2.1 - 697.4) <DF5635DD-C255-3A8E-8B49-F6D2FB61FF95> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/HIToolbox.fra mework/Versions/A/HIToolbox
    0x7fff855d6000 -
    0x7fff85a09ffb  com.apple.vision.FaceCore (3.0.0 - 3.0.0) <F42BFC9C-0B16-35EF-9A07-91B7FDAB7FC5> /System/Library/PrivateFrameworks/FaceCore.framework/Versions/A/FaceCore
    0x7fff85a0a000 -
    0x7fff85a17ff0  libbz2.1.0.dylib (29) <0B98AC35-B138-349C-8063-2B987A75D24C> /usr/lib/libbz2.1.0.dylib
    0x7fff85a24000 -
    0x7fff85a26ff3  libsystem_configuration.dylib (596.13) <B51C8C22-C455-36AC-952D-A319B6545884> /usr/lib/system/libsystem_configuration.dylib
    0x7fff85a27000 -
    0x7fff85a55ff7  com.apple.securityinterface (9.0 - 55047) <0346D8A9-2CAA-38F3-A741-5FBA5E9F1E7C> /System/Library/Frameworks/SecurityInterface.framework/Versions/A/SecurityInter face
    0x7fff85a56000 -
    0x7fff85d40fff  com.apple.CoreServices.CarbonCore (1077.17 - 1077.17) <3A2E92FD-DEE2-3D45-9619-11500801A61C> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/CarbonC ore.framework/Versions/A/CarbonCore
    0x7fff85d94000 -
    0x7fff85dbafff  com.apple.AOSAccounts (1.2.47 - 1.2.74) <BA7AA453-31FB-304A-A40C-14B20533C31D> /System/Library/PrivateFrameworks/AOSAccounts.framework/Versions/A/AOSAccounts
    0x7fff85dbb000 -
    0x7fff85e44ff7  libsystem_c.dylib (997.90.3) <6FD3A400-4BB2-3B95-B90C-BE6E9D0D78FA> /usr/lib/system/libsystem_c.dylib
    0x7fff85e51000 -
    0x7fff85e54fff  com.apple.AppleSystemInfo (3.0 - 3.0) <61FE171D-3D88-313F-A832-280AEC8F4AB7> /System/Library/PrivateFrameworks/AppleSystemInfo.framework/Versions/A/AppleSys temInfo
    0x7fff85e55000 -
    0x7fff85e6cffa  libAVFAudio.dylib (32.2) <52DA516B-DE79-322C-9E1B-2658019289D7> /System/Library/Frameworks/AVFoundation.framework/Versions/A/Resources/libAVFAu dio.dylib
    0x7fff85e6d000 -
    0x7fff85eb2ffe  com.apple.HIServices (1.22 - 467.2) <B7FCF008-C241-3862-BC63-E6EF4006A6E4> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ HIServices.framework/Versions/A/HIServices
    0x7fff85eb3000 -
    0x7fff85f6bff7  com.apple.DiscRecording (8.0 - 8000.4.6) <CDAAAD04-A1D0-3C67-ABCC-EFC9E8D44E7E> /System/Library/Frameworks/DiscRecording.framework/Versions/A/DiscRecording
    0x7fff85f6c000 -
    0x7fff86053ff7  libxml2.2.dylib (26) <A1DADD11-89E5-3DE4-8802-07186225967F> /usr/lib/libxml2.2.dylib
    0x7fff86054000 -
    0x7fff86145ff9  libiconv.2.dylib (41) <BB44B115-AC32-3877-A0ED-AEC6232A4563> /usr/lib/libiconv.2.dylib
    0x7fff86146000 -
    0x7fff8619eff7  com.apple.Symbolication (1.4 - 129) <16D42516-7B5E-357C-898A-FAA9EE7642B3> /System/Library/PrivateFrameworks/Symbolication.framework/Versions/A/Symbolicat ion
    0x7fff8619f000 -
    0x7fff861e6ff7  libcups.2.dylib (372.2) <37802F24-BCC2-3721-8E12-82B29B61B2AA> /usr/lib/libcups.2.dylib
    0x7fff861e7000 -
    0x7fff861e7fff  com.apple.Accelerate (1.9 - Accelerate 1.9) <509BB27A-AE62-366D-86D8-0B06D217CF56> /System/Library/Frameworks/Accelerate.framework/Versions/A/Accelerate
    0x7fff861e8000 -
    0x7fff861eafff  com.apple.SecCodeWrapper (3.0 - 1) <DE7CA981-2B8B-34AC-845D-06D5C8F10441> /System/Library/PrivateFrameworks/SecCodeWrapper.framework/Versions/A/SecCodeWr apper
    0x7fff861eb000 -
    0x7fff861f5ff7  com.apple.CrashReporterSupport (10.9 - 538) <B487466B-3AA1-3854-A808-A61F049FA794> /System/Library/PrivateFrameworks/CrashReporterSupport.framework/Versions/A/Cra shReporterSupport
    0x7fff861f6000 -
    0x7fff862fcff7  com.apple.ImageIO.framework (3.3.0 - 1042) <6101F33E-CACC-3070-960A-9A2EA4BC5F44> /System/Library/Frameworks/ImageIO.framework/Versions/A/ImageIO
    0x7fff862fd000 -
    0x7fff862ffff7  libquarantine.dylib (71) <7A1A2BCB-C03D-3A25-BFA4-3E569B2D2C38> /usr/lib/system/libquarantine.dylib
    0x7fff86300000 -
    0x7fff86302fff  libRadiance.dylib (1042) <B91D4B97-7BF3-3285-BCB7-4948BAAC23EE> /System/Library/Frameworks/ImageIO.framework/Versions/A/Resources/libRadiance.d ylib
    0x7fff86303000 -
    0x7fff8630dfff  libcommonCrypto.dylib (60049) <8C4F0CA0-389C-3EDC-B155-E62DD2187E1D> /usr/lib/system/libcommonCrypto.dylib
    0x7fff8630e000 -
    0x7fff86355fff  libFontRegistry.dylib (127) <A77A0480-AA5D-3CC8-8B68-69985CD546DC> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ATS.framework/Versions/A/Resources/libFontRegistry.dylib
    0x7fff86c41000 -
    0x7fff86ed2fff  com.apple.RawCamera.bundle (5.04 - 736) <0C8A3629-BEAC-34A7-A3A3-B9AF4B3AB4B4> /System/Library/CoreServices/RawCamera.bundle/Contents/MacOS/RawCamera
    0x7fff86ed6000 -
    0x7fff86efcfff  com.apple.iCalendar (7.0 - 162) <2B270453-6FFD-3AD3-B40B-51715BE66B33> /System/Library/PrivateFrameworks/iCalendar.framework/Versions/A/iCalendar
    0x7fff86efd000 -
    0x7fff86f0eff7  libz.1.dylib (53) <42E0C8C6-CA38-3CA4-8619-D24ED5DD492E> /usr/lib/libz.1.dylib
    0x7fff86f1e000 -
    0x7fff86f43ff7  com.apple.CoreVideo (1.8 - 117.2) <4674339E-26D0-35FA-9958-422832B39B12> /System/Library/Frameworks/CoreVideo.framework/Versions/A/CoreVideo
    0x7fff86f44000 -
    0x7fff86fa6ff7  com.apple.WhitePagesFramework (10.7.0 - 141.0) <F95E1174-37B7-300C-8ECE-E67A711B6721> /System/Library/PrivateFrameworks/WhitePages.framework/Versions/A/WhitePages
    0x7fff86fa7000 -
    0x7fff87165fff  com.apple.GeoServices (1.0 - 702.15.12) <5A4D463F-689F-3822-BF26-A19D51503019> /System/Library/PrivateFrameworks/GeoServices.framework/Versions/A/GeoServices
    0x7fff87166000 -
    0x7fff87296ff7  com.apple.desktopservices (1.8.2 - 1.8.2) <76D6ED93-9D5A-3941-8B88-A1773290AE74> /System/Library/PrivateFrameworks/DesktopServicesPriv.framework/Versions/A/Desk topServicesPriv
    0x7fff87297000 -
    0x7fff8729afff  libCoreVMClient.dylib (58.1) <EBC36C69-C896-3C3D-8589-3E9023E7E56F> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libCoreVMClien t.dylib
    0x7fff872a6000 -
    0x7fff872adfff  com.apple.NetFS (6.0 - 4.0) <8E26C099-CE9D-3819-91A2-64EA929C6137> /System/Library/Frameworks/NetFS.framework/Versions/A/NetFS
    0x7fff872f5000 -
    0x7fff87417ff1  com.apple.avfoundation (2.0 - 651.12) <5261E6EA-7476-32B2-A12A-D42598A9B2EA> /System/Library/Frameworks/AVFoundation.framework/Versions/A/AVFoundation
    0x7fff87418000 -
    0x7fff87420fff  libMatch.1.dylib (19) <021293AB-407D-309A-87F5-8E782F46753E> /usr/lib/libMatch.1.dylib
    0x7fff87421000 -
    0x7fff87426fff  com.apple.DiskArbitration (2.6 - 2.6) <A4165553-770E-3D27-B217-01FC1F852B87> /System/Library/Frameworks/DiskArbitration.framework/Versions/A/DiskArbitration
    0x7fff87427000 -
    0x7fff87428fff  liblangid.dylib (117) <9546E641-F730-3AB0-B3CD-E0E2FDD173D9> /usr/lib/liblangid.dylib
    0x7fff87429000 -
    0x7fff874a9fff  com.apple.CoreSymbolication (3.0 - 141) <B018335C-698B-3F87-AF1C-6115C4FA8954> /System/Library/PrivateFrameworks/CoreSymbolication.framework/Versions/A/CoreSy mbolication
    0x7fff874b0000 -
    0x7fff8759afff  libsqlite3.dylib (158) <00269BF9-43BE-39E0-9C85-24585B9923C8> /usr/lib/libsqlite3.dylib
    0x7fff87600000 -
    0x7fff87612fff  com.apple.ImageCapture (9.0 - 9.0) <BE0B65DA-3031-359B-8BBA-B9803D4ADBF4> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/ImageCapture. framework/Versions/A/ImageCapture
    0x7fff87613000 -
    0x7fff8769cfff  com.apple.ColorSync (4.9.0 - 4.9.0) <B756B908-9AD1-3F5D-83F9-7A0B068387D2> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ColorSync.framework/Versions/A/ColorSync
    0x7fff8769d000 -
    0x7fff876b9ff7  libsystem_kernel.dylib (2422.90.20) <20E00C54-9222-359F-BD98-CB79ABED769A> /usr/lib/system/libsystem_kernel.dylib
    0x7fff876ba000 -
    0x7fff876bbffc  com.apple.SafariServices.framework (9537 - 9537.75.14) <9FFC409C-7FF7-3BA5-8C7E-4A1625D76BBD> /System/Library/PrivateFrameworks/SafariServices.framework/Versions/A/SafariSer vices
    0x7fff876bc000 -
    0x7fff876c7fff  libkxld.dylib (2422.90.20) <EF476345-7A69-3AC0-95ED-0196FB8910CB> /usr/lib/system/libkxld.dylib
    0x7fff876c8000 -
    0x7fff879c6fff  com.apple.Foundation (6.9 - 1056.13) <2EE9AB07-3EA0-37D3-B407-4A520F2CB497> /System/Library/Frameworks/Foundation.framework/Versions/C/Foundation
    0x7fff879c7000 -
    0x7fff879d3ff7  com.apple.CalendarAgentLink (7.0 - 138) <B8B63D14-D853-3478-B001-BC67B7E9F993> /System/Library/PrivateFrameworks/CalendarAgentLink.framework/Versions/A/Calend arAgentLink
    0x7fff87a08000 -
    0x7fff87acaff5  com.a

    Remove Spigot.
    http://www.thesafemac.com/arg-spigot/

  • I have copied my CDs into iTunes  (currently running v11) to play on my iPod.  I have now bought a non Apple mp3 player to use when I am out running.  How can I copy the many tracks I want from iTunes onto the new player?

    I have copied my CDs into iTunes  (currently running v11) to play on my iPod.  I have now bought a non Apple mp3 player to use when I am out running.  How can I copy the many tracks I want from iTunes onto the new player?
    Thanks

    I tried Notpod but can't get it to work.  Part of the problem, I suspect, is that I can't create a folder on my player (a SanDisk Clip+).  I also can't do this in Windows Explorer.  Whilst I can see the Clip+ in Explorer, the option to create a new folder isn't there.
    The error mesag I get in Notpod is:
    "Unhandled exception has occurred in your application.  If you click Continue, the application will ignore this error and attempt to continue.  If you click Quit the application will close immediately.
    InvalidArgument=Value of '0' is not valid for 'SelctedIndex'. Parameter name: SelectedIndex"
    Then, when I plug the Clip+ into a USB port, iTunes thinks it is my iPad - which is because, I guess, Notpod hasn't worked.
    I can drag and drop files from the Music folder where my iTunes tracks are stored onto the Clip+ and they get converted but I'd rather synchronise a Playlist from iTunes if I can.
    Thanks anyone who can help

  • I need to reinstall my Canon Pixma Pro 9500 MK 2 printer on my iMac running Mavericks. It looks for software but Apple cannot find. The driver is available on my computer. Is there a way I can force the installer to use the available driver?

    I need to reinstall my Canon Pixma Pro 9500 MK 2 printer on my iMac running Mavericks. It looks for software but Apple cannot find. The driver is available on my computer. Is there a way I can force the installer to use the available driver?

    I need to reinstall my Canon Pixma Pro 9500 MK 2 printer on my iMac running Mavericks. It looks for software but Apple cannot find. The driver is available on my computer. Is there a way I can force the installer to use the available driver?

  • Error while trying to install NI-VISA driver on SUSE LINUX 11.1(The version of gcc in the path does not match the version of gcc used to compile the currently running kernel.)

    hi i am trying to install NI-VISA driver on SUSE LINUX 11.1.
     the error message it shows is
              ******************************** ERROR ****************************************
    * The version of gcc in the path does not match the version of gcc used to    *
    * compile the currently running kernel.  This can cause unpredictable         *
    * behavior in kernel drivers and should be fixed.                             *
    * gcc version: Linux)                                                          *
    * kernel compiled with: 4.3.2                                                 *
    ******************************** ERROR ****************************************
    my kernel source version is 
       linux-8nes:/home/admin # rpm -qi kernel-source
    Name        : kernel-source                Relocations: /usr/src
    Version     : 2.6.27.29                         Vendor: openSUSE
    Release     : 0.1.1                         Build Date: Sun 16 Aug 2009 03:43:52 PM IST
    Install Date: Sat 24 Oct 2009 02:13:12 AM IST      Build Host: rinck
    Group       : Development/Sources           Source RPM: kernel-source-2.6.27.29-0.1.1.src.rpm
    Size        : 309251954                        License: GPL v2 only
    Signature   : RSA/8, Sun 16 Aug 2009 03:57:25 PM IST, Key ID b88b2fd43dbdc284
    Packager    : http://bugs.opensuse.org
    URL         : http://www.kernel.org/
    Summary     : The Linux Kernel Sources
    Description :
    Linux kernel sources with many fixes and improvements.
    Authors:
        Linus Torvalds <[email protected]>
        see /usr/src/linux/CREDITS for more details.
    Source Timestamp: 2009-08-15 17:53:59 +0200
    GIT Revision: 8a413546901c407e96f7fba18574cceeb40452af
    GIT Branch: SLE11_BRANCH
    Distribution: openSUSE 11.1 
    i had also installed GCC 4.3.2.
    it shows the error message as i had posted.
    please kindly help me on this.
    Thanks and regards,
    P.karthick

    Check this solution

  • I currently run Windows 7 on my iMac using the Parallels software on a Virtual Machine. I now wish to use Windows through bootcamp. How do I remove windows from the Virtual Machine

    I currently run Windows 7 on my Imac through a Virtual Machine format with the Parallels software. I now wish to remove Windows from the VM restore the Hard Drive to a single partition then install windows 7 using bootcamp. How do I go about it

    The virtual machine isn't a partition on your hard drive, it's just a file. You can delete the vm by going into Paralells preferences or just drag t to the trash. Bootcamp will partition your hard drive for a Win 7 install.

Maybe you are looking for

  • SharePoint 2010, unable to see the site vertical scroll bar in Safari and Mozilla Firefox

    Hi, I am not able to see the sharepoint site vertical scroll bar in Safari and Mozilla firefox in window OS as well as  Mac OS , even I have tried with various option of the browser but still not able to see the vertical scroll bar. I have tried to c

  • Using XML functions in SQL Developer

    Hi, I'm using OSD 1.5.3 on a WinXP machine. I love OSD and use it every day! But I think i found a little bug. When you use some Oracle XML functions like (XMLELEMENTS and XMLAGG) in your query (these functions return CLOB values) it hangs OSD. For E

  • Save option enabling  in spool created from sap script.

    Hi, I got a requirement where in the output letter created using sap script, needs to be saved on local desktop. when the form is displayed from sp02 the save button is greyed out and also the path system->list->save option is also disabled. in foreg

  • Is is possible to use the iMac g3 without a mouse

    Have a iMac g3 and wanted to know if I can access anything without a mouse, until I can find an original one. Thank you

  • Huge CPU temperature, low fan rpm, is it normal?

    Hello! I'm a new mac user, I have a new macbook 2.0Ghz, 4GB Ram and a hdd 160Gb. I compared the temperatures of my mac with other macs and my values are huge. In normal CPU usage I get 60ºC, but when I turn on my virtual machine the CPU temp can go t