Async timer slows operation

Having already used asynchronous timers to solve another problem I had, I am now looking at an issue that has left me speechless

Here is a code snippet that took an applied asynchronous timer

int CVICALLBACK ParentEvent (int reserved, control int, int event, void * callbackData, int eventData1, int eventData2)
{
public static int iInfoFlag = 1;

If the Com Timer event took place then:
If (event is EVENT_TIMER_TICK)
{
SetAsyncTimerAttribute (control, ASYNC_ATTR_ENABLED, 0);

First of all, changed the configuration of the probe?
If (iSondeConfigure_HasChanged() is YES)
Re-initialize screens etc, if true
InitialiseSondeSystems (iFloatingPanels);

Get data from the probe
If (ProgStatus.bComTimerEvent is TRUE)
{
CompactDataControl (hParentPanel, iInfoFlag, & ProgStatus, NULL);
}
If Com events are disabled then define Info indicator following data probe
acquisition sequence
If (ProgStatus.iComEnable! = ACTIVE)
iInfoFlag = 1;

SetAsyncTimerAttribute (ParentTimer, ASYNC_ATTR_ENABLED, 1);
}

Return (0);
}

This routine was previously managed by a conventional programmer, but as they sit at the bottom of the pile when it comes to planning, as soon as the interface has been manipluated it silent. In each case the timer is set to 0.1 seconds, and if the bComTimerEvent flag is set to true, which is controlled by another (currently traditional timer) he goes and grabs the data from an external source. Using conventional timers, I can clock this timer 'data capture' quite happily at 0.25 seconds. However with the code, it will not catch data faster that 1.5 seconds. I timed the time required to call and to return from CompactDataControl. With the traditional counters his approximately 0.2 seconds, with the code as indicated, its about 1.45 seconds.

Any thoughts on what I missed or messed up.

Concerning

Gavin

Not a bit of lag of MISTLETOE, is not a problem as long as the data is entered, is done on a regular basis... The biggest problem that is known now, are things like the spikes in data... graphic lines flat because the time may have changed, but data not given that the last trace point, because the route is done on the fly, instead of a data buffer. There are some historical problems with this software, and I'm sure I'll work on them for some time to come, despite the fact that I work on and outside at least 3 years now!

Thanks for the comments... you have answered my question - not in the way I had hoped, you might, but to be honest, probably in the way that I didn't expect - IE no solution of 5 minutes!

Tags: NI Software

Similar Questions

  • Performance of the hard drive, runs at 30% all the time; slow response

    Pavilion Slimline works 30% all the time, slow at times, all the time. Run the Task Manager, identified all of the questions.

    Defragmentation, historical, navigation can be run. Registry cleaner also run.

    Still slow responses,

    Suspect still running games, must stop them, as well as other unnecessary programs.

    Any suggestions, useful, believe, this will solve the problem and improve poor performance.

    Thank you for the comprehensive answer. If the speed is the main problem now, theoretically, upgrading the hard drive would be able to increase the speed up to a point. Of course, this would impact speed of normal programs, programs on the web, etc. I also carefully read the document provided Red Rose, and although it is informative, I don't know about most in this paper has been tried.

    Regarding the age of the laptop, age obviously decreases the computer's full performance, and you have little control over this, unless you buy another computer.

    I have an idea of how research and troubleshooting have achieved you, but it is only an idea. I'll link some documents with information that you may or may not be useful:

    http://Windows.Microsoft.com/en-CA/Windows-8/improve-performance-optimizing-hard-drive

    http://itzkumar.WordPress.com/2010/07/03/10-ways-to-increase-hard-disk-life-and-performance/

    Let me know if you have any other questions, and I'll do my best to help you.

    Mario

  • Async timer events

    I use CVI 2009 and TestStand 4.1.1 to test products.

    I create an Async timer when I call a function of Teststand that propelled to the top of the object to measure.

    My timer seems to start OK, but there are only 3 events prior to the recall of the timer Tick is no longer called.

    What could cause the timer events stop?

    Thank you

    1 take the timer.

    2, reminder timer is blocked or delayed and no return for timer events are queued up and not be served.

    3, an another async timer was created before the one you use for power USE up so this timer is a priority and is occupied by the management of reminders in your reminder of power queue USE is getting hungry.

    4 Async timer thread cannot get scheduled.

    Recently, I've solved a problem scheduling async timer using an indicator LED on my GUI and he put on during my async timer reminder entry and turned off when I left.  I made sure that he stayed at least 200 ms if I could see it.   Main thread set the light / stop by a global since you can not manipulate the UI directly from the asynchronous callback.

  • No graduation async timer

    Hello.  I have a program that is running multiple threads.  When the user clicks the start test button, a new thread is created to run all data acquisition and task processing.  Part of the task of data acquisition is to acquire an analogue to the digital map data.  To start the acquisition, a function is called from the map SDK.  This allows relaxation on the Board with a callback that is called when the map is triggered.  I have included in my code, a timeout by using an asynchronous timer so that if a trigger is not received with a set amount of time, the acquisition is cancelled.  The problem I have is that no clock is received by the async timer.  The basic layout of the code is as follows:

    RET = dataAqFuncStart();

    If (ret = NO_ERROR)

    {

    SetanalogTrigTimoutFlag (TRIG_TIMEOUT_CLEAR);

    timerId = NewAsyncTimer (ANALOG_IN_TRIG_TIMEOUT, 1, 1,
    DaqAnalogInTimer, NULL);

    }

    If (ret = NO_ERROR)

    {

    While ((GetdaqAnalogInFlag() == 0) & GetanalogTrigTimoutFlag() == TRIG_TIMEOUT_CLEAR)

    {

    }

    }

    Within the callback function for the data acquisition card, the daqAnalogInFlag is set if the map is triggered.  In the async timer, analogTrigTimeoutFlag is set to graduation of timer.  I never really get a graduation of timer if so my code is in the while loop.  In the context of debugging, I was followed by system resources which showed that the two sons of my computer was working 100%.  I placed a delay of 200ms in the while loop and this has reduced the CPU activity of approximately 3/4.  I guess it's because the code was executed the while loop getting frantically two flags.  Another thing, I tried as part of debugging placed 'GetAsyncTimerAttribute (timerId, ASYNC_ATTR_TIMER_TIME & timerTime)' in the while loop after the deadline.  On the first time through the while loop, the value timerTime has been to 0,0.  On the second occasion, the time is 5006.598 which obviously incorrect as only about 200ms has passed.  The last observation was that there is a call of the event to the reminder timer when I close the thread that was created at the beginning of the test.  This indicates that the timer has been created.

    Are there other methods of debugging I can use or can someone point me in the direction of an answer?

    Thank you

    Do you really need a timer that is asynchronous to get the timeout? You could just check the value of the Timer (in the loop and exit) on a specified time? Is something like this:

    if (ret == NO_ERROR)
    {
        tini = Timer ();
        while ((GetdaqAnalogInFlag() == 0)  && (Timer () - tini < 1.0))
        {
           // Some code
        }
        // Cleanup code
    }
    

    Async timers are executed in their own separate thread: I don't know what can happen all by creating an asynchronous timer in one thread other than the main.

  • Type [0] unknown calculation for the dynamic calculation. Only default agg/formula/time balance operations are managed.

    Hi all

    I came across this error last Monday. I tried all the recommendations and configurations and nothing seems to work to solve the problem.

    Here is the error message-

    [Game Sep 24 12:04:27 2015] Local, ARPLAN, ARPLAN, Ess.Tee@MSAD_2010/9240/Error (1012703)

    Type [0] unknown calculation for the dynamic calculation. Only default agg/formula/time balance operations are managed.

    [Game Sep 24 12:04:33 2015] Local, ARPLAN, ARPLAN, Ess.Tee@MSAD_2010/9240/Warning (1080014)

    Abandoned due to the State [1012703] [0x2e007c (0x56042d17.0xeadd0)] transaction.

    [Game Sep 24 12:04:33 2015] Local, ARPLAN, ARPLAN, Ess.Tee@MSAD_2010/8576/Warning (1080014)

    Abandoned due to the State [1012703] [0x40007d (0x56042d18.0x781e0)] transaction.

    [Game Sep 24 12:04:34 2015] Local, ARPLAN, ARPLAN, Ess.Tee@MSAD_2010/736/Info (1012579)

    Total time elapsed Calc [Forecast.csc]: [621,338] seconds

    The script I'm running-

    SET CACHE HIGH;

    SET MSG SUMMARY;

    LOW GAME REVIEWS;

    UPDATECALC OFF SET;

    SET AGGMISSG

    GAME CALCPARALLEL 2;

    SET CREATEBLOCKONEQ

    SET HIGH LOCKBLOCK;

    FIX ('FY16', 'Final', 'Forecasts', '11 + 1 forecasts', 'prediction of 10 + 2', '9 + 3 forecast', '8 + 4 forecasts', "forecast 7 + 5", "6 + 6 forecast", "forecast 5 + 7", 'forecast of 4 + 8', '3 + 9 forecast', 'forecast 2 + 10', '1 + 11 forecasts')

    DIFFICULTY (@IDESCENDANTS ('entity'))

    CALC DIM ("account");

    ENDFIX

    DIM CALC ("entity", "Currency");

    ENDFIX

    In the essbase.cfg I have already included-

    NETDELAY 24000

    NETRETRYCOUNT 4500

    /Calculator cache settings

    CALCCACHEHIGH 50000000

    CALCCACHEDEFAULT 10000000

    200000 CALCCACHELOW

    Lockblock/set limits

    CALCLOCKBLOCKHIGH 150000

    CALCLOCKBLOCKDEFAULT 20000

    CALCLOCKBLOCKLOW 10000

    Please suggest if there is a way to fix this error. I get a similar error for other calculations as well.

    Kind regards

    EssTee

    And you are positive that no one came in a new Member at level 0 as dynamic Calc?

    What are the versions do you use?

  • 9 times slower than directly from whatz PP 2014 (PC) upward exports SOUL 2014?

    SOUL 2014 H.264 exports is 9 times slower that directly from 2014 PP. I also tried encoding 2 dvd & it's all too slow

    (PC)

    6 core i7 970 3.2 intel, Nvidia GTX 570, 24 GB of ram, raid 0, win 7 service pack 1 64-bit

    CS6 SOUL & CC work very well but 2014 is a slug! Is this a bug?

    Thanks for responding. I realized that my gtx 570 needed a updated driver... That fixed it.

  • The binding is 60 times slower than compromising

    Hello

    I have a fairly serious problem using Toplink liaison. My setup is

    TopLink 9.0.4.5
    Oracle 10g EE 10.2.0.4.0 (64-bit, partitioning options, Data Mining and Real Application Testing)
    Oracle JDBC Thin (11.2.0.1.0 or 10.2.0.4.0) driver

    running in a Tomcat 5.5 environment.

    Our usual configuration is with BindAllParameters = 'true', which is well in 99% of cases. But in a special case, which is the search functionality of our application (insurance agents management application),
    a SQL is about 60 times slower with a binding, that without binding. I enclose the SQL at the end of the message, but what is quite special about it is that it uses a large amount of 'IN' clauses. I found an older version
    display indicating that Toplink (or Oracle JDBC) has a problem with IN-clauses and binding. Can anyone confirm this?

    As I said, the SQL part of a people search feature, so there are a lot of variants. Not all variations exhibit this behavior, so I guess, that Oracle probably uses different execution plans for the use of prepared statements or direct execution. Someone can he also confirm?

    Finally, is it possible to record the execution inside the Tomcat application plan?

    Thanks in advance for any help, as I said earlier, this problem is currently very critical, since we are 2 weeks before production,

    Thorsten.

    Here's the SQL example (with the bind variable already replaced):
    /* Formatted on 2010/02/08 10:27 (Formatter Plus v4.8.8) */
    SELECT t0.partner_id
      FROM aidatint.papartner t0
     WHERE (    (    (    (    (   (    (t0.schwebe_kz = 'S')
                                    AND (t0.aktgfid_rid = '126562119515400004')
                                   )
                                OR (    (t0.schwebe_kz = 'O')
                                    AND (t0.aktgfid_rid <> '126562119515400004')
                                   )
                               )
                           AND (   (t0.gueltigbis_dt IS NULL)
                                OR (t0.gueltigvon_dt < t0.gueltigbis_dt)
                               )
                          )
                      AND (t0.mcname_txt = 'MEIER')
                     )
                 AND (t0.partner_id IN (
                         SELECT DISTINCT t1.partner_id
                                    FROM aidatint.paadresse t1
                                   WHERE (    (    (   (    (t1.schwebe_kz = 'S'
                                                            )
                                                        AND (t1.aktgfid_rid =
                                                                '126562119515400004'
                                                            )
                                                       )
                                                    OR (    (t1.schwebe_kz = 'O'
                                                            )
                                                        AND (t1.aktgfid_rid <>
                                                                '126562119515400004'
                                                            )
                                                       )
                                                   )
                                               AND (   (t1.gueltigbis_dt IS NULL
                                                       )
                                                    OR (t1.gueltigvon_dt <
                                                                  t1.gueltigbis_dt
                                                       )
                                                   )
                                              )
                                          AND (t1.mcort_txt = 'KOELN')
                                         ))
                     )
                )
            AND (t0.partner_id IN (
                    SELECT t2.partner_id
                      FROM aidatint.paparolle t2
                     WHERE (    (    (    (   (    (t2.schwebe_kz = 'S')
                                               AND (t2.aktgfid_rid =
                                                              '126562119515400004'
                                                   )
                                              )
                                           OR (    (t2.schwebe_kz = 'O')
                                               AND (t2.aktgfid_rid <>
                                                              '126562119515400004'
                                                   )
                                              )
                                          )
                                      AND (    (t2.gueltigvon_dt <=
                                                   TO_DATE ('20100208',
                                                            'YYYYMMDD')
                                               )
                                           AND (   (t2.gueltigbis_dt >
                                                       TO_DATE ('20100208',
                                                                'YYYYMMDD'
                                                               )
                                                   )
                                                OR (t2.gueltigbis_dt IS NULL)
                                               )
                                          )
                                     )
                                 AND (t2.geschobjtyp_typ = 'VMVT')
                                )
                            AND (t2.goid_id IN (
                                    SELECT t3.vermittlervertragid_id
                                      FROM aidatint.prvvsvermittlervertrag t3
                                     WHERE (    (   (    (t3.schwebe_kz = 'S')
                                                     AND (t3.aktgfid_rid =
                                                              '126562119515400004'
                                                         )
                                                    )
                                                 OR (    (t3.schwebe_kz = 'O')
                                                     AND (t3.aktgfid_rid <>
                                                              '126562119515400004'
                                                         )
                                                    )
                                                )
                                            AND (t3.kumulnr_txt IN (
                                                    SELECT t4.bereichsnr_txt
                                                      FROM aidatint.prvvsstrukturangausdienst t4
                                                     WHERE (    (    (   (    (t4.schwebe_kz =
                                                                                  'S'
                                                                              )
                                                                          AND (t4.aktgfid_rid =
                                                                                  '126562119515400004'
                                                                              )
                                                                         )
                                                                      OR (    (t4.schwebe_kz =
                                                                                  'O'
                                                                              )
                                                                          AND (t4.aktgfid_rid <>
                                                                                  '126562119515400004'
                                                                              )
                                                                         )
                                                                     )
                                                                 AND (    (t4.gueltigvon_dt <=
                                                                              TO_DATE
                                                                                 ('20100208',
                                                                                  'YYYYMMDD'
                                                                                 )
                                                                          )
                                                                      AND (   (t4.gueltigbis_dt >
                                                                                  TO_DATE
                                                                                     ('20100208',
                                                                                      'YYYYMMDD'
                                                                                     )
                                                                              )
                                                                           OR (t4.gueltigbis_dt IS NULL
                                                                              )
                                                                          )
                                                                     )
                                                                )
                                                            AND (t4.schluessel_txt LIKE
                                                                    '##TH###1###4%'
                                                                )
                                                           ))
                                                )
                                           ))
                                )
                           ))
                )
           )

    You can disable the binding at the application level.

    On your TopLink DatabaseQuery (ReadAllQuery) do.

    query.setShouldBindAllParameters (false);

  • Satellite L300D - slow operating system

    I have a laptop L300D Satellie - AMD X 2 Dual Core 2.10GH - memory-2 GB - 32 bit operating system - Windows Vista - Microsoft Outlook
    Extreemely slow, takes 10 to 15 minutes to launch, just as in the selection of documents, etc.
    Any suggestion would be appreciated gratefully. Thank you

    Hi mate,

    To be honest your ad is very generally and not detailed. I mean what kind of response to expect now?

    In addition, this issue on slow Windows Vista system asked 100 times before I think and if you use the forum search, you should find enough results on this problem.

    But I can give you some short tips:
    -Defragment your HARD drive
    -Uninstall all of the software that you don't need
    -Use CCleaner to clean the Windows registry
    -Disable the start up programs you don't need msconfig
    -http://aps2.toshiba-tro.de/kb0/FAQ9401B10001R01.htm

    Good luck! ;)

  • Windows 7 slow operation.

    I use win7 64 bit. my pc is very slow. I tried many commercial software but does not. I also delete the cookies and temp files and used msconfig for startup time software. by a source, there are many mistakes in my system event viewer. I enclose the error with this file. Please suggest the solution.

    It's link to the error.evtx file:

    https://drive.Google.com/file/d/0b-UvXTqs9EJDR1M5MGdCNzNSMlE/edit?USP=sharing

    Log name: System
    Source: Microsoft-Windows-TaskScheduler
    Date: 29/04/2014-07:51:16
    Event ID: 413
    Task category: critical error Service
    Level: error
    Description:
    Task Scheduler service could not load the tasks at the start of the service. Additional data: error value: 2147549183.

    Suggestion:

    You can also consult the registry. All tasks are stored in the next branch.

    HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Windows NT\CurrentVersion\Schedule\TaskCache\Tasks

    Check if the following tasks on the branches are all present.

    AD management of the RMS (manual) rights policy template
    SystemSoundsService
    WindowsParentalControls
    WindowsParentalControlsMigration
    Backup Analyzer Windows

    In addition, check if the spots are present in the tree of the task. Please check in the next branch. The structure is identical to it in the C:\Windows\System32\Tasks folder

    HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Windows NT\CurrentVersion\Schedule\TaskCache\Tree\Microsoft
    Source: Arthur Xie http://social.technet.microsoft.com/Forums/windows/en-US/1f677dd3-bdb7-4650-9164-d8e2c66b7708/task-scheduler-error

    Log name: Application
    Source: Microsoft-Windows-WMI
    Date: 29/04/2014-07:51:49
    Event ID: 10
    Level: error
    Description:
    Filter event with the query "SELECT * FROM __InstanceModificationEvent WITHIN 60 WHERE TargetInstance ISA 'Win32_Processor' AND TargetInstance.LoadPercentage > 99" could not be reactivated in namespace '//./root/CIMV2' because of error 0 x 80041003.» Events cannot be delivered through this filter until the problem is resolved.

    To eliminate the recurring event ID: 10 errors in your Application log please run the fix it in this KB Article
    http://support.Microsoft.com/kb/2545227

    Log name: System
    Source: Service Control Manager
    Date: 29/04/2014-07:54:13
    Event ID: 7038
    Level: error
    Description:
    The nvUpdatusService service failed to connect as. \UpdatusUser with the password configured currently due to the following error:

    Connection failure: the specified account password has expired.

    To make sure that the service is configured properly, use the Services snap-in in Microsoft Management Console (MMC).

    Select Start, Control Panel, administrative tools, Services and locate the NVIDIA Update Service demon in the list. Right-click on the service and select Properties, logon tab, check the box in front of the Local System account, click apply and then click OK. Update NVIDIA services daemon right click and select start from the menu drop down.

    Source: Muad Dib http://www.sevenforums.com/graphic-cards/240229-errors-nvidia-update-unable-log.html

    Log name: System
    Source: Microsoft-Windows-SharedAccess_NAT
    Date: 29/04/2014 08:33:55
    Event ID: 31004
    Level: error
    Description:
    The DNS proxy agent failed to allocate 0 bytes of memory. This may indicate that the lack of virtual memory, or that the Manager of memory has encountered an error internal system.

    The two events described in this article do not any problem with the operating system, or that they cause problems with Internet connection sharing feature. These events can be ignored safely, as they are poorly recorded because a request for allocation of zero bytes of memory is not valid.
    Source: http://support.microsoft.com/kb/2550111

  • iMac (late 2012) slow operation.  EtreCheck report includes

    Don't know what else to do, as someone has suggestions to get my mac running a little faster?

    Thanks, Corey.

    EtreCheck version: 3.0.2 (306)

    Report generated 2016-08-23 19:49:04

    Download EtreCheck from https://etrecheck.com

    Time 05:03

    Performance: Below average

    Click the [Support] links to help with non-Apple products.

    Click [details] for more information on this line.

    Problem: Computer is too slow

    Hardware Information:

    iMac (21.5 inch, at the end of 2012)

    [Data sheet] - [User Guide] - [warranty & Service]

    iMac - model: iMac13, 1

    1 3.1 GHz Intel Core i7 CPU: 4 strands

    16 GB expandable RAM - [Instructions]

    BANK 0/DIMM0

    OK 8 GB DDR3 1600 MHz

    BANK 1/DIMM0

    OK 8 GB DDR3 1600 MHz

    Bluetooth: Good - transfer/Airdrop2 taken in charge

    Wireless: en1: 802.11 a/b/g/n

    Video information:

    NVIDIA GeForce GT 650M - VRAM: 512 MB

    iMac, 1920 x 1080

    Software:

    OS X El Capitan 10.11.6 15G (31) - time since started: about 7 days

    Disc information:

    HTS541010A9E662 disk HARD APPLE disk0: (1 TB) (rotation)

    EFI (disk0s1) < not mounted >: 210 MB

    iMac (disk0s2) /: 999,35 (Go 197,23 free)

    Recovery HD (disk0s3) < not mounted > [recovery]: 650 MB

    ST1000LM024 HN-M101MBB disk1: (1 TB) (rotation)

    disk1s1 (disk1s1) < not mounted >: 32 KB

    Backup (disk1s3) / Volumes/Backup: 1.00 TB (22,53 GB free)

    USB information:

    Apple Inc. BRCM20702 hub.

    Apple Inc. Bluetooth USB host controller.

    Apple, Inc. keyboard Hub 15.63 GB

    SanDisk Cruzer U 15,63 GB

    EFI (disk2s1) < not mounted >: 210 MB

    Coreys USB (disk2s2) Volumes/Coreys USB: 15.29 go-go (15.23 free)

    Apple Inc. Apple Keyboard

    Apple Inc. FaceTime HD camera (built-in)

    Tablet PTZ-930

    Lightning information:

    Apple Inc. Thunderbolt_bus.

    INC. OF BUFFALO HD-PATU3

    Guardian:

    Mac App Store and identified developers

    Kernel extensions:

    / Library/Extensions

    com.Wacom.kext.FTDI [no charge] (1.0 - SDK 10.10 - 2016-08-01) [Support]

    / System/Library/Extensions

    at.obdev.nke.LittleSnitch [no charge] (3.0.3 - SDK 10.8 - 2016-08-01) [Support]

    com [no charge]. Cycling74.driver.Soundflower (1.2.1 - 2016-08-01) [Support]

    com.Wacom.kext.wacomtablet [no charge] (Tablet Wacom 6.3.11 - 3 - SDK 10.10 - 2016-08-01) [Support]

    Launch system officers:

    [no charge] 8 tasks of Apple

    [loading] 142 jobs Apple

    [running] Apple 88 jobs

    Launch system demons:

    [cannot] com.apple.csrutil.report.plist (2015-08-22)

    [no charge] 42 tasks of Apple

    tasks of Apple 152 [loading]

    tasks of Apple 96 [performance]

    Launch officers:

    [cannot] com.adobe.ARMDCHelper.cc24aef4a1b90ed56a725c38014c95072f92651fb65e1bf9c8e43c37a2 3d420d.plist (2016-07-13) [Support]

    com.adobe.AdobeCreativeCloud.plist [running] (2016-06-24) [Support]

    [loading] com.oracle.java.Java - Updater.plist (2014-03-01) [Support]

    [loaded] com.teamviewer.teamviewer.plist (2015-09-29) [Support]

    [loaded] com.teamviewer.teamviewer_desktop.plist (2015-09-29) [Support]

    com.Wacom.wacomtablet.plist [running] (2015-08-25) [Support]

    Launch demons:

    [loading] com.adobe.ARMDC.Communicator.plist (2016-07-13) [Support]

    [loading] com.adobe.ARMDC.SMJobBlessHelper.plist (2016-07-13) [Support]

    com.Adobe.adobeupdatedaemon.plist [running] (2016-06-24) [Support]

    com.Adobe.agsservice.plist [running] (2016-08-15) [Support]

    [loading] com.adobe.fpsaud.plist (2016-06-28) [Support]

    [loaded] com.barebones.TextWrangler.plist (2011-02-09) [Support]

    [loading] com.insynchq.insync.daemon.plist (2012-01-10) [Support]

    [loading] com.malwarebytes.HelperTool.plist (2016-08-16) [Support]

    [loading] com.oracle.java.Helper - Tool.plist (2014-03-01) [Support]

    com.rogueamoeba.Hermes.plist [loading] (2008-01-09) [Support]

    [loading] com.teamviewer.Helper.plist (2015-09-29) [Support]

    [loaded] com.teamviewer.teamviewer_service.plist (2015-09-29) [Support]

    User launch officers:

    [loading] com.adobe.AAM.Updater - 1.0.plist (2016-07-21) [Support]

    [loading] com.google.keystone.agent.plist (2016-08-20) [Support]

    Items in user login:

    iTunesHelper hidden Application (/ Applications/iTunes.app/Contents/MacOS/iTunesHelper.app)

    Hidden Dropbox application (/ Applications/Dropbox.app)

    Hidden AdobeResourceSynchronizer Application (/ Applications/Adobe Acrobat XI Pro/Adobe Acrobat Pro.app/Contents/Support/AdobeResourceSynchronizer.app)

    Hidden Google Drive application (/ Applications/Google Drive.app)

    ATLoginItemHelper SMLoginItem (/ Applications/DrCleaner.app/Contents/Library/LoginItems/ATLoginItemHelper.app)

    Plug-ins Internet:

    AmazonMP3DownloaderPlugin101736: AmazonMP3DownloaderPlugin 1.0.17 - 10.4 SDK (2013-03-16) [Support]

    AdobePDFViewerNPAPI: 15.007.20033 - SDK 10.8 (2015-03-17) [Support]

    Flash Player: 22.0.0.209 - SDK 10.9 (2016-08-16) [Support]

    AdobePDFViewer: 15.007.20033 - SDK 10.8 (2015-03-17) [Support]

    ContentUploaderPlugin: 1.2 (2013-03-16) [Support]

    googletalkbrowserplugin: 5.41.3.0 - 10.8 SDK (2015-12-11) [Support]

    Yahoo! Installer: 1.0.105 (2013-03-16) [Support]

    iPhotoPhotocast: 7.0 (2013-03-16)

    RealPlayer Plugin: unknown

    DirectorShockwave: 11.5.0r600 (2013-03-16) [Support]

    QuickTime Plugin: 7.7.3 (2016-07-19)

    FlashPlayer - 10.6: 22.0.0.209 - SDK 10.9 (2016-08-16) [Support]

    AdobeAAMDetect: 3.0.0.0 - SDK 10.9 (2016-06-24), [Support]

    npgtpo3dautoplugin: Unknown (2014-12-04)

    DivXBrowserPlugin: 1.3 (2013-03-16) [Support]

    Web of Google Earth plugin: 7.1 (2016-08-19) [Support]

    Default browser: 601 - SDK 10.11 (2016-07-19)

    Flip4Mac WMV Plugin: 2.3.3.3 (2013-03-16) [Support]

    o1dbrowserplugin: 5.41.3.0 - 10.8 SDK (2016-02-29) [Support]

    WacomTabletPlugin: WacomTabletPlugin 2.1.0.6 - SDK 10.9 (2015-08-25) [Support]

    JavaAppletPlugin: Java 8 update 101 build 13 (2016-08-12) check the version of

    Shutterfly: 3.0.1 (2013-03-16) [Support]

    User Plug-ins internet:

    fbplugin_1_0_3: unknown (2010-02-25) [Support]

    Picasa: 1.0 (2010-04-09) [Support]

    Safari extensions:

    AdBlock - BetaFish, Inc. - https://getadblock.com (2016-05-22)

    3rd party preference panes:

    Flash Player (2016-06-28) [Support]

    Java (2016-08-12) [Support]

    WacomTablet (2015-08-25) [Support]

    Time Machine:

    Automatic backup: YES

    Volumes to back up:

    iMac: disc size: 999,35 GB disc used: 802,12 GB

    Destinations:

    Backup [Local]

    Total size: 1.00 TB

    Total number of backups: 52

    An older backup: 16/05/16, 06:30

    Last backup: 23/08/16, 18:44

    Backup disk size: too small

    Backup TB 1.00 size < (disc 802,12 GB X 3)

    Top of page process CPU:

    mdworker (14) 18%

    2% WindowServer

    backupd 2%

    kernel_task 2%

    0% DrCleaner

    Top of page process of memory:

    1.43 GB kernel_task

    Mdworker (14) 246 MB

    Mds_stores 115 MB

    Finder 82 MB

    Suggestd 66 MB

    Virtual memory information:

    10.00 GB of free RAM

    6.08 used GB RAM (2.42 GB being cached)

    340 MB used Swap

    Diagnostic information:

    August 23, 2016, 14:11:13 ~/Library/Logs/DiagnosticReports/identityservicesd_2016-08-23-141113_[redacted] .crash

    / System/Library/PrivateFrameworks/IDS. MacOS/identityservicesd Framework/identityservicesd.app/Contents/

    August 23, 2016, 10:04:24 AM/Library/Logs/DiagnosticReports/Adobe Photoshop CC 2015.5_2016 - 08-23-100424_ [redacted].cpu_resource.diag [details]

    / Applications/Adobe Photoshop 2015.5 CC/Adobe Photoshop 2015.5.app/Contents/MacOS/Adobe Photoshop 2015.5 CC CC

    August 20, 2016, 10:00:02 PM/Library/Logs/DiagnosticReports/do Book_2016-08-20-220002_ [redacted].cpu_resource.diag [details]

    / The Book.app/Contents/MacOS/Font applications/font book

    If it was my Mac, I would uninstall all the following names, then restart and test performance.  If the problem is resolved, then only reinstall as absolutely necessary:

    Applications:

    TeamViewer

    Java

    Malwarebytes

    Kernel extensions:

    at.obdev.nke.LittleSnitch (3.0.3 - SDK 10.8 - 2016-08-01)

    User Login items:

    ATLoginItemHelper SMLoginItem (/ Applications/DrCleaner.app/Contents/Library/LoginItems/ATLoginItemHelper.app)

    Internet Plug-ins:

    ContentUploaderPlugin: 1.2

    googletalkbrowserplugin: 5.41.3.0

    Yahoo! Installer: 1.0.105

    iPhotoPhotocast: 7.0

    RealPlayer Plugin: unknown

    DirectorShockwave: 11.5.0r600

    npgtpo3dautoplugin: unknown

    DivXBrowserPlugin: 1.3

    Flip4Mac WMV Plugin: 2.3.3.3

    o1dbrowserplugin: 5.41.3.0

    Shutterfly: 3.0.1

    fbplugin_1_0_3: unknown

    Picasa: 1.0

    AdBlock - BetaFish, Inc.

    JavaAppletPlugin: Java 8 update 101 build 13

    Also, while troubleshooting, eject all USB drives.

  • Does previous time Machine, operating system?

    I upgraded my OS to El captain and before that, I did a backup using Time Machine and now I would like to backup again to take security records of some jobs. The fact that Time Machine will not erase the previous operating system (Yosemite) in the new backup?

    Thanks in advance.

    Use Time Machine to back up or restore your Mac - Apple Support

    Restore an entire disk Although the procedure is a bit tedious, Time Machine can also return your drive whole (including OS X itself) to its State at some point in the past.

    How to create a clone of startup

  • MacBook 13''(late-2009) slow operation.

    Hi all

    I bought my macbook 13 "in 2010 and after 4-5 months of use it has started running very slowly. The ball was running constantly, apps were taking ages to start and they were usually crashing. My macbook was still under warranty so I took it on the apple support. They changed the hard drive and my macbook has been brought back to life.

    I realize I should have called for a new Macbook because a year later the problem reappears. My warranty has expired so I found the patience to be the only solution.

    Not to mention this assistance local Apple refused to replace the plastic surface that broke away from the bottom of the system case. The reason is that the serial number was not enough, they also need a receipt of a point association bought 5 years ago. In any case, the most important is my macbook to work properly.

    I would be very grateful to anyone who wants to help!

    Help me please!

    Here is my EtreCheck report:

    Performance: Below average

    Click the [Support] links to help with non-Apple products.

    Click [details] for more information on this line.

    Problem: Computer is too slow

    Description:

    The computer is incredibly slow. It takes ages for applications to open and they are usually crashing. When I run 2 or 3 applications at the same time the computer becomes even slower.

    Hardware Information:

    MacBook (13 inch, late 2009)

    [Data sheet] - [User Guide] - [Warranty & Service]

    MacBook - model: MacBook6, 1

    1 2.26 GHz Intel Core 2 Duo CPU: 2 strands

    2 GB RAM - Insufficient RAM! Extensible - [Instructions]

    BANK 0/DIMM0

    ok 1 GB DDR3 1067 MHz

    BANK 1/DIMM0

    ok 1 GB DDR3 1067 MHz

    Bluetooth: Old - transfer/Airdrop2 not supported

    Wireless: en1: 802.11 a/b/g/n

    Battery: Health = Normal - Cycle count = 1585 - SN = W00108EP69X7A

    Video information:

    NVIDIA GeForce 9400M - VRAM: 256 MB

    Color LCD 1280 x 800

    Software:

    OS X Yosemite 10.10.5 (14F1509) - since startup time: less than an hour

    Disc information:

    TOSHIBA MK2555GSXF disk0: (250,06 GB) (rotation)

    EFI (disk0s1) : 210 MB

    Macintosh HD (disk0s2) /: go-go 249,20 (38,89) free

    HD (disk0s3) [recovery] recovery: 650 MB

    MATSHITADVD-R UJ-898)

    USB information:

    Built-in ISight from Apple Inc..

    Apple Inc. Apple keyboard / Trackpad

    Apple Inc. BRCM2070 hub.

    Apple Inc. Bluetooth USB host controller.

    Guardian:

    Mac App Store and identified developers

    Launch officers:

    [loading] com.hp.help.tocgenerator.plist [Support]

    [loading] com.oracle.java.Java - Updater.plist [Support]

    Launch demons:

    [loading] com.adobe.fpsaud.plist [Support]

    [loading] com.cloudpath.maccmd.plist [Support]

    [loading] com.oracle.java.Helper - Tool.plist [Support]

    [loading] com.oracle.java.JavaUpdateHelper.plist [Support]

    User launch officers:

    [failure] com.facebook.videochat. [entrenched passage] .plist [Support]

    [loading] com.google.keystone.agent.plist [Support]

    [loading] com.spotify.webhelper.plist [Support]

    Items in user login:

    iTunesHelper hidden UNKNOWN (missing value)

    Dropbox application (/ Applications/Dropbox.app)

    Spotify hidden UNKNOWN (missing value)

    Application Octoshape (~ / Library/Octoshape/Octoshape.app)

    HP Scheduler application (/ Library/Application Support/Hewlett Packard/Software Update/HP Scheduler.app)

    Other applications:

    [ongoing] com.Apple.XPC.launchd.oneshot.0x10000001.Google Chrome

    [ongoing] com.Apple.XPC.launchd.oneshot.0x10000006.EtreCheck

    [ongoing] com.getdropbox.dropbox.27580

    [ongoing] com.octoshape.client.9404

    [ongoing] JP.co.Canon.cijscannerregister.67624

    Plug-ins Internet:

    JavaAppletPlugin: Version: Java 8 update 60 build 27 check version

    FlashPlayer - 10.6: Version: 19.0.0.245 - SDK 10.6 [Support]

    QuickTime Plugin: Version: 7.7.3

    Flash Player: Version: 19.0.0.245 - SDK 10.6 obsolete! Update

    AdobePDFViewer: Version: 10.1.1 [Support]

    DivXBrowserPlugin: Version: 2.0 [Support]

    AmazonMP3DownloaderPlugin101737: Version: unknown

    Default browser: Version: 600 - SDK 10.10

    Web of Google Earth plugin: Version: 7.1 [Support]

    OfficeLiveBrowserPlugin: Version: 12.2.8 [Support]

    iPhotoPhotocast: Version: 7.0

    User Plug-ins internet:

    OctoshapeWeb: Version: 1.0 - SDK 10.8 [Support]

    Safari extensions:

    AdBlock

    3rd party preference panes:

    Flash Player [Support]

    Java [Support]

    Perian [Support]

    Time Machine:

    Mobile backups: WE

    Automatic backup: YES

    Volumes to back up:

    Macintosh HD: Disc size: 249,20 GB disc used: 210,31 GB

    Destinations:

    Time Machine [Local] backups

    Total size: 639,79 GB

    Total number of backups: 6

    An older backup: 12/10/10, 12:41

    Last backup: 22 09/15, 11:58

    Size of backup drive: adequate

    Backup size GB 639,79 > (disc 210,31 GB X 3)

    Top of page process CPU:

    10% WindowServer

    3% kernel_task

    2% hidd

    2% Google Chrome

    1% Google Chrome Helper (4)

    Top of page process of memory:

    696 MB Google Chrome Helper (6)

    213 MB kernel_task

    111 MB Google Chrome

    Finder 37 MB

    Mdworker (4) 35 MB

    Virtual memory information:

    20 MB of free RAM

    used 1.98 GB RAM (355 MB cache)

    1 MB used Swap

    Diagnostic information:

    29 January 2016, 11:49:52 self-test - spent

    January 27, 2016, 04:12:43 PM/Library/Logs/DiagnosticReports/Microsoft PowerPoint_2016-01-27-161243_ [redacted] .hang

    / Applications/Microsoft Office 2008/Microsoft PowerPoint PowerPoint.app/Contents/MacOS/Microsoft

    You win a lot of update you memory 2 GB is not enough for good work yosemite. You can run up to 16 GB, but you need a minimum of 4 GB.  http://eshop.macsales.com/shop/memory/Apple_MacBook_MacBook_Pro/Upgrade/DDR3_Whi you  The user of upper memory is hellper of Google Chrome. But which is made up of all the internet plugins. Chrome can be a bit of a memory hog. You can win a lot of info when executing programs and to have LAGS, by opening the activity monitor in the utilities and see what is using the memory.

  • Install Windows on SMU-8133 (with time real operating system already installed)

    Hi all

    I have an SMU-8133 NI with a real-time operating system (OR Real - Time PharLap 13.1). Now I want to install Windows on it and make it dual-boot (I want to keep the original real time operating system). So my question is how do I install Windows without erasing the current real time operating system?

    I tried to just install Win7 (starting from USB) but it says "Windows cannot be installed on disk 0 Partition 1" because she needs NTFS (what we have is the FAT I think). If Win7 is unavailable, Windows XP is also correct, but I still prefer Win7.

    Thank you!

    As a general rule, Windows don't play well with other operating systems installed on a drive, there will be some efforts to preserve the existing installation of RT OS if it is a requirement.  The simplest approach would be to wipe the entire disk, installing Windows and then reinstall LabVIEW RT.

    If you can start from scratch, you must first make sure that the partitioning is correct.  Since you did not purchase this as a Windows / controller dual boot RT initially, you do not have Windows installation media OR, correctly configure the partitions from disk for you.  You will need to do this manually during the installation of Windows.  The best approach is to create two partitions, one for the RT and a Windows.  RT the partition must be the first partition on the disk.  Install Windows on the second partition.  Once Windows is installed, convert the 1st partition to FAT32 using the built in Windows or a 3rd party partitioning tool utilities.  You should now have a system with Windows installed correctly and ready to be fitted to RT.

    Change your SMU-8133 to boot RT using the BIOS Setup menu or hardware DIP switch.  It should boot to safemode RT.  From another host PC, find your target in MAX.

    You can now put your target if you want to switch to the FAT32 file system the system of dependency files.  You can do this through MAX, or by using the utility RT USB key.  See herefor details on this step.

    Warning: Before doing this, ensure a MAXIMUM target shows already the correct amount of disk space for partition 1, you created.  If the RT operating system can see a usable partition (FAT32 or dependency) it will set up only that partition by avoiding to touch the rest of the disc.  If the 1st partition is not used, the formatting process will claim rather all of the disk because no usable partition has been found, and you may lose your Windows installation.

    After that, you can perform the installation of the RT of MAX software as usual.

    If you try to preserve your existing installation, you can try to combine the above process with one of the options available for the creation and restoration of RT disk images, although I am not very familiar with these tools and can not comment or creating an image on a single disk partition and restaurant then a disc multi-partition will be successful.  Here is a good linkto start with which describes the options available.

    -JoshH

  • behavior of stall Async timer

    At the service of my never-ending quest to understand async timers...

    I have an application with two asynchronous counters, each with its own recall, and I understand that both run on the same thread.

    So if one of the reminders of cale, will either never get planned?  If they really are on the same, single thread, so if you lock one two reminders (for example put it in an endless loop), then the callback else should never get called.

    Thank you.

    Has a handle on this at last.

    The problem was that only 15 sec timer takes 16 sec to complete the recall

    Since it was created first, and since it cannot follow it's own program, it works all the time and the 30 sec timer gets hungry

    What makes this difficult to analyze, it is that time within 15 sec timer reminder enough to 16 sec after that the timer of 30 seconds is a state change to the system.  So the problem in correlation with the behavior of the reminder 30 sec timer, but the main cause was the behaviour of the 15 sec timer callback.  Correlation is not causation, as they say.

    I've implemented a a LED on the GUI for each timer that gets set on when the timer reminder came and stopped when she leaves, and then I could see what was going on.

  • (Redirected) OptiPlex 7010 ultra slow operation of SSD

    Introduction:

    1. On OptiPlex 7010 with Win 8.1, I spend 1 TB HDD 500 GB Samsung EVO 850.
    2. All the drivers are updated, updated BIOS to newest. I use Samsung Data Migration to transfer the data.
    3. Fully updated the system works OK with original 1 TB HARD drive

    Result of migration:

    1. Slow start system
    2. The extremely slow system operation.

    Based on the Internet reading I have the following Questions:

    1. The result is slow bad SSD op?
    2. The result is slow op of aversion Dell Samsung SSD ;-)
    3. Anyone know anything unusual on OptiPlex 7010 (smart Marvel, capacitors or any other hidden gems)? (Software is updated so I guess that's a program installation configuration or HW)

    Receive a response

    Best of this post in the Hardware Forum general office, here:

    http://en.community.Dell.com/support-forums/desktop/f/3514.aspx

    Bev.

Maybe you are looking for