~marcustomlinson/dspatch/trunk

« back to all changes in this revision

Viewing changes to include/DSPatch.h

  • Committer: Marcus Tomlinson
  • Date: 2014-08-17 10:57:23 UTC
  • mfrom: (21.1.4 2.62)
  • Revision ID: marcus.tomlinson@canonical.com-20140817105723-qtm8qkmegbhqyldu
Merged v2.62

Show diffs side-by-side

added added

removed removed

Lines of Context:
41
41
scheduler, they are automatically added to the DSPatch global circuit when parallel processing is
42
42
required (i.e. StartAutoTick() is called). Although global circuit operations are automatic and
43
43
transparent to the user, if required, the user is may set the number of threads used by the global
44
 
circuit by calling SetGlobalThreadCount(). 
 
44
circuit by calling SetGlobalThreadCount().
45
45
 
46
46
Lastly, the Finalize() method must be called on application exit in order for DSPatch to perform
47
47
the necessary memory cleanup.
101
101
  component to form part of the DSPatch framework, designers simply have to derive their
102
102
  component from the DspComponent base class, configure the component's IO buses, and implement
103
103
  the virtual Process_() callback method.
104
 
  
 
104
 
105
105
\n
106
106
 
107
107
\section features_sec Features
372
372
 
373
373
\section changelog Changelog
374
374
 
 
375
\subsection v262 v.2.62 (17 August 2014)
 
376
  - Added alternative Get* methods returning const pointers.
 
377
  - Increased build warning level and fixed all issues.
 
378
  - Uninitialised variable fix for DspParameter.
 
379
  - Fixed GetInput/OutputName() empty string return bug.
 
380
 
375
381
\subsection v261 v.2.61 (16 June 2014)
376
382
  - Introduced component parameters (DspParameter).
377
383
  - Added DspComponent user callback mechanism.