CVS log for linuxsampler/src/common/Thread.cpp

(logo)

Help

(back) Up to [ls] / linuxsampler / src / common

Request diff between arbitrary revisions


Default branch: MAIN
Bookmark a link to: HEAD / (download)

Revision 1.15 / (as text) / (view) - annotate - [select for diffs] , Fri Jan 25 15:06:01 2008 UTC (2 years, 7 months ago) by nagata
Branch: MAIN
CVS Tags: release1_0_0, HEAD
Changes since 1.14: +5 -1 lines
Diff to previous 1.14
* added a new config option --enable-pthread-testcancel, which uses
pthread_testcancel() instead of asynchronous canceling (needed for OSX)

Revision 1.14 / (as text) / (view) - annotate - [select for diffs] , Wed Nov 14 23:41:58 2007 UTC (2 years, 9 months ago) by senoner
Branch: MAIN
CVS Tags: release0_5_1
Changes since 1.13: +135 -0 lines
Diff to previous 1.13
* 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 1.13 / (as text) / (view) - annotate - [select for diffs] , Sun Oct 14 21:00:15 2007 UTC (2 years, 10 months ago) by schoenebeck
Branch: MAIN
CVS Tags: release0_5_0
Changes since 1.12: +6 -2 lines
Diff to previous 1.12
* 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 1.12 / (as text) / (view) - annotate - [select for diffs] , Sun Jun 10 05:54:54 2007 UTC (3 years, 2 months ago) by persson
Branch: MAIN
Changes since 1.11: +8 -6 lines
Diff to previous 1.11
* small fix for previous Thread change: don't try to change static
  priority for non-RT threads

Revision 1.11 / (as text) / (view) - annotate - [select for diffs] , Wed Jun 6 17:50:03 2007 UTC (3 years, 2 months ago) by schoenebeck
Branch: MAIN
Changes since 1.10: +76 -40 lines
Diff to previous 1.10
* 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 1.10 / (as text) / (view) - annotate - [select for diffs] , Tue May 29 22:59:35 2007 UTC (3 years, 3 months ago) by schoenebeck
Branch: MAIN
Changes since 1.9: +12 -0 lines
Diff to previous 1.9
* 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 1.9 / (as text) / (view) - annotate - [select for diffs] , Sun Apr 10 10:55:43 2005 UTC (5 years, 4 months ago) by persson
Branch: MAIN
CVS Tags: release0_4_0, release0_3_3, release0_3_2, release0_3_1
Changes since 1.8: +2 -0 lines
Diff to previous 1.8
* removed some build warnings
* fixed a bug with hanging notes when using sustain pedal
* release samples are not triggered anymore when sustain pedal is down

Revision 1.8 / (as text) / (view) - annotate - [select for diffs] , Mon Feb 21 11:09:15 2005 UTC (5 years, 6 months ago) by letz
Branch: MAIN
CVS Tags: v0_2_0
Changes since 1.7: +2 -0 lines
Diff to previous 1.7
Fix for OSX compilation (mlockall function not available...)

Revision 1.7 / (as text) / (view) - annotate - [select for diffs] , Sat Feb 19 02:40:23 2005 UTC (5 years, 6 months ago) by schoenebeck
Branch: MAIN
Changes since 1.6: +16 -6 lines
Diff to previous 1.6
* fixed possibility that memory got not locked
* immediately set instrument status when calling LOAD INSTUMENT NON_MODAL

Revision 1.6 / (as text) / (view) - annotate - [select for diffs] , Wed Feb 9 01:22:17 2005 UTC (5 years, 6 months ago) by schoenebeck
Branch: MAIN
Changes since 1.5: +2 -1 lines
Diff to previous 1.5
* bunch of fixes for OSX (patch by Stephane Letz)

Revision 1.5 / (as text) / (view) - annotate - [select for diffs] , Tue Jan 25 22:11:43 2005 UTC (5 years, 7 months ago) by schoenebeck
Branch: MAIN
Changes since 1.4: +1 -0 lines
Diff to previous 1.4
* fixed some memory leaks (patch by Gene Anders)

Revision 1.4 / (as text) / (view) - annotate - [select for diffs] , Tue May 4 17:52:24 2004 UTC (6 years, 4 months ago) by schoenebeck
Branch: MAIN
Changes since 1.3: +1 -0 lines
Diff to previous 1.3
* src/common/Thread.cpp: threads are now stoppable even if they are
  waiting for a condition
* src/common/Condition.cpp: fixed little misbehavior of Set() method,
  which locked the Condition object on return
* src/testcases: added a couple of new unit tests (against classes
  'Mutex', 'Condition' and 'Thread')

Revision 1.3 / (as text) / (view) - annotate - [select for diffs] , Sun May 2 16:45:42 2004 UTC (6 years, 4 months ago) by schoenebeck
Branch: MAIN
Changes since 1.2: +31 -6 lines
Diff to previous 1.2
* 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 1.2 / (as text) / (view) - annotate - [select for diffs] , Tue Apr 27 08:21:58 2004 UTC (6 years, 4 months ago) by schoenebeck
Branch: MAIN
Changes since 1.1: +1 -1 lines
Diff to previous 1.1
updated copyright header for 2004

Revision 1.1 / (as text) / (view) - annotate - [select for diffs] , Mon Apr 26 16:15:49 2004 UTC (6 years, 4 months ago) by schoenebeck
Branch: MAIN
* 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 a file. You may select a symbolic revision name using the selection box or you may type in a numeric name using the type-in text box.

Diffs between and
Type of Diff should be a

View only Branch:
Sort log by:

LinuxSampler Developers
Powered by
ViewCVS