Changes between Version 25 and Version 26 of BasicApi


Ignore:
Timestamp:
Jan 1, 2010, 1:31:51 PM (14 years ago)
Author:
davea
Comment:

--

Legend:

Unmodified
Added
Removed
Modified
  • BasicApi

    v25 v26  
    1717== Initialization and termination == #init
    1818
    19 Other applications must call
     19To initialize a single-thread program, call
    2020
    2121{{{
     
    2424}}}
    2525
    26 before calling other BOINC functions.
     26To initialize a multi-thread program, call
     27{{{
     28int boinc_init_parallel();
     29}}}
     30
     31Initialization must be done before calling other BOINC functions.
    2732
    2833When the application has completed it must call
     
    3338}}}
    3439
    35 `status` is nonzero if an error was encountered. This call does not return.
     40`status` is nonzero if an error was encountered.
     41This call does not return.
    3642
    3743== Resolving file names == #filenames