X-Git-Url: https://git.tokkee.org/?a=blobdiff_plain;f=program%2FTHREADS;h=b0481638e9ab1dfca9418b9ed2246ac776ebeb3b;hb=9cb06bb1e94793ca150dc03173a4157f71d2e124;hp=0dc5cec765638a0835c5cae5c0554d205c1f8b0e;hpb=3af98cc6615b90380900a788afa1ade52d6954cb;p=rrdtool-all.git diff --git a/program/THREADS b/program/THREADS index 0dc5cec7..b0481638 100644 --- a/program/THREADS +++ b/program/THREADS @@ -46,7 +46,7 @@ thread-safe. getopt uses global variables and behaves badly in a multithreaded application when called concurrently. Instead provide a *_r function taking all options as function parameters. You may provide argc and - **argv arguments for variable lenght argument lists. See + **argv arguments for variable length argument lists. See rrd_update_r as an example. * Do not use the parsetime function! @@ -54,4 +54,7 @@ thread-safe. It uses lots of global vars. You may use it in functions not designed to be thread-safe like functions wrapping the _r version of some operation (eg. rrd_create, but not in rrd_create_r) - + +WIN32 Platform Note (added 04/01/03): + +Both rrdtool.vcproj (MSVC++ 7.0) and rrd.dsw (MSVC++ 6.0) are configured to compile with rrd_thread_safe_nt.c.