Changes between Version 25 and Version 26 of BasicApi
- Timestamp:
- Jan 1, 2010, 1:31:51 PM (15 years ago)
Legend:
- Unmodified
- Added
- Removed
- Modified
-
BasicApi
v25 v26 17 17 == Initialization and termination == #init 18 18 19 Other applications mustcall19 To initialize a single-thread program, call 20 20 21 21 {{{ … … 24 24 }}} 25 25 26 before calling other BOINC functions. 26 To initialize a multi-thread program, call 27 {{{ 28 int boinc_init_parallel(); 29 }}} 30 31 Initialization must be done before calling other BOINC functions. 27 32 28 33 When the application has completed it must call … … 33 38 }}} 34 39 35 `status` is nonzero if an error was encountered. This call does not return. 40 `status` is nonzero if an error was encountered. 41 This call does not return. 36 42 37 43 == Resolving file names == #filenames