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

Diff of /linuxsampler/trunk/src/common/Mutex.h

Parent Directory Parent Directory | Revision Log Revision Log | View Patch Patch

revision 53 by schoenebeck, Mon Apr 26 17:15:51 2004 UTC revision 502 by letz, Fri Apr 29 14:20:22 2005 UTC
# Line 2  Line 2 
2   *                                                                         *   *                                                                         *
3   *   LinuxSampler - modular, streaming capable sampler                     *   *   LinuxSampler - modular, streaming capable sampler                     *
4   *                                                                         *   *                                                                         *
5   *   Copyright (C) 2003 by Benno Senoner and Christian Schoenebeck         *   *   Copyright (C) 2003, 2004 by Benno Senoner and Christian Schoenebeck   *
6   *                                                                         *   *                                                                         *
7   *   This program is free software; you can redistribute it and/or modify  *   *   This program is free software; you can redistribute it and/or modify  *
8   *   it under the terms of the GNU General Public License as published by  *   *   it under the terms of the GNU General Public License as published by  *
# Line 28  Line 28 
28  class Mutex {  class Mutex {
29      public:      public:
30          Mutex();          Mutex();
31         ~Mutex();              virtual ~Mutex();
32          void Lock();          void Lock();
33            bool Trylock();
34          void Unlock();          void Unlock();
35      protected:      protected:
36          pthread_mutex_t     __posix_mutex;          pthread_mutex_t     __posix_mutex;

Legend:
Removed from v.53  
changed lines
  Added in v.502

  ViewVC Help
Powered by ViewVC