/[svn]/linuxsampler/trunk/src/common/Mutex.cpp
ViewVC logotype

Log of /linuxsampler/trunk/src/common/Mutex.cpp

Parent Directory Parent Directory | Revision Log Revision Log


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

Revision 3455 - (view) (download) (annotate) - [select for diffs]
Modified Sun Jan 27 10:07:54 2019 UTC (5 years, 2 months ago) by persson
File length: 4554 byte(s)
Diff to previous 3290
* Fixed some compiler warnings
* Fixed compilation error when cross-compiling to Mac


Revision 3290 - (view) (download) (annotate) - [select for diffs]
Modified Fri Jun 23 12:24:58 2017 UTC (6 years, 9 months ago) by schoenebeck
File length: 4626 byte(s)
Diff to previous 3054
* 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 3054 - (view) (download) (annotate) - [select for diffs]
Modified Thu Dec 15 12:47:45 2016 UTC (7 years, 4 months ago) by schoenebeck
File length: 4528 byte(s)
Diff to previous 1481
* Fixed numerous compiler warnings.
* Bumped version (2.0.0.svn32).


Revision 1481 - (view) (download) (annotate) - [select for diffs]
Modified Wed Nov 14 23:42:15 2007 UTC (16 years, 5 months ago) by senoner
File length: 4249 byte(s)
Diff to previous 1149
* 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 1149 - (view) (download) (annotate) - [select for diffs]
Modified Sat Apr 7 22:32:47 2007 UTC (17 years ago) by schoenebeck
File length: 3681 byte(s)
Diff to previous 932
* minor fix of EGDecay
* fixed compilation errors regarding OSX
(patch by Toshi Nagata)


Revision 932 - (view) (download) (annotate) - [select for diffs]
Modified Sun Nov 5 08:50:43 2006 UTC (17 years, 5 months ago) by persson
File length: 3300 byte(s)
Diff to previous 880
* fixed mutex initialization bug


Revision 880 - (view) (download) (annotate) - [select for diffs]
Modified Tue Jun 27 22:57:37 2006 UTC (17 years, 9 months ago) by schoenebeck
File length: 3200 byte(s)
Diff to previous 830
just some refactoring work:
- renamed class LinuxSamplerException -> Exception
- encapsulated LS API relevant files into LS namespace
- removed unnecessary header inclusions


Revision 830 - (view) (download) (annotate) - [select for diffs]
Modified Sun Jan 15 18:23:11 2006 UTC (18 years, 3 months ago) by persson
File length: 3068 byte(s)
Diff to previous 819
* added linear interpolation of volume modulation inside a
  subfragment; this prevents clicks during voice stealing. Can be
  switched off with the --disable-interpolate-volume configure option.


Revision 819 - (view) (download) (annotate) - [select for diffs]
Modified Thu Dec 22 19:37:19 2005 UTC (18 years, 4 months ago) by wylder
File length: 3048 byte(s)
Diff to previous 361
conditionally include features.h


Revision 361 - (view) (download) (annotate) - [select for diffs]
Modified Wed Feb 9 01:22:18 2005 UTC (19 years, 2 months ago) by schoenebeck
File length: 2987 byte(s)
Diff to previous 290
* bunch of fixes for OSX (patch by Stephane Letz)


Revision 290 - (view) (download) (annotate) - [select for diffs]
Modified Wed Oct 20 03:02:35 2004 UTC (19 years, 6 months ago) by senkov
File length: 2946 byte(s)
Diff to previous 289
* Quoted warnings to avoid unmatched single quote.


Revision 289 - (view) (download) (annotate) - [select for diffs]
Modified Tue Oct 19 14:41:38 2004 UTC (19 years, 6 months ago) by schoenebeck
File length: 2944 byte(s)
Diff to previous 281
* LinuxSampler was badly broken with last commit, fixed that
* using now James Klicman's proposol to fix the reported linker problem
* Mutex.cpp: try to force UNIX98 compatibility (if not already supported)
* Makefile.cvs: generate (and clean) all necessary autotools files


Revision 281 - (view) (download) (annotate) - [select for diffs]
Modified Tue Oct 12 20:46:13 2004 UTC (19 years, 6 months ago) by schoenebeck
File length: 2430 byte(s)
Diff to previous 275
tiny compatibility fix, patch by James Klicman


Revision 275 - (view) (download) (annotate) - [select for diffs]
Modified Sat Oct 9 15:40:35 2004 UTC (19 years, 6 months ago) by schoenebeck
File length: 2391 byte(s)
Diff to previous 268
src/common/Mutex.cpp only compiles on UNIX98 compatible systems


Revision 268 - (view) (download) (annotate) - [select for diffs]
Modified Thu Oct 7 22:20:20 2004 UTC (19 years, 6 months ago) by capela
File length: 2316 byte(s)
Diff to previous 165
* gcc-c++ 3.4.1 compability fixes.


Revision 165 - (view) (download) (annotate) - [select for diffs]
Modified Thu Jul 1 04:25:55 2004 UTC (19 years, 9 months ago) by senkov
File length: 2296 byte(s)
Diff to previous 56
* Small enhancement to mutex class to support Trylock()


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


Revision 53 - (view) (download) (annotate) - [select for diffs]
Added Mon Apr 26 17:15:51 2004 UTC (19 years, 11 months ago) by schoenebeck
File length: 2177 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