Changes between Version 42 and Version 43 of BasicApi


Ignore:
Timestamp:
May 2, 2014, 11:01:23 PM (10 years ago)
Author:
davea
Comment:

--

Legend:

Unmodified
Added
Removed
Modified
  • BasicApi

    v42 v43  
    196196== Reporting progress == #progress
    197197
    198 The core client GUI displays the percent done of workunits in progress.
     198The BOINC Manager displays the percent done of tasks in progress.
    199199To keep this display current, an application should periodically call
    200200
     
    207207This function is fast and can be called frequently (once per second or more).
    208208The sequence of arguments in successive calls should be non-decreasing.
    209 An application should never 'reset' and start over if an error occurs;
    210 it should exit with an error code.
    211 
     209(An application should not 'reset' and start over if an error occurs;
     210it should call boinc_finish() with a nonzero error code.)
     211
     212Many applications can supply only an approximate fraction done.
     213If your application can supply an accurate fraction done, use
     214{{{
     215boinc_fraction_done_exact(double fraction_done);
     216}}}
    212217== Timing information ==
    213218