Is there a  MySQL Guru out there?

FROM timesheets
WHERE shCOMPID = colname
ORDER BY shWEEKENDING DESC
SELECT DISTINCT (shWEEKENDING)
FROM timesheets
WHERE shCOMPID = colname
Hi,
I have a table of employee Timesheets that have a pk,
companyID and EmployeeID and a weekending (YYYY-MM-DD)
I am using a session variable 'kt_client' (= to CompanyID) as
part of the login.
I am trying to gain a recordset that returns only the
distinct week endings for a particular company
so:
tsID 1, compID 2, empID 1, weekend 2007-01-19
tsID 2, compID 2, empID 5, weekend 2007-01-19
tsID 3, compID 1, empID 9, weekend 2007-01-12
tsID 4, compID 2, empID 11, weekend 2007-01-26
tsID 5, compID 2, empID 1, weekend 2007-01-26
tsID 6, compID 2, empID 5, weekend 2007-01-26
tsID 7, compID 1, empID 3, weekend 2007-01-05
would be output as:
weekend 2007-01-19
weekend 2007-01-26
I've tried:
SELECT DISTINCT (shWEEKENDING)
FROM timesheets
WHERE shCOMPID = colname
(colname being the session vaiable)
but it doesn't work...can anyone please offer a
solution?

I upgraded from OS X 10.4.1 to Snow Leopard 10.6.8. After lots of application problems I took the computer to the Genius Bar. The computer upgrade was given the "thumbs up". They said the problems are with licensing issues with Adobe Creative Suite 4. The other application problems could be resolved by just uninstalling Microsoft Office and reinstalling it. The Microsoft Office reinstall seems to have gone well, however it is still slow to open and the color wheel spun extra-long on this morning's first opening.
We are operating two accounts on our one Mac Pro computer. Since the upgrade, we can not both have an Adobe application open at the same time. They work fine when only opened on one desktop, but we get an "ATM Subsystem Failure" notice when the program attempts to open on the other desktop. I've spent many hours on the phone with Adobe, they helped me remotely to reinstall CS4, but the problem remains. Finally, last night, the tech guy said that it has to be an Operating System failure and to take the computer back to Apple.
Frustration prompted my writing. I have a call in to someone local who may be able to help, who knows!

Similar Messages

  • Is there a Mac / Flash guru out there?

    Hi all,
    I've searched and posted at Mozilla forums, I've searched and
    posted at Mac forums, but this problem I have seems to be unique
    and it just doesn't go away. Flash player isn't working on my
    MacBook Pro with OS X 10.4.8. I really want to understand this
    problem and fix it, rather than having to totally reinstall my
    entire system and not ever know what happened. I really hope and
    pray there's someone here who knows how to fix this, because I've
    ran out of ideas, and I'm
    not a n00b!
    Please check these threads I started:
    Apple >
    http://discussions.apple.com/thread.jspa?threadID=769826&tstart=0
    Mozilla >
    http://forums.mozillazine.org/viewtopic.php?p=2658557#2658557
    btw: it's
    not a Firefox specific problem, it also happens in Safari
    and others browsers I use; the standalone player is working just
    fine, but the browsers are just not picking it up and even tell me
    the Flash player is an unknown plugin!
    Oh smart people of the world ... enlighten me!

    This is the same problem I'm having. Flash worked fine on
    websites until I downloaded the Flash 8 Trial, which I'm guessing
    upgraded Flash Player to the latest version, which is not
    compatible with MacBook. There is no way to get the Flash Player
    version that came installed on the computer unless you find someone
    with a MacBook and can drag and drop their files onto your
    computer. I know that worked for a few people but I haven't tried
    it yet.
    I've also tried downloading some older versions of Flash
    Player, and that doesn't work either.

  • Here's a stumper for that Mac Guru out there

    I have a VoIP system through Sunrocket. It's a prett good service. The main problem is, when I try to view my voicemail online, it says it's there, but it's not. It doesn't matter what browser I use, I've tried a lot of them including IE 5. I also have a Mac Help Login where there is nothing installed so it's a clean login to do troubleshooting. The same thing happens there.
    I have a Mac Mini (Intel) and it works fine there.
    The only requirement is Java and cookies enable. My computer is completely up-to-date and I can't seem to figure this one out. Here is the image of what I'm talking about:
    http://www.sunrocketforum.com/files/picture_351.jpg
    Again this only happens on my G5, any ideas?

    I appreciate your help. My pea-brain isn't capable of figuring it out either, that's why I'm here.
    As for taking the Mini offline, I actually had this problem before I even bought the Mini, so it's not really an issue. It can also happen if the Mini is completely turned off.
    Sunrocket doesn't have a clue. It was suggested I sign up for service at uReach.com (not suggested from Sunrocket) because they have the same program structure. The person told me I would probably have the same problem but their tech support should be better equipped to handle this. I tried the uMessage service they offer and it did duplicate the exact same problem as the Sunrocket's service. I called their tech support and they were clueless too.
    I'm baffled at this one and am not sure if there is something in the processor chip that's a problem or if there is something that needs "unlocked" on my mac? Anway, thanks again for the help.

  • Any java.nio guru out there ?

    Hi help,
    I'm studying new java.io classes. I've compiled and learnt
    a basic server like this...
    import java.io.*;
    import java.net.*;
    import java.nio.*;
    import java.nio.channels.*;
    import java.util.*;
    public class Server {
       private static int port = 9999;
       public static void main(String args[])
         throws Exception {
         Selector selector = Selector.open();
         ServerSocketChannel channel =
           ServerSocketChannel.open();
         channel.configureBlocking(false);
         InetSocketAddress isa = new InetSocketAddress(port);
         channel.socket().bind(isa);
         // Register interest in when connection
         channel.register(selector, SelectionKey.OP_ACCEPT);
         // Wait for something of interest to happen
         while (selector.select() > 0) {
           // Get set of ready objects
           Set readyKeys = selector.selectedKeys();
           Iterator readyItor = readyKeys.iterator();
           // Walk through set
           while (readyItor.hasNext()) {
             // Get key from set
             SelectionKey key =
               (SelectionKey)readyItor.next();
             // Remove current entry
             readyItor.remove();
             if (key.isAcceptable()) {
               // Get channel
               ServerSocketChannel keyChannel =
                 (ServerSocketChannel)key.channel();
               // Get server socket
               ServerSocket serverSocket = keyChannel.socket();
               // Accept request
               Socket socket = serverSocket.accept();
               // Return canned message
               PrintWriter out = new PrintWriter
                 (socket.getOutputStream(), true);
               out.println("Hello, NIO");
               out.close();
             } else {
               System.err.println("Ooops");
         // Never ends
    } now I'd like to write a Proxy Server. In other
    words the Server must
    1. listen for a request
    2. forward the request to another server
    3. listen its reply
    4. forward it back to the original caller.
    I've tried to modify the basic class but with no success....
    unfortunately I'm not that smart with these new Apis.
    anybody can give me some guidelines about how should I
    struct it ?
    Thanks a lot
    Francesco

    Not a guru but I'll offer some suggestions. Are these persistent connections to the proxy, or is a connection made per request? You'll probably do things a little bit differently in the two different cases.
    In general though, you can have one thread running a request dispatcher which accepts incoming connections and puts read ready channels on a queue. Another thread(or threads) can take requests off the queue and process them. Also, when you accept new connections, I think its better to do it through channels, rather than work directly with the socket. Something like this:
    SocketChannel clientChannel = serverChannel.accept();
    clientChannel.configureBlocking(false);
    SelectionKey newReadKey = clientChannel.register(selector, SelectionKey.OP_READ);
    Where are you getting into problems?

  • MySQL broken out of the box - error 2002.

    MySQL is broken out of the box - 10.5.2 server. Brand new Xserve, an untouched OS X Server installation, no tinkering was done *at all*.
    Here's what I did:
    1. Opened Server Admin.
    2. Added MySQL service.
    3. Went to Settings.
    4. Changed "Database location" to be on another, faster drive in the Xserve.
    5. Clicked "Start MySQL" button
    6. Opened Terminal, typed in "mysql" and hit Return.
    What do I get?
    ERROR 2002 (HY000): Can't connect to local MySQL server through socket '/var/mysql/mysql.sock' (2)
    There's no mysql.sock file there, nor in /temp. Running lsof while the mysql daemon is "started up" shows there is a mysql.sock file in /var/mysql though. Very odd.
    Any ideas? I'd like to avoid rolling my own install of MySQL, and stick with the built-in version.

    Might [http://docs.info.apple.com/article.html?artnum=302977|http://docs.info.apple.c om/article.html?artnum=302977] help here? That's for Mac OS X Server Tiger 10.4.4 and not Leopard 10.5 yes, but looks applicable here.
    And FWIW, this basic case is fairly standard MySQL socket behavior on various platforms. That the GUI apparently allowed you to shoot yourself in the foot here is another discussion.

  • (solved)MySQL running out of connections...

    Hi,
    Not really a _problem_ as such, but I may have to look into this in the (near?) future, if my project goes live...
    I have an Applet that shows data from a server (on my network) - if I turn off the applet (stop Firefox all the way) and re-connect and do that several times, the server has "too many connections" and (obviously) will refuse to serve any further.
    Is there a way to effectively kill a connection?
    There is (scetchy) what I do at "unload"
    try
    cn.close();
    cn = null;
    catch(exception e)
    // no need to handle this?
    Fair enuff, the Applet does release the connection, but something still "lingers" on in the server...how do I clean that up as well?
    Any thoughts are welcome...no pressure here...
    Coolness to all
    Thor
    Edit - not really solved, but more "timed out"...
    Last edited by Thor@Flanders (2010-12-10 12:43:21)

    Hi Skunktrader,
    Nope, the exception still happens. I'll set up the server to do a garbage collect. And redirect the closing page/applet to a close page where I'd run a PHP script to close mysql down...by means of cleaning up...
    The thing is, if/when I wait a while, the exception does not manifest itself and the applet does start up. As if the server needs time to clean up...something I want to force it doing...right away.
    More to follow
    Thor
    Edit1 : still no luck - of course, the server is a recycled PC (256Mb ram) and CentOS 5.2, still more than 20Gb disk left. But... I am the only one on this thing...
    Any (I really mean ANY) thoughts (no matter how funny or off-topic, I could use SOME feedback here) are more than welcome...
    Edit2 : is it normal that my local JVM just ... stops? I've set the thing to display the console, just to see anything locally getting lost in the fog, but the panel stops, after a "ps -A" there is no more JVM inthe shop...
    I have to restart the applet several times to get it working, of course, every attempt leaves its marks on the server in still-open connections...
    I still invite ANYONE for thoughts, inputs, off-topics, ...
    Last edited by Thor@Flanders (2010-12-05 17:59:40)

  • MySQL duplicate entry deletion in 5.5.9

    Hey all,
    I've noticed that in the newest MySQL, I can no longer do:
    ALTER TABLE test ADD UNIQUE INDEX unique_index (id);
    ALTER TABLE test DROP INDEX unique_index;
    to remove duplicates. I get the following error:
    ERROR 1062 (23000): Duplicate entry '3' for key 'unique_index']
    This worked fine before the major SQL upgrade. It also works fine on version 5.1.52 on my web host.  I searched through the 5.5.9 release notes and I didn't see anything that should have changed this, but I'm no MySQL guru! Is this a feature or a bug? Any alternate suggestions for deleting duplicates that will work on this version and older versions of MySQL?
    Thanks!
    Scott
    Edit: Just for clarity, the table I'm working on has a single primary key column (UNIQUE_KEY) (with 80+ other data columns) and I'm only detecting the duplicate row based on the value of the primary key column.
    Last edited by firecat53 (2011-02-25 03:33:30)

    Alright, since I was apparently sucked in by this particular method the first time I googled the answer, care to enlighten me on the 'more practical' non-joke methods, as there appears to be more than one option.
    Also, why is that a joke of a feature? Like I said, I'm no MySQL guru so I'm ready to learn!
    Thanks,
    Scott
    edit: is this a 'more practical' method? It's hard when you're learning on your own to sort out the good from the bad sometimes
    edit2: using the above method with this table:
    +------+------+-------+
    | id | data | data1 |
    +------+------+-------+
    | 1 | 10 | 100 |
    | 2 | 100 | 1000 |
    | 3 | 1000 | 500 |
    | 3 | 1000 | 500 |
    +------+------+-------+
    and this query:
    delete test from test left outer join (select min(id) as RowID, id from test group by id) as KeepRows on test.id=KeepRows.RowID where KeepRows.RowID is null;
    I can't quite get it to work...it doesn't delete any rows. What am I missing there?
    edit3: This method works -- is it a 'good' method or should I be looking at something different? Again, I'm just matching on duplicates in the primary key column (before the primary key is assigned):
    create table test1 like test;
    insert into test1 select * from test group by id;
    drop table test;
    rename table test1 to test;
    Last edited by firecat53 (2011-02-25 03:55:10)

  • Connecting to a Mysql database using CF Administrator and DW

    I can't create a mysql datasource in CF Administrator.
    If I use the following datasource settings in CF
    Administrator:
    JDBC URL: jdbc:mysql://localhost:3306/test
    Drive Class: MySQL Connector J
    AND (note the emphasis) I set my local and remote folders in
    my DW site local folder, remote folder and testing server folders
    all to C:\CFusionMX\db\, I can connect to my mysql database in CF
    Administrator.
    However, with these DW site folder settings, DW doesn't
    recognize any databases (Access or Mysql) at all.
    When I change my DW site folder settings to 'wwwroot'
    (e.g.local folder C:\CFusionMX\db\' is changed to
    'C:\CFusionMX\wwwroot') DW now lists all my CF Administrator
    databases.
    The problem is CF Administrator can't connect to my Mysql
    data sources. It gives me the error:
    "Connection verification failed for data source: javaserver
    []java.sql.SQLException: SQLException occurred in JDBCPool
    while attempting to connect, please check your username, password,
    URL, and other connectivity info.
    The root cause was that: java.sql.SQLException: SQLException
    occurred in JDBCPool while attempting to connect, please check your
    username, password, URL, and other connectivity info"
    I've tried changing the 3306 port to 8500, but this doesn't
    help.
    My java path and connector file is:
    C:\CFusionMX\wwwroot\WEB-INF\lib\mysql-connector-java-3.0.17-ga-bin.jar,
    Is this a ID/password problem? I've tried both 'root' and
    leaving the ID field in the CF Administrator add data source block,
    both to no avail. I don't have a password set in Mysql for 'root'
    either.
    Any help would be gratefully appreciated. I've been working
    on this for weeks and keep running into one problem after another.
    Thanks a million in advance.
    Sincerely,
    Graham A. Kerby

    1) ensure mysql server is running
    2) there are numerous tutorials for mysql installation out
    there
    3) there are good free mysql admin tools out there
    4) use both the above to verify your mysql installation is
    correct
    5) please tell me you do have your zonealarm DISABLED
    hth
    Azadi Saryev
    Sabai-dee.com
    http://www.sabai-dee.com

  • Weird problem with mysql query and data table buttons !!!!

    Hi,
    I'm using jsc 2 update 1 on windows and mysql 4.1 . I have a page with a data table. One column of the data table contains "Details" buttons.
    Source query for the table is :
    SELECT tbl_tesserati.idtbl_tesserati idTesserato,
    tbl_tesserati.num_tessera,
    tbl_tesserati.nome,
    tbl_societa.codice_meccanografico
    FROM tbl_tesserati
    INNER JOIN tbl_rel_tesserato_discipline_societa ON tbl_tesserati.idtbl_tesserati = tbl_rel_tesserato_discipline_societa.id_tesserato
    INNER JOIN tbl_cariche ON      tbl_rel_tesserato_discipline_societa.id_carica = tbl_cariche.idtbl_cariche
    INNER JOIN tbl_qualifiche ON      tbl_rel_tesserato_discipline_societa.id_qualifica = tbl_qualifiche.idtbl_qualifiche
    INNER JOIN tbl_discipline ON      tbl_rel_tesserato_discipline_societa.id_disciplina = tbl_discipline.idtbl_discipline
    INNER JOIN tbl_societa ON      tbl_rel_tesserato_discipline_societa.id_societa = tbl_societa.idtbl_societa
    LEFT JOIN tbl_province ON tbl_societa.provincia_sede_sociale = tbl_province.idtbl_province
    LEFT JOIN tbl_comuni ON tbl_societa.comune_sede_sociale = tbl_comuni.idtbl_comuni
    LEFT JOIN tbl_rel_tesserato_discipline_praticate ON tbl_rel_tesserato_discipline_praticate.tessera_id=
    tbl_rel_tesserato_discipline_societa.idtbl_rel_tesserato_discipline
    LEFT JOIN tbl_discipline_praticate ON tbl_discipline_praticate.idtbl_disciplina_praticate=tbl_rel_tesserato_discipline_praticate.disciplina_praticata_id
    WHERE
    tbl_tesserati.cognome LIKE ?
    AND tbl_tesserati.nome LIKE ?
    AND tbl_rel_tesserato_discipline_societa.id_societa LIKE ?
    AND tbl_tesserati.idtbl_tesserati LIKE ?
    AND tbl_cariche.idtbl_cariche LIKE ?
    AND tbl_qualifiche.idtbl_qualifiche LIKE ?
    AND tbl_tesserati.data_nascita >= ?
    AND tbl_tesserati.data_nascita<= ?
    AND tbl_discipline.idtbl_discipline LIKE ?
    AND codice_affiliazione LIKE ?
    AND tbl_societa.denominazione LIKE ?
    AND YEAR(tbl_rel_tesserato_discipline_societa.data_scadenza) LIKE ?
    AND (tbl_province.nome LIKE ? OR tbl_province.nome IS NULL)
    AND ( tbl_comuni.nome LIKE ? OR tbl_comuni.nome IS NULL)
    The tbl_tesserati.data_nascita is a mysql date field.
    The click event handler code for the "Details" Button is:
    public String btnModificaTesserato_action() {
            try{
                TableRowDataProvider rowData= (TableRowDataProvider)getBean("currentRowTesserati");
                getRequestBean1().setId_tesserato((Long)rowData.getValue("idTesserato"));          
            } catch(Exception ex) {
                log("errore nella query",ex);
            return "dettaglioTesseratoSocieta";
        }When i run the project and open the page the table is correctly rendered and populated with some rows. But when i click on details button nothing happens, the page is simply reloaded.
    If i set a breakpoint in the code line   TableRowDataProvider rowData= (TableRowDataProvider)getBean("currentRowTesserati");the debbuger does not stop the code execution ! As if the button was never clicked!
    I tried to modify the source query to :
    SELECT tbl_tesserati.idtbl_tesserati idTesserato,
    tbl_tesserati.num_tessera,
    tbl_tesserati.nome,
    tbl_societa.codice_meccanografico
    FROM tbl_tesserati
    INNER JOIN tbl_rel_tesserato_discipline_societa ON tbl_tesserati.idtbl_tesserati = tbl_rel_tesserato_discipline_societa.id_tesserato
    INNER JOIN tbl_cariche ON      tbl_rel_tesserato_discipline_societa.id_carica = tbl_cariche.idtbl_cariche
    INNER JOIN tbl_qualifiche ON      tbl_rel_tesserato_discipline_societa.id_qualifica = tbl_qualifiche.idtbl_qualifiche
    INNER JOIN tbl_discipline ON      tbl_rel_tesserato_discipline_societa.id_disciplina = tbl_discipline.idtbl_discipline
    INNER JOIN tbl_societa ON      tbl_rel_tesserato_discipline_societa.id_societa = tbl_societa.idtbl_societa
    LEFT JOIN tbl_province ON tbl_societa.provincia_sede_sociale = tbl_province.idtbl_province
    LEFT JOIN tbl_comuni ON tbl_societa.comune_sede_sociale = tbl_comuni.idtbl_comuni
    LEFT JOIN tbl_rel_tesserato_discipline_praticate ON tbl_rel_tesserato_discipline_praticate.tessera_id=
    tbl_rel_tesserato_discipline_societa.idtbl_rel_tesserato_discipline
    LEFT JOIN tbl_discipline_praticate ON tbl_discipline_praticate.idtbl_disciplina_praticate=tbl_rel_tesserato_discipline_praticate.disciplina_praticata_id
    WHERE
    tbl_tesserati.cognome LIKE ?
    AND tbl_tesserati.nome LIKE ?
    AND tbl_rel_tesserato_discipline_societa.id_societa LIKE ?
    AND tbl_tesserati.idtbl_tesserati LIKE ?
    AND tbl_cariche.idtbl_cariche LIKE ?
    AND tbl_qualifiche.idtbl_qualifiche LIKE ?
    AND tbl_tesserati.data_nascita >= ?
    OR tbl_tesserati.data_nascita<= ?
    AND tbl_discipline.idtbl_discipline LIKE ?
    AND codice_affiliazione LIKE ?
    AND tbl_societa.denominazione LIKE ?
    AND YEAR(tbl_rel_tesserato_discipline_societa.data_scadenza) LIKE ?
    AND (tbl_province.nome LIKE ? OR tbl_province.nome IS NULL)
    AND ( tbl_comuni.nome LIKE ? OR tbl_comuni.nome IS NULL)
    Using this query everything works well !! The click handler works and the debugger too !!
    I changed only the AND in OR !!!
    I also tried to change mysql-x-x-connector driver but without solving my problem.
    Can someone help me ?
    Thanks
    Giorgio

    You'll find that it is more to do with the way MySql deals with dates than anything else! Depending on how your date field is setup, then try using a BETWEEN statement for those 2 lines in your first query e.g.
    AND ( tbl_tesserati.data_nascita BETWEEN ? AND ?)
    The date column needs to be in the ISO format to work. If you examine your second query output, you might discover that the output is only going to refer to one parameter (probably the OR one). Did you manage to view the output logs from the application server? You would have got an idea from there with a message like stating a conversion error'.
    Alternatively, you could try using the to_days() function and convert it directly to a number which would be a lot easier to deal with. For example:
    AND to_days(tbl_tesserati.data_nascita >= ? )
    AND to_days( tbl_tesserati.data_nascita<= ? )
    Or try the BETWEEN version with to_days() and see what you get.
    More info about date formatting (v5) here:
    http://dev.mysql.com/doc/refman/5.0/en/date-and-time-functions.html#function_to-days
    Before I forget, sometimes you may need to treat dates as Strings rather 'Long' as you did.
    As a matter of interest, did you try your query in a different piece of software?
    If my queries are a little more complicated, I tend to try MySql queries out in the free MySql query browser and also double check in another to verify certain issues. I found it easier to develop SQL in a seperate program then import the final version to JSC making the required modifications for parameters.
    Message was edited by:
    aerostra

  • Solaris 10 login problem. need guru's help.

    I posted the same question a few days ago. Mor than 150 persons reviewd it. But noone could answer my question. Is there real expert or guru out there to help me out? Here is the question again.
    I isntalled solaris 10 on Sun sparc 64 bit machine. I can login as root user through GUI or console. After I created an Oracle user, I only can login as that user from console window. I tried to login from GUI (CED) window, it failed. Anyone know about this, please help me to figure out the reason and the method to fix it. Thanks for your help.

    ls -l /u01/app/oracle
    ls -l /u01/app
    ls - /u01
    please
    alanAlan:
    Thanks for your help. Here is the information.
    # ls -al /u01/app/oracle
    total 8
    drwxrwxr-x 2 oracle oinstall 512 Dec 14 15:35 .
    drwxrwxr-x 3 oracle oinstall 512 Dec 14 15:00 ..
    -rw-r--r-- 1 oracle oinstall 511 Dec 14 16:21 .profile
    -rw------- 1 oracle oinstall 128 Dec 15 13:42 .sh_history
    # ls -al /u01/app
    total 6
    drwxrwxr-x 3 oracle oinstall 512 Dec 14 15:00 .
    drwxr-xr-x 4 root root 512 Dec 14 15:02 ..
    drwxrwxr-x 2 oracle oinstall 512 Dec 14 15:35 oracle
    # ls -al /u01
    total 8
    drwxr-xr-x 4 root root 512 Dec 14 15:02 .
    drwxr-xr-x 34 root root 1024 Dec 18 11:37 ..
    drwxrwxr-x 3 oracle oinstall 512 Dec 14 15:00 app
    drwxrwxr-x 2 oracle oinstall 512 Dec 14 15:02 oradata
    # ls -al
    total 510
    drwxr-xr-x 34 root root 1024 Dec 18 11:37 .
    drwxr-xr-x 34 root root 1024 Dec 18 11:37 ..
    drwxr-xr-x 12 root root 512 Dec 18 11:37 .dt
    -rwxr-xr-x 1 root root 5111 Dec 14 14:12 .dtprofile
    drwx------ 2 root root 512 Dec 15 16:02 .gconf
    drwx------ 2 root root 512 Dec 15 16:20 .gconfd
    drwx------ 3 root root 512 Dec 15 14:38 .gnome
    drwx------ 3 root root 512 Dec 14 14:34 .gnome2
    drwx------ 2 root root 512 Dec 14 14:34 .gnome2_private
    drwx------ 4 root root 512 Dec 14 14:34 .mozilla
    drwxr-xr-x 4 root root 512 Dec 14 15:25 .softwareupdate
    drwx------ 3 root root 512 Dec 14 12:00 .sunw
    -rw------- 1 root root 75 Dec 18 11:37 .TTauthority
    -rw------- 1 root root 161 Dec 18 11:37 .Xauthority
    lrwxrwxrwx 1 root root 9 Dec 14 11:39 bin -> ./usr/bin
    drwxr-xr-x 2 root root 512 Dec 14 14:44 cdrom
    drwxr-xr-x 20 root sys 4096 Dec 18 11:36 dev
    drwxr-xr-x 2 root sys 512 Dec 18 11:33 devices
    drwxr-xr-x 81 root sys 4608 Dec 18 11:34 etc
    drwxr-xr-x 3 root sys 512 Dec 14 11:39 export
    dr-xr-xr-x 1 root root 1 Dec 18 11:34 home
    drwxr-xr-x 14 root sys 512 Dec 14 11:48 kernel
    drwxr-xr-x 7 root bin 5120 Dec 14 13:13 lib
    drwx------ 2 root root 8192 Dec 14 11:38 lost+found
    drwxr-xr-x 2 root sys 512 Dec 14 11:39 mnt
    -rw-r--r-- 1 root root 846 Dec 15 11:00 mod_partition.txt
    dr-xr-xr-x 1 root root 1 Dec 18 11:34 net
    -rw-r--r-- 1 root root 0 Dec 14 11:50 noautoshutdown
    drwxr-xr-x 9 root sys 512 Dec 14 13:22 opt
    drwxr-xr-x 2 root root 512 Dec 15 15:08 Ora10DB
    drwxr-xr-x 51 root sys 2048 Dec 14 12:11 platform
    dr-xr-xr-x 62 root root 193216 Dec 18 11:53 proc
    drwxr-xr-x 2 root sys 1024 Dec 14 12:11 sbin
    drwxr-xr-x 4 root root 512 Dec 14 11:39 system
    drwxrwxrwt 7 root sys 843 Dec 18 11:37 tmp
    drwxr-xr-x 2 root root 512 Dec 14 14:12 TT_DB
    drwxr-xr-x 4 root root 512 Dec 14 15:02 u01
    drwxr-xr-x 40 root sys 1024 Dec 14 13:21 usr
    drwxr-xr-x 44 root sys 1024 Dec 14 14:12 var
    dr-xr-xr-x 6 root root 512 Dec 18 11:35 vol
    I have found some different in /u01 part, but not sure. Please advise.
    Also I set Oracle profile umask 022. Does this impact anything?
    Thanks.
    Message was edited by:
    duke0001

  • MySQL Data Source causes a "Failed to Generate Wrapper Class" error

    Hi all, I've created a MySQL datasource but when I make it the source for a EJB
    I get the error above. I think the error occurs during deployment, rather than
    while building. It seems to be having problems with the Data Source URL but I've
    checked the syntax and it all seems OK. When I use a WebLogic-supplied, PointBase
    datasource the deployment works OK, so it must be the way I've configured/built
    my datasource. Any areas I should check before I go further? I'm using 8.1 evaluation
    version. Thanks in advance, Roy.

    Thanks Flip, I tried your suggestion but I still get the same error. One bizarre
    thing is that if I use the"com/mysql/jdbc/Driver", I get a ClassDefinfitionNotFound
    error when installing the connection pool, but no such problem if use the traditional
    "org/gjt/mm/mysql/Driver". Using this I can at least create a data source but
    the class wrapper error is still there. Any more suggestions, anyone?
    "Flip" <[remove][email protected]> wrote:
    You'll have to go looking for the POINTBASE_HOME, POINTBASE_TOOL and
    POINTBASE_CLASSPATH. For me (running RH90), it's in my bea
    /weblogic81/common/bin/commEnv.sh. After you comment out those lines,
    you'll have to place your MySQL jar someplace. I'm not sure where's
    the
    recommended place (I've put mine into a /classes folder under my domains
    before) and then somewhere reference explicitly the MySQL jar file in
    the
    classpath.
    Then WLS will be able to find your MySQL drivers and your DS should fire
    up
    just great. Good luck.
    "Stephen Felts" <[email protected]> wrote in message
    news:[email protected]...
    1. Try moving mysql.jar out of jre\lib\ext.
    2. set PRE_CLASSPATH=directory\mysql.jar
    This is used in startWLS.cmd (take a quick look).
    "Roy Crosland" <[email protected]> wrote in message
    news:[email protected]...
    Thanks Stephen, but can you tell how I place the jar in the classpath?
    At
    the moment
    I have the line: "set
    CLASSPATH=%JAVA_HOME%\lib\tools.jar;%WL_HOME%\server\lib\weblogic_sp.jar;%WL
    >
    _HOME%\server\lib\weblogic.jar;%JAVA_HOME%\jre\lib\ext\mysql.jar;%CLASSPATH%
    in the startWLS.CMD file. Should I refer to the mysql.jar elsewhere?
    and
    is the
    jar file itself in the correct directory?
    "Stephen Felts" <[email protected]> wrote:
    You need to have the mysql jar in the server classpath.
    It needs to be before the Pointbase jar(s).
    "Roy Crosland" <[email protected]> wrote in message
    news:[email protected]...
    Hi all, I've created a MySQL datasource but when I make it the
    source
    for
    a EJB
    I get the error above. I think the error occurs during deployment,rather
    than
    while building. It seems to be having problems with the Data SourceURL
    but I've
    checked the syntax and it all seems OK. When I use a
    WebLogic-supplied,
    PointBase
    datasource the deployment works OK, so it must be the way I'veconfigured/built
    my datasource. Any areas I should check before I go further?
    I'm
    using
    8.1 evaluation
    version. Thanks in advance, Roy.

  • Swapped From Time Capsule TO Airport Express - Constant Drop Outs

    I recently switched my main network from Time Capsule to my Airport Express so I could play music etc... But since then every few hours I'll get an error saying the Time Capsule can't connect, then maybe 20 minutes later both the Airport Express and Time Capsule eventually start flashing yellow... If I leave it all overnight it just seems to fix itself or if I turn it off/on it all fixes itself... I have always had strange issues with Airport Express even one I had 2 years ago... But Time Capsule when I bought it I never had any dramas, the only reason I switched is so I could listen to music wirelessly... Are there any settings in Airport Express that I would need to look at? And also do I need to update any of my settings in Time Capsule to make it work better with Airport Express?

    These are the logs if there is a guru out there who can see an issue would be much appreciated!
    Jun 26 04:41:49 Severity:5 Initialized (firmware 7.3.2).
    Jun 26 04:41:51 Severity:3 No Address for NTP server time.apple.com.
    Jun 26 04:41:51 Severity:5 Deauthenticating with station ff:ff:ff:ff:ff:ff (reserved 3).
    Jun 26 04:41:51 Severity:5 Rotated TKIP group key.
    Jun 26 04:41:55 Severity:5 Internet Configuration leased -- host <10.1.1.2/255.0.0.0> gateway <10.1.1.1> dns <10.1.1.1> wins lease <3600> domain
    Jun 26 04:42:00 Severity:5 Associated with station 00:1c:b3:74:eb:01
    Jun 26 04:42:00 Severity:5 Installed unicast CCMP key for supplicant 00:1c:b3:74:eb:01
    Jun 26 04:42:06 Severity:3 No Address for NTP server time.apple.com.
    Jun 26 04:42:08 Severity:5 Associated with station 00:1f:f3:c3:3c:6a
    Jun 26 04:42:08 Severity:5 Installed unicast CCMP key for supplicant 00:1f:f3:c3:3c:6a
    Dec 05 00:16:00 Severity:5 Clock synchronized to network time server time.apple.com (adjusted +13977217 seconds).
    Dec 05 00:16:09 Severity:5 Rotated TKIP group key.
    Dec 05 00:17:36 Severity:5 Associated with station 00:21:e9:03:77:f7
    Dec 05 00:17:37 Severity:5 Installed unicast CCMP key for supplicant 00:21:e9:03:77:f7
    Dec 05 00:19:00 Severity:5 Disassociated with station 00:21:e9:03:77:f7
    Dec 05 00:19:00 Severity:5 Rotated TKIP group key.
    Dec 05 00:19:26 Severity:5 Associated with station 00:21:e9:03:77:f7
    Dec 05 00:19:26 Severity:5 Installed unicast CCMP key for supplicant 00:21:e9:03:77:f7
    Dec 05 00:25:04 Severity:5 Disassociated with station 00:21:e9:03:77:f7
    Dec 05 00:25:04 Severity:5 Rotated TKIP group key.
    Dec 05 00:28:17 Severity:5 Associated with station 00:21:e9:03:77:f7
    Dec 05 00:28:17 Severity:5 Installed unicast CCMP key for supplicant 00:21:e9:03:77:f7
    Dec 05 00:31:34 Severity:5 Disassociated with station 00:21:e9:03:77:f7
    Dec 05 00:31:34 Severity:5 Rotated TKIP group key.
    Dec 05 00:32:47 Severity:5 Associated with station 00:21:e9:03:77:f7
    Dec 05 00:32:47 Severity:5 Installed unicast CCMP key for supplicant 00:21:e9:03:77:f7
    Dec 05 00:33:12 Severity:5 Disassociated with station 00:21:e9:03:77:f7
    Dec 05 00:33:12 Severity:5 Rotated TKIP group key.
    Dec 05 00:34:16 Severity:5 Associated with station 00:21:e9:03:77:f7
    Dec 05 00:34:16 Severity:5 Installed unicast CCMP key for supplicant 00:21:e9:03:77:f7
    Dec 05 00:34:47 Severity:5 Disassociated with station 00:21:e9:03:77:f7
    Dec 05 00:34:48 Severity:5 Rotated TKIP group key.
    Dec 05 00:35:25 Severity:5 Associated with station 00:21:e9:03:77:f7
    Dec 05 00:35:25 Severity:5 Installed unicast CCMP key for supplicant 00:21:e9:03:77:f7
    Dec 05 00:36:01 Severity:5 Disassociated with station 00:21:e9:03:77:f7
    Dec 05 00:36:01 Severity:5 Rotated TKIP group key.
    Dec 05 00:41:24 Severity:5 Internet Configuration leased -- host <10.1.1.6/255.0.0.0> gateway <10.1.1.1> dns <10.1.1.1> wins lease <3600> domain
    Dec 05 00:42:20 Severity:5 Associated with station 00:21:e9:03:77:f7
    Dec 05 00:42:20 Severity:5 Installed unicast CCMP key for supplicant 00:21:e9:03:77:f7
    Dec 05 00:43:45 Severity:5 Disassociated with station 00:21:e9:03:77:f7
    Dec 05 00:43:46 Severity:5 Rotated TKIP group key.
    Dec 05 00:44:01 Severity:5 Associated with station 00:21:e9:03:77:f7
    Dec 05 00:44:01 Severity:5 Installed unicast CCMP key for supplicant 00:21:e9:03:77:f7
    Dec 05 00:45:40 Severity:5 Disassociated with station 00:21:e9:03:77:f7
    Dec 05 00:45:41 Severity:5 Rotated TKIP group key.
    Dec 05 00:45:49 Severity:5 Associated with station 00:21:e9:03:77:f7
    Dec 05 00:45:49 Severity:5 Installed unicast CCMP key for supplicant 00:21:e9:03:77:f7
    Dec 05 00:46:15 Severity:5 Disassociated with station 00:21:e9:03:77:f7
    Dec 05 00:46:16 Severity:5 Rotated TKIP group key.
    Dec 05 00:46:24 Severity:5 Associated with station 00:21:e9:03:77:f7
    Dec 05 00:46:24 Severity:5 Installed unicast CCMP key for supplicant 00:21:e9:03:77:f7
    Dec 05 00:47:08 Severity:5 Disassociated with station 00:21:e9:03:77:f7
    Dec 05 00:47:08 Severity:5 Rotated TKIP group key.
    Dec 05 00:47:16 Severity:5 Associated with station 00:21:e9:03:77:f7
    Dec 05 00:47:16 Severity:5 Installed unicast CCMP key for supplicant 00:21:e9:03:77:f7
    Dec 05 00:48:10 Severity:5 Disassociated with station 00:21:e9:03:77:f7
    Dec 05 00:48:11 Severity:5 Rotated TKIP group key.
    Dec 05 00:48:25 Severity:5 Associated with station 00:21:e9:03:77:f7
    Dec 05 00:48:25 Severity:5 Installed unicast CCMP key for supplicant 00:21:e9:03:77:f7
    Dec 05 00:49:57 Severity:5 Disassociated with station 00:21:e9:03:77:f7
    Dec 05 00:49:58 Severity:5 Rotated TKIP group key.
    Dec 05 01:04:36 Severity:5 Associated with station 00:21:e9:03:77:f7
    Dec 05 01:04:36 Severity:5 Installed unicast CCMP key for supplicant 00:21:e9:03:77:f7
    Dec 05 01:05:05 Severity:5 Disassociated with station 00:21:e9:03:77:f7
    Dec 05 01:05:05 Severity:5 Rotated TKIP group key.
    Dec 05 01:09:29 Severity:5 Connection accepted from [fe80::21c:b3ff:fe74:eb01%bridge0]:56611.
    Dec 05 01:09:31 Severity:5 Connection accepted from [fe80::21c:b3ff:fe74:eb01%bridge0]:56612.
    Dec 05 01:09:31 Severity:5 Connection accepted from [fe80::21c:b3ff:fe74:eb01%bridge0]:56613.
    Dec 05 01:10:34 Severity:5 Internet Configuration leased -- host <10.1.1.6/255.0.0.0> gateway <10.1.1.1> dns <10.1.1.1> wins lease <3600> domain

  • Core Processes Hanging--OS X Guru?

    For the last several months, my late 2012 iMac has not been behaving adequately.  What generally happens is that after a few days of being on, the Apple Magic Pad loses control of the cursor and I can not figure out a way to restart the computer using my keyboard and have to do a hard shutdown.  This then then takes a long time before it will reboot.  In trying to figure out the problem, I've discovered that the following processes are hanging and must be Force Quit from within Activity Monitor:
          identityservicesd (Not Responding)
          coreaudiod (Not Responding)
          callservicesd (Not Responding)
          SpotifyWebHelper (Not Responding)
          com.apple.geod (Not Responding)
    Is there an OS X Yosemite guru out there who may be able to help me figure out what these constantly hang and how I might repair the damage.  I'm still on Apple Care but haven't wanted to call them yet.
    Erik Hansen
    Scotland
    P.S.  Just a "how-to" restart the computer with only a keyboard would be a big help.

    Linc,
    I set aside time this afternoon to go through the procedures you outlined in such great detail--thank you very much for taking this time--but have been completely stymied since I can't get past the first step.  No matter how I access it, the minute I load Console, it crashes with one of Apple's fairly lengthy crash reports.  At the risk of this being too much information--I'm sorry if it is--I have pasted the full crash report below this message.
    Before I could get started on this, I had to do a hard shutdown as my magic pad had stopped working, and the plugged in extended keyboard was only partially working.  That is, when I punched in Control-Eject, a dialog box came up offering me the choice of cancel or shut down only.  However, even though I could switch between choices with the tab key, the action box was only lit up around its edge and the Enter key wouldn't activate either choice.  Esc closed the box.  Command-Tab worked and allow me to shut down all of my applications before I held in the button on the back of the computer to shut it down.  It then booted normally.
    Also, I tried booting with Command -R held down, but this gave me a choice of only my hard drive and not the install partition.  Disk Utility shows the install partition however.
    Any ideas on how to get this working.  At the suggestion of Old Toad, I ran Etrecheck as he suggested and am now going to try and get rid of the Adware as he suggested in his reply.
    Thanks again for your kind assistance.
    Erik
    Process:               Console [623]
    Path:                  /Applications/Utilities/Console.app/Contents/MacOS/Console
    Identifier:            com.apple.Console
    Version:               10.9 (536.100.1)
    Build Info:            ConsoleX-536100001000000~1
    Code Type:             X86-64 (Native)
    Parent Process:        ??? [1]
    Responsible:           Console [623]
    User ID:               503
    Date/Time:             2015-03-01 16:10:51.230 +0000
    OS Version:            Mac OS X 10.10.2 (14C109)
    Report Version:        11
    Anonymous UUID:        6C7E5444-D87C-B9F6-E410-FCAB98187794
    Time Awake Since Boot: 420 seconds
    Crashed Thread:        4  Dispatch queue: All Messages :: NSOperation 0x6180000c8d50 (QOS: USER_INITIATED)
    Exception Type:        EXC_BAD_ACCESS (SIGSEGV)
    Exception Codes:       KERN_INVALID_ADDRESS at 0x0000000100000001
    VM Regions Near 0x100000001:
    -->
        __TEXT                 000000010e73b000-000000010e781000 [  280K] r-x/rwx SM=COW  /Applications/Utilities/Console.app/Contents/MacOS/Console
    Thread 0:: Dispatch queue: com.apple.main-thread
    0   libsystem_kernel.dylib         0x00007fff8d7144de mach_msg_trap + 10
    1   libsystem_kernel.dylib         0x00007fff8d71364f mach_msg + 55
    2   com.apple.CoreGraphics         0x00007fff895a37c7 _CGSCreateWindow + 162
    3   com.apple.CoreGraphics         0x00007fff89456f3e CGSWindowCreateWithRegion + 131
    4   com.apple.CoreGraphics         0x00007fff892e7f1c CGSNewWindowWithOpaqueShape + 205
    5   com.apple.AppKit               0x00007fff8cc3922c _NSCreateWindowWithOpaqueShape2 + 536
    6   com.apple.AppKit               0x00007fff8cc37906 -[NSWindow _commonAwake] + 1882
    7   com.apple.AppKit               0x00007fff8cc37009 -[NSWindow _makeKeyRegardlessOfVisibility] + 85
    8   com.apple.AppKit               0x00007fff8cc36f7e -[NSWindow makeKeyAndOrderFront:] + 27
    9   com.apple.AppKit               0x00007fff8cd525b6 __33-[NSWindowController showWindow:]_block_invoke + 367
    10  com.apple.QuickLookUIFramework 0x00007fff868725b6 -[QLSeamlessDocumentOpener showWindow:contentFrame:withBlock:] + 105
    11  com.apple.AppKit               0x00007fff8cd5211f -[NSWindowController showWindow:] + 434
    12  com.apple.Console             0x000000010e7592d6 0x10e73b000 + 123606
    13  com.apple.Console             0x000000010e759169 0x10e73b000 + 123241
    14  com.apple.Console             0x000000010e75952a 0x10e73b000 + 124202
    15  com.apple.Console             0x000000010e7593e5 0x10e73b000 + 123877
    16  com.apple.AppKit               0x00007fff8cd4b14a -[NSApplication _doOpenUntitled] + 424
    17  com.apple.AppKit               0x00007fff8cc84741 __58-[NSApplication(NSAppleEventHandling) _handleAEOpenEvent:]_block_invoke + 252
    18  com.apple.AppKit               0x00007fff8cf8f8f9 __97-[NSDocumentController(NSInternal) _autoreopenDocumentsIgnoringExpendable:withCompletionHandler:]_block_invoke_3 + 140
    19  com.apple.AppKit               0x00007fff8cf8f2f1 -[NSDocumentController(NSInternal) _autoreopenDocumentsIgnoringExpendable:withCompletionHandler:] + 798
    20  com.apple.AppKit               0x00007fff8cb2c7a6 -[NSApplication _reopenWindowsAsNecessaryIncludingRestorableState:registeringAsReady:completion Handler:] + 331
    21  com.apple.AppKit               0x00007fff8cb2c529 -[NSApplication(NSAppleEventHandling) _handleAEOpenEvent:] + 561
    22  com.apple.AppKit               0x00007fff8cb2bf75 -[NSApplication(NSAppleEventHandling) _handleCoreEvent:withReplyEvent:] + 244
    23  com.apple.Foundation           0x00007fff8f4a81e8 -[NSAppleEventManager dispatchRawAppleEvent:withRawReply:handlerRefCon:] + 290
    24  com.apple.Foundation           0x00007fff8f4a8059 _NSAppleEventManagerGenericHandler + 102
    25  com.apple.AE                   0x00007fff8e1a199c aeDispatchAppleEvent(AEDesc const*, AEDesc*, unsigned int, unsigned char*) + 531
    26  com.apple.AE                   0x00007fff8e1a1719 dispatchEventAndSendReply(AEDesc const*, AEDesc*) + 31
    27  com.apple.AE                   0x00007fff8e1a1623 aeProcessAppleEvent + 295
    28  com.apple.HIToolbox           0x00007fff86283a2e AEProcessAppleEvent + 56
    29  com.apple.AppKit               0x00007fff8cb28626 _DPSNextEvent + 2665
    30  com.apple.AppKit               0x00007fff8cb27730 -[NSApplication nextEventMatchingMask:untilDate:inMode:dequeue:] + 194
    31  com.apple.AppKit               0x00007fff8cb1b593 -[NSApplication run] + 594
    32  com.apple.AppKit               0x00007fff8cb06a14 NSApplicationMain + 1832
    33  libdyld.dylib                 0x00007fff909fc5c9 start + 1
    Thread 1:: Dispatch queue: com.apple.libdispatch-manager
    0   libsystem_kernel.dylib         0x00007fff8d71a232 kevent64 + 10
    1   libdispatch.dylib             0x00007fff8c8baa6a _dispatch_mgr_thread + 52
    Thread 2:
    0   libsystem_kernel.dylib         0x00007fff8d71994a __workq_kernreturn + 10
    1   libsystem_pthread.dylib       0x00007fff9357d40d start_wqthread + 13
    Thread 3:
    0   libsystem_kernel.dylib         0x00007fff8d71994a __workq_kernreturn + 10
    1   libsystem_pthread.dylib       0x00007fff9357d40d start_wqthread + 13
    Thread 4 Crashed:: Dispatch queue: All Messages :: NSOperation 0x6180000c8d50 (QOS: USER_INITIATED)
    0   libsystem_asl.dylib           0x00007fff87711677 asl_msg_cmp + 43
    1   libsystem_asl.dylib           0x00007fff8770e004 asl_file_match_next + 234
    2   libsystem_asl.dylib           0x00007fff8770e7a6 asl_file_list_match + 282
    3   libsystem_asl.dylib           0x00007fff87715b3f asl_store_match + 295
    4   com.apple.Console             0x000000010e74214c 0x10e73b000 + 29004
    5   com.apple.Console             0x000000010e741a57 0x10e73b000 + 27223
    6   com.apple.Foundation           0x00007fff8f48e32c -[__NSOperationInternal _start:] + 653
    7   com.apple.Foundation           0x00007fff8f48df33 __NSOQSchedule_f + 184
    8   libdispatch.dylib             0x00007fff8c8b7c13 _dispatch_client_callout + 8
    9   libdispatch.dylib             0x00007fff8c8bb365 _dispatch_queue_drain + 1100
    10  libdispatch.dylib             0x00007fff8c8bcecc _dispatch_queue_invoke + 202
    11  libdispatch.dylib             0x00007fff8c8ba6b7 _dispatch_root_queue_drain + 463
    12  libdispatch.dylib             0x00007fff8c8c8fe4 _dispatch_worker_thread3 + 91
    13  libsystem_pthread.dylib       0x00007fff9357f637 _pthread_wqthread + 729
    14  libsystem_pthread.dylib       0x00007fff9357d40d start_wqthread + 13
    Thread 5:
    0   libsystem_kernel.dylib         0x00007fff8d71994a __workq_kernreturn + 10
    1   libsystem_pthread.dylib       0x00007fff9357d40d start_wqthread + 13
    Thread 6:
    0   libsystem_kernel.dylib         0x00007fff8d71994a __workq_kernreturn + 10
    1   libsystem_pthread.dylib       0x00007fff9357d40d start_wqthread + 13
    Thread 7:
    0   libsystem_kernel.dylib         0x00007fff8d71994a __workq_kernreturn + 10
    1   libsystem_pthread.dylib       0x00007fff9357d40d start_wqthread + 13
    Thread 8:
    0   libsystem_kernel.dylib         0x00007fff8d71994a __workq_kernreturn + 10
    1   libsystem_pthread.dylib       0x00007fff9357d40d start_wqthread + 13
    Thread 9:
    0   libsystem_kernel.dylib         0x00007fff8d71994a __workq_kernreturn + 10
    1   libsystem_pthread.dylib       0x00007fff9357d40d start_wqthread + 13
    Thread 10:
    Thread 4 crashed with X86 Thread State (64-bit):
      rax: 0x0000000000000000  rbx: 0x0000000000000000  rcx: 0x00007fb0d481b400  rdx: 0x00007fb0d58645d0
      rdi: 0x0000000100000001  rsi: 0x00007fb0d580dc00  rbp: 0x000000010e9afad0  rsp: 0x000000010e9afa80
       r8: 0x000000010e9af8f0   r9: 0x000000010e9b0000  r10: 0x0000000000001484  r11: 0xffff80503914814a
      r12: 0x000000000000000d  r13: 0x0000000000000001  r14: 0x00007fb0d580dc00  r15: 0x0000000100000001
      rip: 0x00007fff87711677  rfl: 0x0000000000010206  cr2: 0x0000000100000001
    Logical CPU:     6
    Error Code:      0x00000004
    Trap Number:     14
    Binary Images:
           0x10e73b000 -        0x10e780fff  com.apple.Console (10.9 - 536.100.1) <428DD7C0-79FF-38BE-97FD-F736B70BEBB1> /Applications/Utilities/Console.app/Contents/MacOS/Console
           0x112eb4000 -        0x112eb4fef +cl_kernels (???) <BEC304E0-209E-458E-9707-9B272C09B2C7> cl_kernels
           0x112ec1000 -        0x112ec1ff5 +cl_kernels (???) <75D4F47F-034A-46D0-A38E-39B6BC84BE49> cl_kernels
           0x1130db000 -        0x1131c1fef  unorm8_bgra.dylib (2.4.5) <9423FFD4-6EF3-31BF-9DE9-6D55BA76D59E> /System/Library/Frameworks/OpenCL.framework/Versions/A/Libraries/ImageFormats/u norm8_bgra.dylib
        0x7fff698fd000 -     0x7fff69933837  dyld (353.2.1) <65DCCB06-339C-3E25-9702-600A28291D0E> /usr/lib/dyld
        0x7fff83b15000 -     0x7fff83b19fff  com.apple.CommonPanels (1.2.6 - 96) <F9ECC8AF-D9CA-3350-AFB4-5113A9B789A5> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/CommonPanels. framework/Versions/A/CommonPanels
        0x7fff840e2000 -     0x7fff840f3ff7  libsystem_coretls.dylib (35.1.2) <BC691CD1-17B6-39A5-BD02-AF973695FD1D> /usr/lib/system/libsystem_coretls.dylib
        0x7fff84197000 -     0x7fff8422cff7  com.apple.ColorSync (4.9.0 - 4.9.0) <F06733BD-A10C-3DB3-B050-825351130392> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ColorSync.framework/Versions/A/ColorSync
        0x7fff8422d000 -     0x7fff844a9ff3  com.apple.RawCamera.bundle (6.02 - 769) <1F0F0047-682F-39E3-BE26-2467BF5F0E22> /System/Library/CoreServices/RawCamera.bundle/Contents/MacOS/RawCamera
        0x7fff844aa000 -     0x7fff844aaff7  libunc.dylib (29) <5676F7EA-C1DF-329F-B006-D2C3022B7D70> /usr/lib/system/libunc.dylib
        0x7fff84f0d000 -     0x7fff84f45fff  com.apple.RemoteViewServices (2.0 - 99) <C9A62691-B0D9-34B7-B71C-A48B5F4DC553> /System/Library/PrivateFrameworks/RemoteViewServices.framework/Versions/A/Remot eViewServices
        0x7fff84f46000 -     0x7fff84f92ff7  libcups.2.dylib (408) <9CECCDE3-51D7-3028-830C-F58BD36E3317> /usr/lib/libcups.2.dylib
        0x7fff84f93000 -     0x7fff84f95ff7  libsystem_coreservices.dylib (9) <41B7C578-5A53-31C8-A96F-C73E030B0938> /usr/lib/system/libsystem_coreservices.dylib
        0x7fff84f96000 -     0x7fff84fbfffb  libxslt.1.dylib (13) <AED1143F-B848-3E73-81ED-71356F25F084> /usr/lib/libxslt.1.dylib
        0x7fff8500c000 -     0x7fff85031ff7  libJPEG.dylib (1232) <09466709-4742-3418-A0AC-116EF9714E2D> /System/Library/Frameworks/ImageIO.framework/Versions/A/Resources/libJPEG.dylib
        0x7fff85032000 -     0x7fff850c3ff7  com.apple.cloudkit.CloudKit (259.2.5 - 259.2.5) <241EB647-C917-32F7-956A-6E505827048C> /System/Library/Frameworks/CloudKit.framework/Versions/A/CloudKit
        0x7fff85a0a000 -     0x7fff85a64ff7  com.apple.LanguageModeling (1.0 - 1) <ACA93FE0-A0E3-333E-AE3C-8EB7DE5F362F> /System/Library/PrivateFrameworks/LanguageModeling.framework/Versions/A/Languag eModeling
        0x7fff85a65000 -     0x7fff85a6dffb  libcopyfile.dylib (118.1.2) <0C68D3A6-ACDD-3EF3-991A-CC82C32AB836> /usr/lib/system/libcopyfile.dylib
        0x7fff85abd000 -     0x7fff85ad9ff7  com.apple.pluginkit.framework (1.0 - 1) <FEB6FF0B-A688-37C9-93CF-E886E7ED3141> /System/Library/PrivateFrameworks/PlugInKit.framework/Versions/A/PlugInKit
        0x7fff85ada000 -     0x7fff85bccfff  libxml2.2.dylib (26) <B834E7C8-EC3E-3382-BC5A-DA38DC4D720C> /usr/lib/libxml2.2.dylib
        0x7fff85c4b000 -     0x7fff85e8cfff  com.apple.AddressBook.framework (9.0 - 1563) <63953D92-FB0D-31B1-A449-07BA64D08BA9> /System/Library/Frameworks/AddressBook.framework/Versions/A/AddressBook
        0x7fff86177000 -     0x7fff86180fff  com.apple.DisplayServicesFW (2.9 - 372.1) <30E61754-D83C-330A-AE60-533F27BEBFF5> /System/Library/PrivateFrameworks/DisplayServices.framework/Versions/A/DisplayS ervices
        0x7fff86181000 -     0x7fff86198ff7  libLinearAlgebra.dylib (1128) <E78CCBAA-A999-3B65-8EC9-06DB15E67C37> /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.fr amework/Versions/A/libLinearAlgebra.dylib
        0x7fff86199000 -     0x7fff8620dff3  com.apple.securityfoundation (6.0 - 55126) <DEC91795-7754-334A-8CDA-B429F41B922D> /System/Library/Frameworks/SecurityFoundation.framework/Versions/A/SecurityFoun dation
        0x7fff86248000 -     0x7fff8654cffb  com.apple.HIToolbox (2.1.1 - 757.3) <D827FC03-5668-3AA4-AF0E-46EEF7358EEA> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/HIToolbox.fra mework/Versions/A/HIToolbox
        0x7fff8655f000 -     0x7fff8655ffff  libOpenScriptingUtil.dylib (162) <EFD79173-A9DA-3AE6-BE15-3948938204A6> /usr/lib/libOpenScriptingUtil.dylib
        0x7fff86577000 -     0x7fff865f4fff  com.apple.CoreServices.OSServices (640.3 - 640.3) <84A91B00-0ED4-350C-B30A-AEAE437AE02A> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/OSServi ces.framework/Versions/A/OSServices
        0x7fff865f5000 -     0x7fff86620fff  libc++abi.dylib (125) <88A22A0F-87C6-3002-BFBA-AC0F2808B8B9> /usr/lib/libc++abi.dylib
        0x7fff86621000 -     0x7fff86705fff  libcrypto.0.9.8.dylib (52.10.1) <2A2924DE-63FB-37F6-B102-84D69240675B> /usr/lib/libcrypto.0.9.8.dylib
        0x7fff86706000 -     0x7fff86734fff  com.apple.CoreServicesInternal (221.2.2 - 221.2.2) <16F7A7F1-CF1D-35AD-A91F-690A814048DF> /System/Library/PrivateFrameworks/CoreServicesInternal.framework/Versions/A/Cor eServicesInternal
        0x7fff86735000 -     0x7fff86786ff7  com.apple.audio.CoreAudio (4.3.0 - 4.3.0) <AF72B06E-C6C1-3FAE-8B47-AF461CAE0E22> /System/Library/Frameworks/CoreAudio.framework/Versions/A/CoreAudio
        0x7fff86787000 -     0x7fff8678ffff  libsystem_dnssd.dylib (561.1.1) <62B70ECA-E40D-3C63-896E-7F00EC386DDB> /usr/lib/system/libsystem_dnssd.dylib
        0x7fff86790000 -     0x7fff867ecfff  com.apple.QuickLookFramework (5.0 - 675.13) <70196DC4-E71B-37E8-AA15-B7FD21EC1012> /System/Library/Frameworks/QuickLook.framework/Versions/A/QuickLook
        0x7fff867ed000 -     0x7fff868cdfff  com.apple.QuickLookUIFramework (5.0 - 675.13) <A4B5E57E-F363-3C63-8861-4DCEAC3FB23B> /System/Library/Frameworks/Quartz.framework/Versions/A/Frameworks/QuickLookUI.f ramework/Versions/A/QuickLookUI
        0x7fff86ae8000 -     0x7fff86b2afff  com.apple.sociald.Social (87 - 87) <A32F7CCA-6D52-3F4E-8779-548E07A84738> /System/Library/Frameworks/Social.framework/Versions/A/Social
        0x7fff86bdc000 -     0x7fff86cd0fff  libFontParser.dylib (134.1) <EA8452DB-9221-3608-95BF-496F58106313> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ATS.framework/Versions/A/Resources/libFontParser.dylib
        0x7fff86cd6000 -     0x7fff86e86ff7  com.apple.QuartzCore (1.10 - 361.15) <72A78C43-30DF-3748-9015-4B28119DB27B> /System/Library/Frameworks/QuartzCore.framework/Versions/A/QuartzCore
        0x7fff86e87000 -     0x7fff86e88ff7  libsystem_blocks.dylib (65) <9615D10A-FCA7-3BE4-AA1A-1B195DACE1A1> /usr/lib/system/libsystem_blocks.dylib
        0x7fff86e89000 -     0x7fff86e94ff7  com.apple.DirectoryService.Framework (10.10 - 187) <29F7A48C-D8DD-33EB-B9E3-863DA7DBB421> /System/Library/Frameworks/DirectoryService.framework/Versions/A/DirectoryServi ce
        0x7fff86e95000 -     0x7fff86e96fff  com.apple.TrustEvaluationAgent (2.0 - 25) <2D61A2C3-C83E-3A3F-8EC1-736DBEC250AB> /System/Library/PrivateFrameworks/TrustEvaluationAgent.framework/Versions/A/Tru stEvaluationAgent
        0x7fff86e97000 -     0x7fff86ea7ff7  libbsm.0.dylib (34) <A3A2E56C-2B65-37C7-B43A-A1F926E1A0BB> /usr/lib/libbsm.0.dylib
        0x7fff86ea8000 -     0x7fff86eacfff  com.apple.TCC (1.0 - 1) <61F36A72-B983-3A2D-9D37-A2F194D31E7D> /System/Library/PrivateFrameworks/TCC.framework/Versions/A/TCC
        0x7fff86ead000 -     0x7fff86f23fe7  libcorecrypto.dylib (233.1.2) <E1789801-3985-3949-B736-6B3378873301> /usr/lib/system/libcorecrypto.dylib
        0x7fff86f24000 -     0x7fff87016ff7  libiconv.2.dylib (42) <2A06D02F-8B76-3864-8D96-64EF5B40BC6C> /usr/lib/libiconv.2.dylib
        0x7fff87017000 -     0x7fff87024ff7  libxar.1.dylib (254) <CE10EFED-3066-3749-838A-6A15AC0DBCB6> /usr/lib/libxar.1.dylib
        0x7fff87025000 -     0x7fff87027ff7  libsystem_sandbox.dylib (358.1.1) <95312E09-DA28-324A-A084-F3E574D0210E> /usr/lib/system/libsystem_sandbox.dylib
        0x7fff87028000 -     0x7fff873fffe7  com.apple.CoreAUC (211.0.0 - 211.0.0) <C8B2470F-3994-37B8-BE10-6F78667604AC> /System/Library/PrivateFrameworks/CoreAUC.framework/Versions/A/CoreAUC
        0x7fff8747f000 -     0x7fff87499ff7  com.apple.Kerberos (3.0 - 1) <7760E0C2-A222-3709-B2A6-B692D900CEB1> /System/Library/Frameworks/Kerberos.framework/Versions/A/Kerberos
        0x7fff8749a000 -     0x7fff87702ff3  com.apple.security (7.0 - 57031.10.10) <79C37E73-271B-3BEF-A96E-CDB83FF12CF0> /System/Library/Frameworks/Security.framework/Versions/A/Security
        0x7fff87703000 -     0x7fff87719ff7  libsystem_asl.dylib (267) <F153AC5B-0542-356E-88C8-20A62CA704E2> /usr/lib/system/libsystem_asl.dylib
        0x7fff87748000 -     0x7fff87749fff  libsystem_secinit.dylib (18) <581DAD0F-6B63-3A48-B63B-917AF799ABAA> /usr/lib/system/libsystem_secinit.dylib
        0x7fff87762000 -     0x7fff87762ff7  libkeymgr.dylib (28) <77845842-DE70-3CC5-BD01-C3D14227CED5> /usr/lib/system/libkeymgr.dylib
        0x7fff87763000 -     0x7fff877b0ff3  com.apple.CoreMediaIO (601.0 - 4749) <ED45B200-08A1-3E72-8DE9-9901C94A7BCA> /System/Library/Frameworks/CoreMediaIO.framework/Versions/A/CoreMediaIO
        0x7fff877b1000 -     0x7fff877b6ff7  libmacho.dylib (862) <126CA2ED-DE91-308F-8881-B9DAEC3C63B6> /usr/lib/system/libmacho.dylib
        0x7fff877b7000 -     0x7fff877f1ffb  com.apple.DebugSymbols (115 - 115) <6F03761D-7C3A-3C80-8031-AA1C1AD7C706> /System/Library/PrivateFrameworks/DebugSymbols.framework/Versions/A/DebugSymbol s
        0x7fff8799a000 -     0x7fff8799cfff  com.apple.EFILogin (2.0 - 2) <39895ACB-E756-342C-ABE5-DB7100EF0A69> /System/Library/PrivateFrameworks/EFILogin.framework/Versions/A/EFILogin
        0x7fff8799d000 -     0x7fff879aeff7  libz.1.dylib (55) <88C7C7DE-04B8-316F-8B74-ACD9F3DE1AA1> /usr/lib/libz.1.dylib
        0x7fff879d5000 -     0x7fff87a63ff7  com.apple.CorePDF (4.0 - 4) <9CD7EC6D-3593-3D60-B04F-75F612CCB99A> /System/Library/PrivateFrameworks/CorePDF.framework/Versions/A/CorePDF
        0x7fff87a64000 -     0x7fff87b8cff7  com.apple.coreui (2.1 - 305.6.1) <B56EC212-73C1-326F-B78C-EB856386296E> /System/Library/PrivateFrameworks/CoreUI.framework/Versions/A/CoreUI
        0x7fff87b8d000 -     0x7fff87ba6fff  com.apple.openscripting (1.4 - 162) <80DFF366-B950-3F79-903F-99DA0FFDB570> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/OpenScripting .framework/Versions/A/OpenScripting
        0x7fff87ba7000 -     0x7fff87ba9fff  libCVMSPluginSupport.dylib (11.1.1) <DA0706C5-F02A-3F3D-8EBA-18C04313CA2C> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libCVMSPluginS upport.dylib
        0x7fff87c06000 -     0x7fff87c18fff  libsasl2.2.dylib (193) <E523DD05-544B-3430-8AA9-672408A5AF8B> /usr/lib/libsasl2.2.dylib
        0x7fff87c19000 -     0x7fff87ca2fff  com.apple.CoreSymbolication (3.1 - 57020) <FDF8F348-164D-38F9-90EB-F42585DD2C77> /System/Library/PrivateFrameworks/CoreSymbolication.framework/Versions/A/CoreSy mbolication
        0x7fff87cf9000 -     0x7fff87d67ffb  com.apple.Heimdal (4.0 - 2.0) <3E5DA653-A343-3257-ADE1-BA879BAE280F> /System/Library/PrivateFrameworks/Heimdal.framework/Versions/A/Heimdal
        0x7fff87d8c000 -     0x7fff87d92ff7  libsystem_networkextension.dylib (167.1.10) <29AB225B-D7FB-30ED-9600-65D44B9A9442> /usr/lib/system/libsystem_networkextension.dylib
        0x7fff87dbd000 -     0x7fff87e5cdf7  com.apple.AppleJPEG (1.0 - 1) <9BB3D7DF-630A-3E1C-A124-12D6C4D0DE70> /System/Library/PrivateFrameworks/AppleJPEG.framework/Versions/A/AppleJPEG
        0x7fff87e5d000 -     0x7fff87edffff  com.apple.PerformanceAnalysis (1.0 - 1) <94F08B1A-F6AF-38D5-BE92-4FED34742966> /System/Library/PrivateFrameworks/PerformanceAnalysis.framework/Versions/A/Perf ormanceAnalysis
        0x7fff87ee0000 -     0x7fff87fd3ff7  libJP2.dylib (1232) <10B78725-0B8A-3D87-B2E3-8FEED0C07F21> /System/Library/Frameworks/ImageIO.framework/Versions/A/Resources/libJP2.dylib
        0x7fff87fd4000 -     0x7fff8800dfff  com.apple.AirPlaySupport (2.0 - 215.15) <C36CC8AF-27CC-3B18-9C3C-3F845B35FDEC> /System/Library/PrivateFrameworks/AirPlaySupport.framework/Versions/A/AirPlaySu pport
        0x7fff8800e000 -     0x7fff8800efff  com.apple.quartzframework (1.5 - 1.5) <4944127A-F319-3689-AAEC-58591D3CAC07> /System/Library/Frameworks/Quartz.framework/Versions/A/Quartz
        0x7fff8800f000 -     0x7fff88012ff7  com.apple.Mangrove (1.0 - 1) <2AF1CAE9-8BF9-33C4-9C1B-123DBAF1522B> /System/Library/PrivateFrameworks/Mangrove.framework/Versions/A/Mangrove
        0x7fff88013000 -     0x7fff8837efff  com.apple.VideoToolbox (1.0 - 1562.107) <2EAFB008-7F19-34C2-A5A6-43B4CD35FEF3> /System/Library/Frameworks/VideoToolbox.framework/Versions/A/VideoToolbox
        0x7fff8837f000 -     0x7fff883bfff7  com.apple.CloudDocs (1.0 - 280.6) <C1179CEF-E058-3E16-BF90-C059FE7CDE77> /System/Library/PrivateFrameworks/CloudDocs.framework/Versions/A/CloudDocs
        0x7fff883ef000 -     0x7fff883f6fff  com.apple.NetFS (6.0 - 4.0) <1581D25F-CC07-39B0-90E8-5D4F3CF84EBA> /System/Library/Frameworks/NetFS.framework/Versions/A/NetFS
        0x7fff88457000 -     0x7fff88457fff  com.apple.Cocoa (6.8 - 21) <EAC0EA1E-3C62-3B28-A941-5D8B1E085FF8> /System/Library/Frameworks/Cocoa.framework/Versions/A/Cocoa
        0x7fff88458000 -     0x7fff88460ffb  com.apple.CoreServices.FSEvents (1210 - 1210) <782A9C69-7A45-31A7-8960-D08A36CBD0A7> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/FSEvent s.framework/Versions/A/FSEvents
        0x7fff88461000 -     0x7fff88491fff  com.apple.GSS (4.0 - 2.0) <FD154E62-F4CF-339D-B66C-AF4AED6A94A6> /System/Library/Frameworks/GSS.framework/Versions/A/GSS
        0x7fff88492000 -     0x7fff884a4ff7  com.apple.CoreDuetDaemonProtocol (1.0 - 1) <CE9FABB4-1C5D-3F9B-9BB8-5CC50C3E5E31> /System/Library/PrivateFrameworks/CoreDuetDaemonProtocol.framework/Versions/A/C oreDuetDaemonProtocol
        0x7fff884a5000 -     0x7fff884b1ff7  com.apple.OpenDirectory (10.10 - 187) <8B98ECCB-7EFA-3A58-BD2B-A0835D869B1A> /System/Library/Frameworks/OpenDirectory.framework/Versions/A/OpenDirectory
        0x7fff8855b000 -     0x7fff88583fff  libsystem_info.dylib (459) <B85A85D5-8530-3A93-B0C3-4DEC41F79478> /usr/lib/system/libsystem_info.dylib
        0x7fff88584000 -     0x7fff88586ffb  libCGXType.A.dylib (775.16) <B2DC78CA-179F-39A7-8D0B-873DC0ACFE96> /System/Library/Frameworks/CoreGraphics.framework/Versions/A/Resources/libCGXTy pe.A.dylib
        0x7fff88587000 -     0x7fff8886effb  com.apple.CoreServices.CarbonCore (1108.2 - 1108.2) <FD87F83F-301A-3BD6-8262-5692FC1B4457> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/CarbonC ore.framework/Versions/A/CarbonCore
        0x7fff8886f000 -     0x7fff8887dff7  com.apple.opengl (11.1.1 - 11.1.1) <F79F5FFF-372E-329E-81FB-EE9BD6A2A7A7> /System/Library/Frameworks/OpenGL.framework/Versions/A/OpenGL
        0x7fff88f01000 -     0x7fff8916bfff  com.apple.imageKit (2.6.1 - 840) <8C974E7D-2258-3FBC-948C-D93226F42DCA> /System/Library/Frameworks/Quartz.framework/Versions/A/Frameworks/ImageKit.fram ework/Versions/A/ImageKit
        0x7fff8916c000 -     0x7fff8916dfff  libSystem.B.dylib (1213) <90B107BC-FF74-32CC-B1CF-4E02F544D957> /usr/lib/libSystem.B.dylib
        0x7fff8917b000 -     0x7fff891b6fff  com.apple.Symbolication (1.4 - 56045) <D64571B1-4483-3FE2-BD67-A91360F79727> /System/Library/PrivateFrameworks/Symbolication.framework/Versions/A/Symbolicat ion
        0x7fff891b7000 -     0x7fff891c4ff7  libbz2.1.0.dylib (36) <2DF83FBC-5C08-39E1-94F5-C28653791B5F> /usr/lib/libbz2.1.0.dylib
        0x7fff8921b000 -     0x7fff89238ffb  libresolv.9.dylib (57) <26B38E61-298A-3C3A-82C1-3B5E98AD5E29> /usr/lib/libresolv.9.dylib
        0x7fff89239000 -     0x7fff89247ff7  com.apple.ToneLibrary (1.0 - 1) <3E6D130D-77B0-31E1-98E3-A6052AB09824> /System/Library/PrivateFrameworks/ToneLibrary.framework/Versions/A/ToneLibrary
        0x7fff89248000 -     0x7fff89253fff  libGL.dylib (11.1.1) <1F0EB9FB-4B0F-349B-80DD-93FD3F45B9C7> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGL.dylib
        0x7fff89254000 -     0x7fff892acff7  com.apple.accounts.AccountsDaemon (113 - 113) <30F83BF7-2BAE-3BAD-B111-224346AF4B52> /System/Library/PrivateFrameworks/AccountsDaemon.framework/Versions/A/AccountsD aemon
        0x7fff892bd000 -     0x7fff892dcfff  com.apple.CoreDuet (1.0 - 1) <36AA9FD5-2685-314D-B364-3FA4688D86BD> /System/Library/PrivateFrameworks/CoreDuet.framework/Versions/A/CoreDuet
        0x7fff892dd000 -     0x7fff89b34ffb  com.apple.CoreGraphics (1.600.0 - 775.16) <864C1845-C41E-314C-A3B4-438DC39E5FBC> /System/Library/Frameworks/CoreGraphics.framework/Versions/A/CoreGraphics
        0x7fff89b35000 -     0x7fff89ecbfff  com.apple.CoreFoundation (6.9 - 1152) <CBD1591C-405E-376E-87E9-B264610EBF49> /System/Library/Frameworks/CoreFoundation.framework/Versions/A/CoreFoundation
        0x7fff89ecc000 -     0x7fff89ee8fff  com.apple.GenerationalStorage (2.0 - 209.11) <9FF8DD11-25FB-3047-A5BF-9415339B3EEC> /System/Library/PrivateFrameworks/GenerationalStorage.framework/Versions/A/Gene rationalStorage
        0x7fff89ee9000 -     0x7fff89eebfff  libsystem_configuration.dylib (699.1.5) <5E14864E-089A-3D84-85A4-980B776427A8> /usr/lib/system/libsystem_configuration.dylib
        0x7fff89eec000 -     0x7fff89f0cfff  com.apple.IconServices (47.1 - 47.1) <E83DFE3B-6541-3736-96BB-26DC5D0100F1> /System/Library/PrivateFrameworks/IconServices.framework/Versions/A/IconService s
        0x7fff89f0d000 -     0x7fff89fa1fff  com.apple.ink.framework (10.9 - 213) <8E029630-1530-3734-A446-13353F0E7AC5> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/Ink.framework /Versions/A/Ink
        0x7fff89fd4000 -     0x7fff89fd4ff7  liblaunch.dylib (559.10.3) <DFCDEBDF-8247-3DC7-9879-E7E497DDA4B4> /usr/lib/system/liblaunch.dylib
        0x7fff89fd5000 -     0x7fff89fefff3  com.apple.Ubiquity (1.3 - 313) <DF56A657-CC6E-3BE2-86A0-71F07127724C> /System/Library/PrivateFrameworks/Ubiquity.framework/Versions/A/Ubiquity
        0x7fff89ff0000 -     0x7fff89ff1fff  liblangid.dylib (117) <B54A4AA0-2E53-3671-90F5-AFF711C0EB9E> /usr/lib/liblangid.dylib
        0x7fff8a0af000 -     0x7fff8a0b7ff7  com.apple.AppleSRP (5.0 - 1) <01EC5144-D09A-3D6A-AE35-F6D48585F154> /System/Library/PrivateFrameworks/AppleSRP.framework/Versions/A/AppleSRP
        0x7fff8a0b8000 -     0x7fff8a0ebff7  com.apple.MediaKit (16 - 757) <345EDAFE-3E39-3B0F-8D84-54657EC4396D> /System/Library/PrivateFrameworks/MediaKit.framework/Versions/A/MediaKit
        0x7fff8a1c4000 -     0x7fff8a1d6ff7  com.apple.ImageCapture (9.0 - 9.0) <7FB65DD4-56B5-35C4-862C-7A2DED991D1F> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/ImageCapture. framework/Versions/A/ImageCapture
        0x7fff8a1d7000 -     0x7fff8a1f1ff7  libextension.dylib (55.1) <6D0CF094-85E8-3F5B-A3F1-25ECF60F80D9> /usr/lib/libextension.dylib
        0x7fff8a33b000 -     0x7fff8a33efff  com.apple.xpc.ServiceManagement (1.0 - 1) <5EFD45BF-B0CD-39F2-8232-6BA33E63E5D4> /System/Library/Frameworks/ServiceManagement.framework/Versions/A/ServiceManage ment
        0x7fff8a33f000 -     0x7fff8a385ff7  libauto.dylib (186) <A260789B-D4D8-316A-9490-254767B8A5F1> /usr/lib/libauto.dylib
        0x7fff8a386000 -     0x7fff8a407ff3  com.apple.CoreUtils (1.0 - 101.1) <45E5E51B-947E-3F2D-BD9C-480E72555C23> /System/Library/PrivateFrameworks/CoreUtils.framework/Versions/A/CoreUtils
        0x7fff8a408000 -     0x7fff8a409ff7  com.apple.print.framework.Print (10.0 - 265) <3BC4FE7F-78A0-3E57-8F4C-520E7EFD36FA> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/Print.framewo rk/Versions/A/Print
        0x7fff8a40a000 -     0x7fff8a414ff7  com.apple.CrashReporterSupport (10.10 - 629) <4BCAA6B5-EC7F-365F-9D3F-BC483B7E956C> /System/Library/PrivateFrameworks/CrashReporterSupport.framework/Versions/A/Cra shReporterSupport
        0x7fff8a457000 -     0x7fff8a457fff  com.apple.Accelerate.vecLib (3.10 - vecLib 3.10) <B92888D0-ED3F-3430-8F3A-6E56FD16C5F1> /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.fr amework/Versions/A/vecLib
        0x7fff8a4af000 -     0x7fff8a4dbfff  libsandbox.1.dylib (358.1.1) <BA84BDAF-2C59-3CED-8970-9FB029BD7442> /usr/lib/libsandbox.1.dylib
        0x7fff8a4eb000 -     0x7fff8a4f3fe7  libcldcpuengine.dylib (2.4.5) <F9EF8060-5E40-3E88-BC38-7452649672B2> /System/Library/Frameworks/OpenCL.framework/Versions/A/Libraries/libcldcpuengin e.dylib
        0x7fff8a55a000 -     0x7fff8a68cff7  com.apple.MediaControlSender (2.0 - 215.15) <454420EB-E6FE-3074-8D58-67471E1D61E5> /System/Library/PrivateFrameworks/MediaControlSender.framework/Versions/A/Media ControlSender
        0x7fff8a6bb000 -     0x7fff8a98aff3  com.apple.CoreImage (10.0.33) <6E3DDA29-718B-3BDB-BFAF-F8C201BF93A4> /System/Library/Frameworks/QuartzCore.framework/Versions/A/Frameworks/CoreImage .framework/Versions/A/CoreImage
        0x7fff8a99e000 -     0x7fff8a9c3ff7  libPng.dylib (1232) <6E72AE55-AFB0-3FC4-80B2-EBC3353436B7> /System/Library/Frameworks/ImageIO.framework/Versions/A/Resources/libPng.dylib
        0x7fff8a9c4000 -     0x7fff8a9cdfff  libGFXShared.dylib (11.1.1) <7AE7D152-597E-3B27-A52C-8DA76760B61C> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGFXShared.d ylib
        0x7fff8a9ce000 -     0x7fff8aa74ff7  com.apple.PDFKit (3.1 - 3.1) <D2D019DD-5DCA-3C0D-B9B7-0F919A6CD1DD> /System/Library/Frameworks/Quartz.framework/Versions/A/Frameworks/PDFKit.framew ork/Versions/A/PDFKit
        0x7fff8aa75000 -     0x7fff8aa7affb  libheimdal-asn1.dylib (398.10.1) <A7B6447A-6680-3625-83C3-993B58D5C43F> /usr/lib/libheimdal-asn1.dylib
        0x7fff8aa7b000 -     0x7fff8ac09fff  libBLAS.dylib (1128) <497912C1-A98E-3281-BED7-E9C751552F61> /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.fr amework/Versions/A/libBLAS.dylib
        0x7fff8aca3000 -     0x7fff8acf0ff3  com.apple.print.framework.PrintCore (10.0 - 451) <3CA58254-D14F-3913-9DFB-CAC499570CC7> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ PrintCore.framework/Versions/A/PrintCore
        0x7fff8ad21000 -     0x7fff8ad75fff  libc++.1.dylib (120) <1B9530FD-989B-3174-BB1C-BDC159501710> /usr/lib/libc++.1.dylib
        0x7fff8ad76000 -     0x7fff8ad89ff7  com.apple.CoreBluetooth (1.0 - 1) <FA9B43B3-E183-3040-AE25-66EF9870CF35> /System/Library/Frameworks/CoreBluetooth.framework/Versions/A/CoreBluetooth
        0x7fff8ada3000 -     0x7fff8adbfff7  libsystem_malloc.dylib (53.1.1) <19BCC257-5717-3502-A71F-95D65AFA861B> /usr/lib/system/libsystem_malloc.dylib
        0x7fff8adc0000 -     0x7fff8adc2ff7  libutil.dylib (38) <471AD65E-B86E-3C4A-8ABD-B8665A2BCE3F> /usr/lib/libutil.dylib
        0x7fff8addf000 -     0x7fff8aef6fe7  libvDSP.dylib (516) <DFEDB210-49D1-3803-88A2-C61DB6A45C3D> /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.fr amework/Versions/A/libvDSP.dylib
        0x7fff8b18e000 -     0x7fff8b1dfff7  com.apple.AppleVAFramework (5.0.31 - 5.0.31) <56AA4060-63DF-3DF0-AB8A-880D0DD6F075> /System/Library/PrivateFrameworks/AppleVA.framework/Versions/A/AppleVA
        0x7fff8b1e0000 -     0x7fff8b31dfff  com.apple.ImageIO.framework (3.3.0 - 1232) <D7AF3CD2-FAB2-3798-9C26-914886852DCD> /System/Library/Frameworks/ImageIO.framework/Versions/A/ImageIO
        0x7fff8b31e000 -     0x7fff8b322fff  libcache.dylib (69) <45E9A2E7-99C4-36B2-BEE3-0C4E11614AD1> /usr/lib/system/libcache.dylib
        0x7fff8b32a000 -     0x7fff8b344fff  com.apple.AppleVPAFramework (1.2.10 - 1.2.10) <DC3D5A44-AB1E-32A9-9D22-FC922B52346A> /System/Library/PrivateFrameworks/AppleVPA.framework/Versions/A/AppleVPA
        0x7fff8b3fa000 -     0x7fff8b3ffff7  com.apple.MediaAccessibility (1.0 - 61) <00A3E0B6-79AC-387E-B282-AADFBD5722F6> /System/Library/Frameworks/MediaAccessibility.framework/Versions/A/MediaAccessi bility
        0x7fff8b400000 -     0x7fff8b478ff7  com.apple.SystemConfiguration (1.14 - 1.14) <E0495F7D-5624-3EF7-B7E5-DA0EE708B6E4> /System/Library/Frameworks/SystemConfiguration.framework/Versions/A/SystemConfi guration
        0x7fff8b491000 -     0x7fff8b4b2fff  com.apple.framework.Apple80211 (10.1 - 1010.64) <A7378C4B-FFD3-35B9-93E8-0534A2A7B51F> /System/Library/PrivateFrameworks/Apple80211.framework/Versions/A/Apple80211
        0x7fff8b4b3000 -     0x7fff8b4ffff7  com.apple.corelocation (1486.17 - 1615.21.1) <B81BC475-E215-3491-A750-8B23F05ABF5B> /System/Library/Frameworks/CoreLocation.framework/Versions/A/CoreLocation
        0x7fff8b754000 -     0x7fff8bba7fc7  com.apple.vImage (8.0 - 8.0) <33BE7B31-72DB-3364-B37E-C322A32748C5> /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vImage.fr amework/Versions/A/vImage
        0x7fff8bbd1000 -     0x7fff8c0e4ff3  com.apple.JavaScriptCore (10600 - 10600.3.13) <C0C3246C-D26F-3440-AC75-81CFFA4F9C91> /System/Library/Frameworks/JavaScriptCore.framework/Versions/A/JavaScriptCore
        0x7fff8c0e5000 -     0x7fff8c125ff7  libGLImage.dylib (11.1.1) <3986BFA3-4F55-380F-B01D-91BA9785D70C> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGLImage.dyl ib
        0x7fff8c16d000 -     0x7fff8c2cbffb  com.apple.avfoundation (2.0 - 889.102) <7D2E62AF-CDEA-394C-84B2-656629F00197> /System/Library/Frameworks/AVFoundation.framework/Versions/A/AVFoundation
        0x7fff8c2cc000 -     0x7fff8c2d3fff  libCGCMS.A.dylib (775.16) <8A173E74-7123-35F1-B160-853528C144ED> /System/Library/Frameworks/CoreGraphics.framework/Versions/A/Resources/libCGCMS .A.dylib
        0x7fff8c2d4000 -     0x7fff8c2ddff3  com.apple.CommonAuth (4.0 - 2.0) <BA9F5A09-D200-3D18-9F4A-20C789291A30> /System/Library/PrivateFrameworks/CommonAuth.framework/Versions/A/CommonAuth
        0x7fff8c2de000 -     0x7fff8c2e2ff7  libGIF.dylib (1232) <061D5354-FE4F-3C7E-B563-99DC0198062D> /System/Library/Frameworks/ImageIO.framework/Versions/A/Resources/libGIF.dylib
        0x7fff8c2e3000 -     0x7fff8c34aff7  com.apple.framework.CoreWiFi (3.0 - 300.4) <19269C1D-EB29-384A-83F3-7DDDEB7D9DAD> /System/Library/PrivateFrameworks/CoreWiFi.framework/Versions/A/CoreWiFi
        0x7fff8c34e000 -     0x7fff8c355ff7  com.apple.phonenumbers (1.1.1 - 105) <AE39B6FE-05AB-3181-BB2A-4D50A8B392F2> /System/Library/PrivateFrameworks/PhoneNumbers.framework/Versions/A/PhoneNumber s
        0x7fff8c356000 -     0x7fff8c3c8ff7  com.apple.framework.IOKit (2.0.2 - 1050.10.8) <FDFB1FBE-6A0E-3D63-828C-CD53500FCB0F> /System/Library/Frameworks/IOKit.framework/Versions/A/IOKit
        0x7fff8c6c5000 -     0x7fff8c75bffb  com.apple.CoreMedia (1.0 - 1562.107) <FE18102D-8D7A-3500-A400-747AA8C0B3D0> /System/Library/Frameworks/CoreMedia.framework/Versions/A/CoreMedia
        0x7fff8c8b6000 -     0x7fff8c8e0ff7  libdispatch.dylib (442.1.4) <502CF32B-669B-3709-8862-08188225E4F0> /usr/lib/system/libdispatch.dylib
        0x7fff8c8e1000 -     0x7fff8c99cff7  com.apple.DiscRecording (9.0 - 9000.4.2) <9BB46993-311A-3F2E-BD77-3CBEFB71C1F0> /System/Library/Frameworks/DiscRecording.framework/Versions/A/DiscRecording
        0x7fff8c9a8000 -     0x7fff8c9b0fff  libsystem_platform.dylib (63) <64E34079-D712-3D66-9CE2-418624A5C040> /usr/lib/system/libsystem_platform.dylib
        0x7fff8c9b1000 -     0x7fff8c9b5fff  libCoreVMClient.dylib (79) <FC4E08E3-749E-32FF-B5E9-211F29864831> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libCoreVMClien t.dylib
        0x7fff8c9b6000 -     0x7fff8cafaff7  com.apple.QTKit (7.7.3 - 2890) <6F6CD79F-CFBB-3FE4-82C6-47991346FB17> /System/Library/Frameworks/QTKit.framework/Versions/A/QTKit
        0x7fff8cafb000 -     0x7fff8cb03fff  libMatch.1.dylib (24) <C917279D-33C2-38A8-9BDD-18F3B24E6FBD> /usr/lib/libMatch.1.dylib
        0x7fff8cb04000 -     0x7fff8d64eff7  com.apple.AppKit (6.9 - 1344.72) <44EF7DEB-3072-3515-9F34-2857D557E828> /System/Library/Frameworks/AppKit.framework/Versions/C/AppKit
        0x7fff8d64f000 -     0x7fff8d654ff7  libunwind.dylib (35.3) <BE7E51A0-B6EA-3A54-9CCA-9D88F683A6D6> /usr/lib/system/libunwind.dylib
        0x7fff8d655000 -     0x7fff8d680fff  com.apple.DictionaryServices (1.2 - 229) <6789EC43-CADA-394D-8FE8-FC3A2DD136B9> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/Diction aryServices.framework/Versions/A/DictionaryServices
        0x7fff8d703000 -     0x7fff8d720fff  libsystem_kernel.dylib (2782.10.72) <97CD7ACD-EA0C-3434-BEFC-FCD013D6BB73> /usr/lib/system/libsystem_kernel.dylib
        0x7fff8d77b000 -     0x7fff8dbabfff  com.apple.vision.FaceCore (3.1.6 - 3.1.6) <C3B823AA-C261-37D3-B4AC-C59CE91C8241> /System/Library/PrivateFrameworks/FaceCore.framework/Versions/A/FaceCore
        0x7fff8dbac000 -     0x7fff8dbb1ff7  libsystem_stats.dylib (163.10.18) <9B8CCF24-DDDB-399A-9237-4BEC225D2E8C> /usr/lib/system/libsystem_stats.dylib
        0x7fff8dbb2000 -     0x7fff8ddac46f  libobjc.A.dylib (647) <759E155D-BC42-3D4E-869B-6F57D477177C> /usr/lib/libobjc.A.dylib
        0x7fff8ddad000 -     0x7fff8ddbafff  com.apple.SpeechRecognitionCore (2.0.32 - 2.0.32) <87F0C88D-502D-3217-8B4A-8388288568BA> /System/Library/PrivateFrameworks/SpeechRecognitionCore.framework/Versions/A/Sp eechRecognitionCore
        0x7fff8ddbb000 -     0x7fff8ddc6ff7  com.apple.speech.synthesis.framework (5.3.3 - 5.3.3) <7DF3C68C-B219-3E13-AE72-24B8606A1560> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ SpeechSynthesis.framework/Versions/A/SpeechSynthesis
        0x7fff8ddc7000 -     0x7fff8de4bfff  com.apple.ViewBridge (103.1 - 103.1) <BABD572C-58AA-362C-B246-D45DCD990D16> /System/Library/PrivateFrameworks/ViewBridge.framework/Versions/A/ViewBridge
        0x7fff8de4c000 -     0x7fff8deeafff  com.apple.Metadata (10.7.0 - 917.1) <46BE997C-B1F4-3BED-9332-FAC87297C87A> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/Metadat a.framework/Versions/A/Metadata
        0x7fff8dfe2000 -     0x7fff8dfe7fff  com.apple.DiskArbitration (2.6 - 2.6) <0DFF4D9B-2AC3-3B82-B5C5-30F4EFBD2DB9> /System/Library/Frameworks/DiskArbitration.framework/Versions/A/DiskArbitration
        0x7fff8dfe8000 -     0x7fff8dfebfff  libScreenReader.dylib (390.21) <364E0A52-4076-3F55-8C77-7CC5E085E4C4> /usr/lib/libScreenReader.dylib
        0x7fff8dfec000 -     0x7fff8e017ff3  libarchive.2.dylib (30) <8CBB4416-EBE9-3574-8ADC-44655D245F39> /usr/lib/libarchive.2.dylib
        0x7fff8e018000 -     0x7fff8e065fff  com.apple.ImageCaptureCore (6.0 - 6.0) <C2DED299-7E2B-3501-9FD6-74892A7484B3> /System/Library/Frameworks/ImageCaptureCore.framework/Versions/A/ImageCaptureCo re
        0x7fff8e0fd000 -     0x7fff8e0fffff  com.apple.OAuth (25 - 25) <EE765AF0-2BB6-3689-9EAA-689BF1F02A0D> /System/Library/PrivateFrameworks/OAuth.framework/Versions/A/OAuth
        0x7fff8e100000 -     0x7fff8e114ff7  com.apple.ProtectedCloudStorage (1.0 - 1) <52CFE68A-0663-3756-AB5B-B42195026052> /System/Library/PrivateFrameworks/ProtectedCloudStorage.framework/Versions/A/Pr otectedCloudStorage
        0x7fff8e122000 -     0x7fff8e136ff7  com.apple.MultitouchSupport.framework (262.33.1 - 262.33.1) <62DF9340-01A1-3E12-A604-C90F6361FD9E> /System/Library/PrivateFrameworks/MultitouchSupport.framework/Versions/A/Multit ouchSupport
        0x7fff8e137000 -     0x7fff8e13efff  com.apple.network.statistics.framework (1.2 - 1) <61B311D1-7F15-35B3-80D4-99B8BE90ACD9> /System/Library/PrivateFrameworks/NetworkStatistics.framework/Versions/A/Networ kStatistics
        0x7fff8e13f000 -     0x7fff8e13ffff  com.apple.Carbon (154 - 157) <0DF27AD6-ED64-34D7-825D-65297D276652> /System/Library/Frameworks/Carbon.framework/Versions/A/Carbon
        0x7fff8e140000 -     0x7fff8e193ffb  libAVFAudio.dylib (118.3) <CC124063-34DF-39E3-921A-2BA3EA8D6F38> /System/Library/Frameworks/AVFoundation.framework/Versions/A/Resources/libAVFAu dio.dylib
        0x7fff8e194000 -     0x7fff8e1f3ff3  com.apple.AE (681 - 681) <7F544183-A515-31A8-B45F-89A167F56216> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/AE.fram ework/Versions/A/AE
        0x7fff8e1f4000 -     0x7fff8e1f5ffb  libremovefile.dylib (35) <3485B5F4-6CE8-3C62-8DFD-8736ED6E8531> /usr/lib/system/libremovefile.dylib
        0x7fff8e20a000 -     0x7fff8e220ff7  com.apple.CoreMediaAuthoring (2.2 - 951) <3EAFC9D1-8D7C-30CF-92C7-903A5C241763> /System/Library/PrivateFrameworks/CoreMediaAuthoring.framework/Versions/A/CoreM ediaAuthoring
        0x7fff8e221000 -     0x7fff8e221fff  com.apple.audio.units.AudioUnit (1.12 - 1.12) <76EF1C9D-DEA4-3E55-A134-4099B2FD2CF2> /System/Library/Frameworks/AudioUnit.framework/Versions/A/AudioUnit
        0x7fff8e222000 -     0x7fff8e70eff7  com.apple.MediaToolbox (1.0 - 1562.107) <F0888EAC-FB6D-35C5-B2FB-AC9A72FE4650> /System/Library/Frameworks/MediaToolbox.framework/Versions/A/MediaToolbox
        0x7fff8e70f000 -     0x7fff8e747ffb  libsystem_network.dylib (411.1) <2EC3A005-473F-3C36-A665-F88B5BACC7F0> /usr/lib/system/libsystem_network.dylib
        0x7fff8e789000 -     0x7fff8e81aff7  libCoreStorage.dylib (471.10.6) <892DEEE7-C8C7-35EA-931D-FF9862BDEB2B> /usr/lib/libCoreStorage.dylib
        0x7fff8e81b000 -     0x7fff8e86aff7  com.apple.opencl (2.4.2 - 2.4.2) <D16CFDE6-B5F7-301A-995E-8B583D8C675A> /System/Library/Frameworks/OpenCL.framework/Versions/A/OpenCL
        0x7fff8e878000 -     0x7fff8e89bfff  com.apple.Sharing (328.3.2 - 328.3.2) <F555679F-1CD1-3EB2-8E01-FCB80EF07330> /System/Library/PrivateFrameworks/Sharing.framework/Versions/A/Sharing
        0x7fff8e8cf000 -     0x7fff8e8e4ff7  com.apple.AppContainer (4.0 - 238.10.1) <24A43E31-BCD3-32DB-8023-DE7EEA912E89> /System/Library/PrivateFrameworks/AppContainer.framework/Versions/A/AppContaine r
        0x7fff8e9da000 -     0x7fff8eab0ff3  com.apple.DiskImagesFramework (10.10.1 - 396) <E7478685-E829-372A-A945-A512730D3312> /System/Library/PrivateFrameworks/DiskImages.framework/Versions/A/DiskImages
        0x7fff8ec02000 -     0x7fff8ed32fff  com.apple.UIFoundation (1.0 - 1) <8E030D93-441C-3997-9CD2-55C8DFAC8B84> /System/Library/PrivateFrameworks/UIFoundation.framework/Versions/A/UIFoundatio n
        0x7fff8ed33000 -     0x7fff8ed4eff7  com.apple.aps.framework (4.0 - 4.0) <F3C3C246-101E-3E81-9608-D2D6E9352532> /System/Library/PrivateFrameworks/ApplePushService.framework/Versions/A/ApplePu shService
        0x7fff8ed4f000 -     0x7fff8effbfff  com.apple.GeoServices (1.0 - 982.4.10) <8A7FE04A-2785-30E7-A6E2-DC15D170DAF5> /System/Library/PrivateFrameworks/GeoServices.framework/Versions/A/GeoServices
        0x7fff8effc000 -     0x7fff8f02cfff  libsystem_m.dylib (3086.1) <1E12AB45-6D96-36D0-A226-F24D9FB0D9D6> /usr/lib/system/libsystem_m.dylib
        0x7fff8f02d000 -     0x7fff8f0cfff7  com.apple.Bluetooth (4.3.2 - 4.3.2f6) <95676652-21AB-3FFA-B53D-EBC8BF4E913E> /System/Library/Frameworks/IOBluetooth.framework/Versions/A/IOBluetooth
        0x7fff8f0d0000 -     0x7fff8f0fffff  com.apple.securityinterface (10.0 - 55058) <21F38170-2D3D-3FA2-B0EC-379482AFA5E4> /System/Library/Frameworks/SecurityInterface.framework/Versions/A/SecurityInter face
        0x7fff8f10d000 -     0x7fff8f110ff7  com.apple.AppleSystemInfo (3.1 - 3.1) <B40B3737-42A5-3D57-9E87-D3905EE5BADB> /System/Library/PrivateFrameworks/AppleSystemInfo.framework/Versions/A/AppleSys temInfo
        0x7fff8f111000 -     0x7fff8f11ffff  com.apple.AddressBook.ContactsFoundation (9.0 - 1563) <CCAB74BF-947C-384D-B4C8-E2118145555B> /System/Library/PrivateFrameworks/ContactsFoundation.framework/Versions/A/Conta ctsFoundation
        0x7fff8f15f000 -     0x7fff8f174fff  com.apple.ToneKit (1.0 - 1) <CA375645-8DE1-3DE8-A2E0-0537849DF59B> /System/Library/PrivateFrameworks/ToneKit.framework/Versions/A/ToneKit
        0x7fff8f175000 -     0x7fff8f1e4fff  com.apple.SearchKit (1.4.0 - 1.4.0) <BFD6D876-36BA-3A3B-9F15-3E2F7DE6E89D> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/SearchK it.framework/Versions/A/SearchKit
        0x7fff8f1e5000 -     0x7fff8f460ff7  com.apple.CoreData (111 - 526.1) <DC4F037B-B7F4-381A-B939-4414489D76BF> /System/Library/Frameworks/CoreData.framework/Versions/A/CoreData
        0x7fff8f461000 -     0x7fff8f485ff7  com.apple.quartzfilters (1.10.0 - 1.10.0) <1AE50F4A-0098-34E7-B24D-DF7CB94073CE> /System/Library/Frameworks/Quartz.framework/Versions/A/Frameworks/QuartzFilters .framework/Versions/A/QuartzFilters
        0x7fff8f486000 -     0x7fff8f7b4fff  com.apple.Foundation (6.9 - 1152.14) <E3746EDD-DFB1-3ECB-88ED-A91AC0EF3AAA> /System/Library/Frameworks/Foundation.framework/Versions/C/Foundation
        0x7fff8f7e2000 -     0x7fff8f819ffb  com.apple.LDAPFramework (2.4.28 - 194.5) <D22234AA-8B30-3010-8CF0-67516D52CC33> /System/Library/Frameworks/LDAP.framework/Versions/A/LDAP
        0x7fff8f81a000 -     0x7fff8f8a6ff7  libsystem_c.dylib (1044.10.1) <199ED5EB-77A1-3D43-AA51-81779CE0A742> /usr/lib/system/libsystem_c.dylib
        0x7fff8f8a7000 -     0x7fff8f8d7ff3  com.apple.CoreAVCHD (5.7.5 - 5750.4.1) <3E51287C-E97D-3886-BE88-8F6872400876> /System/Library/PrivateFrameworks/CoreAVCHD.framework/Versions/A/CoreAVCHD
        0x7fff8f8d8000 -     0x7fff8f9e6fff  com.apple.desktopservices (1.9.2 - 1.9.2) <8670FD3B-8A5B-3D84-B21E-DF21140545A2> /System/Library/PrivateFrameworks/DesktopServicesPriv.framework/Versions/A/Desk topServicesPriv
        0x7fff90329000 -     0x7fff90334ff7  libcsfde.dylib (471.10.6) <E1BF5816-3CE6-30CE-B3EE-F68CB6BA1378> /usr/lib/libcsfde.dylib
        0x7fff90335000 -     0x7fff9035dffb  libRIP.A.dylib (775.16) <7711F7A7-1813-3024-AE42-75CA7C5422B7> /System/Library/Frameworks/CoreGraphics.framework/Versions/A/Resources/libRIP.A .dylib
        0x7fff9038a000 -     0x7fff903a4ff7  liblzma.5.dylib (7) <1D03E875-A7C0-3028-814C-3C27F7B7C079> /usr/lib/liblzma.5.dylib
        0x7fff904c3000 -     0x7fff904cefff  libcommonCrypto.dylib (60061) <D381EBC6-69D8-31D3-8084-5A80A32CB748> /usr/lib/system/libcommonCrypto.dylib
        0x7fff904cf000 -     0x7fff909f8ff7  com.apple.QuartzComposer (5.1 - 325.1) <ABCC8B0F-9961-37D3-B231-9F2B9E027411> /System/Library/Frameworks/Quartz.framework/Versions/A/Frameworks/QuartzCompose r.framework/Versions/A/QuartzComposer
        0x7fff909f9000 -     0x7fff909fcff7  libdyld.dylib (353.2.1) <4E33E416-F1D8-3598-B8CC-6863E2ECD0E6> /usr/lib/system/libdyld.dylib
        0x7fff909fd000 -     0x7fff90a03fff  com.apple.speech.recognition.framework (5.0.9 - 5.0.9) <BB2D573F-0A01-379F-A2BA-3C454EDCB111> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/SpeechRecogni tion.framework/Versions/A/SpeechRecognition
        0x7fff90a05000 -     0x7fff90a46fff  libGLU.dylib (11.1.1) <E9ADAD30-0133-320D-A60E-D1A7F91A7795> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGLU.dylib
        0x7fff90a47000 -     0x7fff90abbfff  com.apple.ApplicationServices.ATS (360 - 375) <2824D38D-460D-353C-9D18-499B4BEEABB7> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ATS.framework/Versions/A/ATS
        0x7fff90abc000 -     0x7fff90b0afff  libcurl.4.dylib (83.1.2) <337A1FF8-E8B1-3173-9F29-C0D4C851D8E1> /usr/lib/libcurl.4.dylib
        0x7fff90b0b000 -     0x7fff90c76ff7  com.apple.audio.toolbox.AudioToolbox (1.12 - 1.12) <5C6DBEB4-F2EA-3262-B9FC-AFB89404C1DA> /System/Library/Frameworks/AudioToolbox.framework/Versions/A/AudioToolbox
        0x7fff90c77000 -     0x7fff90cdeffb  com.apple.datadetectorscore (6.0 - 396.1.1) <80379385-A4EC-3F9B-AFED-9B1DF781943D> /System/Library/PrivateFrameworks/DataDetectorsCore.framework/Versions/A/DataDe tectorsCore
        0x7fff90cdf000 -     0x7fff90d3afff  libTIFF.dylib (1232) <29A5C7F7-D50B-35B3-8FA2-A55A47E497A6> /System/Library/Frameworks/ImageIO.framework/Versions/A/Resources/libTIFF.dylib
        0x7fff90d3b000 -     0x7fff90d45fff  com.apple.IntlPreferences (2.0 - 150.1) <C62C6F4F-38B9-340B-82A6-1F82AFE1D724> /System/Library/PrivateFrameworks/IntlPreferences.framework/Versions/A/IntlPref erences
        0x7fff90d46000 -     0x7fff90d48fff  com.apple.SecCodeWrapper (4.0 - 238.10.1) <8DAF71DB-C99A-3B72-A639-2C8CBEA84B93> /System/Library/PrivateFrameworks/SecCodeWrapper.framework/Versions/A/SecCodeWr apper
        0x7fff90d4d000 -     0x7fff90d50fff  com.apple.IOSurface (97 - 97) <D4B4D2B2-7B16-3174-9EA6-55E0A10B452D> /System/Library/Frameworks/IOSurface.framework/Versions/A/IOSurface
        0x7fff90d51000 -     0x7fff90d8cfff  com.apple.QD (301 - 301) <C4D2AD03-B839-350A-AAF0-B4A08F8BED77> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ QD.framework/Versions/A/QD
        0x7fff90d8d000 -     0x7fff90dabff7  com.apple.addressbook.vCard (9.0 - 1563) <370F3435-855E-3C60-9CC9-B3F24AC1AF97> /System/Library/PrivateFrameworks/vCard.framework/Versions/A/vCard
        0x7fff90e12000 -     0x7fff90e86fff  com.apple.ShareKit (1.0 - 323) <92C947CC-FD6B-39D4-919D-9ABD7701384C> /System/Library/PrivateFrameworks/ShareKit.framework/Versions/A/ShareKit
        0x7fff90ed2000 -     0x7fff90ee3fff  libcmph.dylib (1) <46EC3997-DB5E-38AE-BBBB-A035A54AD3C0> /usr/lib/libcmph.dylib
        0x7fff90ee4000 -     0x7fff90ef1fff  com.apple.ProtocolBuffer (1 - 225.1) <2D502FBB-D2A0-3937-A5C5-385FA65B3874> /System/Library/PrivateFrameworks/ProtocolBuffer.framework/Versions/A/ProtocolB uffer
        0x7fff90ef2000 -     0x7fff90ef2fff  com.apple.Accelerate (1.10 - Accelerate 1.10) <F1B96A61-7E4B-31BD-A35B-BA7EF1F16EF4> /System/Library/Frameworks/Accelerate.framework/Versions/A/Accelerate
        0x7fff90ef3000 -     0x7fff90f25ff3  com.apple.frameworks.CoreDaemon (1.3 - 1.3) <C6DB0A07-F8E4-3837-BCA9-225F460EDA81> /System/Library/PrivateFrameworks/CoreDaemon.framework/Versions/B/CoreDaemon
        0x7fff90fe8000 -     0x7fff90feeff7  com.apple.XPCService (2.0 - 1) <AA4A5393-1F5D-3465-A417-0414B95DC052> /System/Library/PrivateFrameworks/XPCService.framework/Versions/A/XPCService
        0x7fff90fef000 -     0x7fff90ff5fff  libsystem_trace.dylib (72.1.3) <A9E6B7D8-C327-3742-AC54-86C94218B1DF> /usr/lib/system/libsystem_trace.dylib
        0x7fff90ff6000 -     0x7fff90ffafff  libspindump.dylib (182) <085978DC-A34D-3B72-BC7B-025C35A0A373> /usr/lib/libspindump.dylib
        0x7fff9102e000 -     0x7fff91049ff7  libCRFSuite.dylib (34) <D64842BE-7BD4-3D0C-9842-1D202F7C2A51> /usr/lib/libCRFSuite.dylib
        0x7fff9104a000 -     0x7fff9104afff  com.apple.CoreServices (62 - 62) <9E4577CA-3FC3-300D-AB00-87ADBDDA2E37> /System/Library/Frameworks/CoreServices.framework/Versions/A/CoreServices
        0x7fff9104b000 -     0x7fff9104cfff  libDiagnosticMessagesClient.dylib (100) <2EE8E436-5CDC-34C5-9959-5BA218D507FB> /usr/lib/libDiagnosticMessagesClient.dylib
        0x7fff92011000 -     0x7fff921f6ff3  libicucore.A.dylib (531.31) <B08E00D5-13C6-3391-AB3A-8DE693D3B42E> /usr/lib/libicucore.A.dylib
        0x7fff921f7000 -     0x7fff92224fff  com.apple.Accounts (113 - 113) <990F0F61-6AC5-3076-932E-02A9A7F75AC4> /System/Library/Frameworks/Accounts.framework/Versions/A/Accounts
        0x7fff92225000 -     0x7fff92229fff  libpam.2.dylib (20) <E805398D-9A92-31F8-8005-8DC188BD8B6E> /usr/lib/libpam.2.dylib
        0x7fff9222a000 -     0x7fff9222cff3  com.apple.SafariServices.framework (10600 - 10600.3.18) <2C2F0A8D-CC06-30CF-B247-93A96A25F0D5> /System/Library/PrivateFrameworks/SafariServices.framework/Versions/A/SafariSer vices
        0x7fff9222d000 -     0x7fff92234ff7  libcompiler_rt.dylib (35) <BF8FC133-EE10-3DA6-9B90-92039E28678F> /usr/lib/system/libcompiler_rt.dylib
        0x7fff92235000 -     0x7fff9234dffb  com.apple.CoreText (352.0 - 454.3) <B3B8C775-14FA-38F3-9CD5-830422AE9C49> /System/Library/Frameworks/CoreText.framework/Versions/A/CoreText
        0x7fff92374000 -     0x7fff92496ff7  com.apple.LaunchServices (644.12.4 - 644.12.4) <59E909E8-ED4A-33EA-B85D-D409BADDF854> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/LaunchS ervices.framework/Versions/A/LaunchServices
        0x7fff92497000 -     0x7fff924bffff  libxpc.dylib (559.10.3) <876216DC-D5D3-381E-8AF9-49AE464E5107> /usr/lib/system/libxpc.dylib
        0x7fff924c2000 -     0x7fff928cfff7  libLAPACK.dylib (1128) <F9201AE7-B031-36DB-BCF8-971E994EF7C1> /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.fr amework/Versions/A/libLAPACK.dylib
        0x7fff928ee000 -     0x7fff928f0fff  com.apple.CoreDuetDebugLogging (1.0 - 1) <9A6E5710-EA99-366E-BF40-9A65EC1B46A1> /System/Library/PrivateFrameworks/CoreDuetDebugLogging.framework/Versions/A/Cor eDuetDebugLogging
        0x7fff928f1000 -     0x7fff928f9fff  com.apple.xpcobjects (103 - 103) <A202ACEF-7A3D-303E-BB07-29FF49DE279D> /System/Library/PrivateFrameworks/XPCObjects.framework/Versions/A/XPCObjects
        0x7fff928fa000 -     0x7fff92905ff7  libkxld.dylib (2782.10.72) <68E07A32-28F5-3FBB-9D74-00B4F53C2FD4> /usr/lib/system/libkxld.dylib
        0x7fff92906000 -     0x7fff929c9ff7  libvMisc.dylib (516) <A84F3A3B-D349-3FBC-B5A6-E0F572734073> /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.fr amework/Versions/A/libvMisc.dylib
        0x7fff929ca000 -     0x7fff929d9fff  com.apple.LangAnalysis (1.7.0 - 1.7.0) <D1E527E4-C561-352F-9457-E8C50232793C> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ LangAnalysis.framework/Versions/A/LangAnalysis
        0x7fff92a64000 -     0x7fff92aadff3  com.apple.HIServices (1.22 - 520.12) <8EAC82AB-6A7D-3606-AF6F-60A9410D1278> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ HIServices.framework/Versions/A/HIServices
        0x7fff92aae000 -     0x7fff92bf0fff  libsqlite3.dylib (168) <7B580EB9-9260-35FE-AE2F-276A2C242BAB> /usr/lib/libsqlite3.dylib
        0x7fff92bf3000 -     0x7fff92df6ff3  com.apple.CFNetwork (720.2.4 - 720.2.4) <E550C671-930F-3B12-8798-23898473E179> /System/Library/Frameworks/CFNetwork.framework/Versions/A/CFNetwork
        0x7fff92df7000 -     0x7fff92e10ff7  com.apple.CFOpenDirectory (10.10 - 187) <0F9747EF-12A3-3694-984D-0B8352CA6C0F> /System/Library/Frameworks/OpenDirectory.framework/Versions/A/Frameworks/CFOpen Directory.framework/Versions/A/CFOpenDirectory
        0x7fff92e11000 -     0x7fff92e7dfff  com.apple.framework.CoreWLAN (5.0 - 500.35.2) <37551DDD-C07C-31EB-923A-9721F03D7E29> /System/Library/Frameworks/CoreWLAN.framework/Versions/A/CoreWLAN
        0x7fff92f51000 -     0x7fff92f53ff7  libquarantine.dylib (76) <DC041627-2D92-361C-BABF-A869A5C72293> /usr/lib/system/libquarantine.dylib
        0x7fff92f54000 -     0x7fff92f56fff  com.apple.loginsupport (1.0 - 1) <21DBC18C-F260-39FC-B52F-04A5AA84523A> /System/Library/PrivateFrameworks/login.framework/Versions/A/Frameworks/loginsu pport.framework/Versions/A/loginsupport
        0x7fff92f57000 -     0x7fff92f58ff7  com.apple.AddressBook.ContactsData (9.0 - 1563) <2A4BD452-4279-38AA-A4EE-761903795B05> /System/Library/PrivateFrameworks/ContactsData.framework/Versions/A/ContactsDat a
        0x7fff92f8f000 -     0x7fff92f91fff  libRadiance.dylib (1232) <E670DDEF-60F8-3AEB-B6A2-B20A1340634C> /Sy

  • How does J2SE 1.4 connect to Mysql database?

    Could anyone please tell me how to connect J2SE 1.4 to MySql database?
    I tried to modify "CreateCoffees.java", I don't know how to replace the following two statements:
    url = "jdbc:mySubprotocol:myDataSource" and
    Class:forName( myDriver:ClassName);
    Thank you in advance.
    Rayson

    It depends on the JDBC driver you are using. If you don't have one for MySQL try out the MMMySQL driver at http://mmmysql.sourceforge.net/. The doc with it explains how to connect to a database.
    Col

  • MySQL can't find mysql.sock

    Hi guys,
    I have a very frustrating problem. I have tried everything to fix it and I have ran out of ideas as to what the problem might be.
    I have had mysql running for 1 week without a problem. Yesterday I had to reboot my server. After I rebooted, mysql gave me the following error:
    ERROR 2002 (HY000): Can't connect to local MySQL server through socket '/var/mysql/mysql.sock' (2)
    I checked various solutions and none worked for me.
    To solve it I tried the following:
    * Delete the Mysql folder, restarted the service from Server Admin, Server Admin created the mysql folder again but Mysql still wasn't working.
    * Check the location of the mysql.sock file on my.conf. It's pointing correctly to /var/mysql/mysql.sock.
    * Check the permissions of the Mysql folder. They are all correct.
    * Tried to restore the folder with a backup I had on time machine (I know that you shouldnt backup DB with time machine, but I just wanted to get the service working).
    * I tried to manually run the service and I had no luck.
    The error console shows nothing useful, it just says:
    2009-11-17 13:44:47 America/Mexico_City MySQL daemon started.
    2009-11-27 14:50:52 America/Mexico_City [E] MySQL: timed out waiting to launch mysql without grant tables.
    2009-11-27 14:50:52 America/Mexico_City [E] MySQL: mysql shutdown timed out.
    2009-11-27 14:50:52 America/Mexico_City Reset root password reported errors.
    2009-11-27 16:12:45 America/Mexico_City Stopping MySQL Service
    2009-11-27 16:12:45 America/Mexico_City Stopping MySQL daemon...
    2009-11-27 16:12:45 America/Mexico_City MySQL daemon stopped.
    Anyone having the same problem? I really find it quite frustrating that it stopped working after a reboot. I can't understand what happened.
    Any help would greatly be appreciated.
    Thanks!

    Because the .sock file isa unix domain socket. This is normally not available on other OS's. So, the sock is platform dependent, and Java, at least usually, does not support strictly platform dependent features, you can not use it (at least not using the standard API's). If you search, real hard, you may find some hacks to do so, but they are exactly that, hacks.

Maybe you are looking for

  • Credit check for oldest open item

    Hello friends While checking oldest open item for credit management, open line items with credit nature should not be considered. Only debit entry should be considered and based on date given for blocking the oldest due item should be followed. Pleas

  • Error:verifier jar file not found

    Hi, I found problem "verifier jar file not found" while building a package in Aspects Developer Evaluation version. Pls guide me regarding my problem if any body could.

  • Payment transaction report

    Hi all, Is it possible to print a daily payment transaction report which will show customer numbers, invoice numbers, and amount paid, etc? Thank. Chloe

  • Safari-Google auto fill

    Hi everyone. While I am in Safari>Google I start typing in the search window and a bunch of previously type words show up under the search window. Is there anyway to clear the list that pops up? I went to settings>safari and cleared cookies,cache, an

  • Flash for windows xp

    how can you install flash player...I seem to get same old page telling me to install