/[svn]/linuxsampler/trunk/src/common/Thread.h
ViewVC logotype

Log of /linuxsampler/trunk/src/common/Thread.h

Parent Directory Parent Directory | Revision Log Revision Log


Links to HEAD: (view) (download) (as text) (annotate)
Sticky Revision:

Revision 3290 - (view) (download) (as text) (annotate) - [select for diffs]
Modified Fri Jun 23 12:24:58 2017 UTC (6 years, 9 months ago) by schoenebeck
File length: 7741 byte(s)
Diff to previous 2185
* Revised fundamental C++ classes "Thread", "Mutex" and
  "Condition" which fixes potential undefined behavior
  (note: this addresses mainly the POSIX implementation,
   Win32 is untested yet and would also need an update).
* Bumped version (2.0.0.svn64).


Revision 2185 - (view) (download) (as text) (annotate) - [select for diffs]
Modified Sun Jun 19 09:09:38 2011 UTC (12 years, 10 months ago) by persson
File length: 5731 byte(s)
Diff to previous 1653
* fixed compilation with gcc 4.6.1
* another "make dist" fix, for LV2 plugin
* made --enable-pthread-testcancel default on Mac OS X
* Mac OS X: fixed hanging threads


Revision 1653 - (view) (download) (as text) (annotate) - [select for diffs]
Modified Wed Jan 30 01:51:46 2008 UTC (16 years, 2 months ago) by schoenebeck
File length: 5820 byte(s)
Diff to previous 1649
* added support for notifying instrument editors on note-on / note-off
  events (e.g. to highlight the pressed keys on the virtual keyboard
  of gigedit)
* fixed return value of recently added Thread::TestCancel() method
* be verbose on DLL load errors (on Linux)


Revision 1649 - (view) (download) (as text) (annotate) - [select for diffs]
Modified Fri Jan 25 15:06:02 2008 UTC (16 years, 2 months ago) by nagata
File length: 5812 byte(s)
Diff to previous 1482
* added a new config option --enable-pthread-testcancel, which uses
pthread_testcancel() instead of asynchronous canceling (needed for OSX)


Revision 1482 - (view) (download) (as text) (annotate) - [select for diffs]
Modified Thu Nov 15 01:15:12 2007 UTC (16 years, 5 months ago) by schoenebeck
File length: 5702 byte(s)
Diff to previous 1481
- bugfix: recent win32 commit broke the non-win code
- fixed API doc comments


Revision 1481 - (view) (download) (as text) (annotate) - [select for diffs]
Modified Wed Nov 14 23:42:15 2007 UTC (16 years, 5 months ago) by senoner
File length: 5610 byte(s)
Diff to previous 1424
* win32 port work in progress:
* - implemented win32 support in the following classes:
* Thread, Condition, Mutex, Path, LscpServer
* - lscp.y use DONTCARE instead of VOID
*  (a win32 symbol defined)
* - completed win32 editor plugin loader


Revision 1424 - (view) (download) (as text) (annotate) - [select for diffs]
Modified Sun Oct 14 22:00:17 2007 UTC (16 years, 6 months ago) by schoenebeck
File length: 3197 byte(s)
Diff to previous 1221
* code cleanup:
- global.h now only covers global definitions that are needed for the C++
  API header files, all implementation internal global definitions are now
  in global_private.h
- atomic.h is not exposed to the C++ API anymore (replaced the references
  in SynchronizedConfig.h for this with local definitions)
- no need to include config.h anymore for using LS's API header files
- DB instruments classes are not exposed to the C++ API
- POSIX callback functions of Thread.h are hidden
- the (optional) gig Engine benchmark compiles again
- updated Doxyfile.in
- fixed warnings in API doc generation
* preparations for release 0.5.0


Revision 1221 - (view) (download) (as text) (annotate) - [select for diffs]
Modified Wed Jun 6 18:50:03 2007 UTC (16 years, 10 months ago) by schoenebeck
File length: 3318 byte(s)
Diff to previous 1212
* fixed several issues in fundamental "Thread" class: set scheduling
  policy and priority on thread level, set a minimum stack size for
  thread (TODO: a reasonable value yet to be tested), bugfix: non-RT
  threads simply inherited properties of starting thread instead of
  setting their own policy and priority
* updated and fixed test cases (haven't been touched in a while, but
  are now all running successfully through all cases)


Revision 1212 - (view) (download) (as text) (annotate) - [select for diffs]
Modified Tue May 29 23:59:36 2007 UTC (16 years, 10 months ago) by schoenebeck
File length: 3391 byte(s)
Diff to previous 392
* added highly experimental support for on-the-fly instrument editing
  within the sampler's process (by using instrument editor plugins),
  you'll notice the new "Registered instrument editors:" message on
  startup, the plugin path can be overridden at compile time with
  ./configure --enable-plugin-dir=/some/dir
* added a new LSCP command "EDIT INSTRUMENT <sampler-channel>" to spawn
  a matching instrument editor for the instrument on the given sampler
  channel (LSCP command syntax might be subject to change soon)
* config.h is not going to be installed along with liblinuxsampler's
  API header files anymore (not necessary anymore)
* take care of $(DESTDIR) when creating the instruments DB on 'make
  install' rule (needed for packaging and cross compilation)
* bumped version to 0.4.0.5cvs


Revision 392 - (view) (download) (as text) (annotate) - [select for diffs]
Modified Sat Feb 19 02:40:24 2005 UTC (19 years, 2 months ago) by schoenebeck
File length: 3278 byte(s)
Diff to previous 57
* fixed possibility that memory got not locked
* immediately set instrument status when calling LOAD INSTUMENT NON_MODAL


Revision 57 - (view) (download) (as text) (annotate) - [select for diffs]
Modified Sun May 2 17:45:43 2004 UTC (19 years, 11 months ago) by schoenebeck
File length: 3149 byte(s)
Diff to previous 56
* src/common/Thread.cpp: method StartThread() now blocks until thread
  actually runs, mlockall() will only be applied for realtime threads
* libtoolized liblinuxsampler
* initiated automatic unit tests against the LinuxSampler codebase
  (see src/testcases): already added a couple of tests for the Thread and
  Mutex classes, you have to explicitly compile the unit tests by running
  'make testcases' (you need to have cppunit installed though) and then you
  can run the console version of the test runner by calling
  'src/testcases/linuxsamplertest'
* src/Sampler.h: added API documentation


Revision 56 - (view) (download) (as text) (annotate) - [select for diffs]
Modified Tue Apr 27 09:21:58 2004 UTC (19 years, 11 months ago) by schoenebeck
File length: 3057 byte(s)
Diff to previous 53
updated copyright header for 2004


Revision 53 - (view) (download) (as text) (annotate) - [select for diffs]
Added Mon Apr 26 17:15:51 2004 UTC (19 years, 11 months ago) by schoenebeck
File length: 3057 byte(s)
* completely restructured source tree
* implemented multi channel support
* implemented instrument manager, which controls sharing of instruments
  between multiple sampler engines / sampler channels
* created abstract classes 'AudioOutputDevice' and 'MidiInputDevice' for
  convenient implementation of further audio output driver and MIDI input
  driver for LinuxSampler
* implemented following LSCP commands: 'SET CHANNEL MIDI INPUT TYPE',
  'LOAD ENGINE', 'GET CHANNELS', 'ADD CHANNEL', 'REMOVE CHANNEL',
  'SET CHANNEL AUDIO OUTPUT TYPE'
* temporarily removed all command line options
* LSCP server is now launched by default


This form allows you to request diffs between any two revisions of this file. For each of the two "sides" of the diff, enter a numeric revision.

  Diffs between and
  Type of Diff should be a

  ViewVC Help
Powered by ViewVC