Changes between Version 42 and Version 43 of BasicApi
- Timestamp:
- May 2, 2014, 11:01:23 PM (11 years ago)
Legend:
- Unmodified
- Added
- Removed
- Modified
-
BasicApi
v42 v43 196 196 == Reporting progress == #progress 197 197 198 The core client GUI displays the percent done of workunits in progress.198 The BOINC Manager displays the percent done of tasks in progress. 199 199 To keep this display current, an application should periodically call 200 200 … … 207 207 This function is fast and can be called frequently (once per second or more). 208 208 The 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; 210 it should call boinc_finish() with a nonzero error code.) 211 212 Many applications can supply only an approximate fraction done. 213 If your application can supply an accurate fraction done, use 214 {{{ 215 boinc_fraction_done_exact(double fraction_done); 216 }}} 212 217 == Timing information == 213 218