2004-06-09 19:09:16 +00:00
|
|
|
<?php
|
2004-04-21 23:44:16 +00:00
|
|
|
require_once("docutil.php");
|
|
|
|
|
|
|
|
page_head("Application development");
|
|
|
|
echo "
|
|
|
|
<h2>Cross-platform functions</h2>
|
|
|
|
<p>
|
|
|
|
Most POSIX calls are supported on Unix and Windows.
|
|
|
|
For areas that are different (e.g. scanning directories)
|
|
|
|
BOINC supplies some generic functions with implementations for all platforms.
|
|
|
|
Similar code may be available from other open-source projects.
|
|
|
|
|
|
|
|
<h2>Stack traces</h2>
|
|
|
|
<p>
|
|
|
|
You can use Stackwalker to generate symbolic stack traces
|
|
|
|
if your application crashes.
|
|
|
|
These traces will be returned in the
|
|
|
|
'stderr_out' field of results.
|
|
|
|
|
|
|
|
<h2>Windows-specific issues</h2>
|
|
|
|
<p>
|
|
|
|
The set of 'standard' DLL differs somewhat among
|
|
|
|
9X/NT/2000/XP.
|
|
|
|
To avoid crashing because a DLL is missing,
|
|
|
|
call ::LoadLibrary() and then get function pointers.
|
|
|
|
|
|
|
|
<h2>Unix-specific issues</h2>
|
|
|
|
<p>
|
|
|
|
static/dynamic linking
|
|
|
|
|
|
|
|
<h2>Cross-language issues</h2>
|
|
|
|
<p>
|
2004-07-21 21:30:25 +00:00
|
|
|
The BOINC API is implemented in C++.
|
|
|
|
Information about using it from C and FORTRAN is
|
|
|
|
<a href=fortran.php>here</a>.
|
2004-04-21 23:44:16 +00:00
|
|
|
";
|
|
|
|
page_tail();
|
|
|
|
?>
|