VirtualBox

Ignore:
Timestamp:
Mar 14, 2008 6:12:27 AM (17 years ago)
Author:
vboxsync
Message:

Additions/x11: added flow logging statements to the VBoxClient code

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/src/VBox/Additions/x11/xclient/clipboard.h

    r7264 r7449  
    2020# define __Additions_linux_clipboard_h
    2121
     22#include <VBox/log.h>
    2223#include "thread.h"                 /* for VBoxGuestThread */
    2324
     
    9091    int init(void)
    9192    {
     93        LogFlowThisFunc(("\n"));
    9294        int rc = mThreadFunction.init();
    9395        if (RT_SUCCESS(rc))
     
    9597        if (RT_SUCCESS(rc))
    9698            mInit = true;
     99        LogFlowThisFunc(("returning %Rrc\n", rc));
    97100        return rc;
    98101    }
     
    103106    void uninit(unsigned cMillies = RT_INDEFINITE_WAIT)
    104107    {
     108        LogFlowThisFunc(("\n"));
    105109        if (mInit)
    106110            mThread.stop(cMillies, NULL);
     111        LogFlowThisFunc(("returning\n"));
    107112    }
    108113
     
    112117    ~VBoxGuestClipboard()
    113118    {
     119        LogFlowThisFunc(("\n"));
    114120        if (mInit)
    115121            try {
    116122                uninit(2000);
    117123            } catch (...) { }
     124        LogFlowThisFunc(("returning\n"));
    118125    }
    119126};
Note: See TracChangeset for help on using the changeset viewer.

© 2024 Oracle Support Privacy / Do Not Sell My Info Terms of Use Trademark Policy Automated Access Etiquette