Re: [linux-audio-dev] crossplatform atomics

2006-05-24 Thread Jens M Andreasen
On Wed, 2006-05-24 at 20:58 -0400, Paul Davis wrote: > On Thu, 2006-05-25 at 02:44 +0200, Jens M Andreasen wrote: > > On Thu, 2006-05-25 at 02:24 +0200, Jens M Andreasen wrote: > > > > >> I am looking for a cross-platform implementation of an atomic > > > > >> integer. > > > > > > sizeof(int) is y

Re: [linux-audio-dev] crossplatform atomics

2006-05-24 Thread Paul Davis
On Thu, 2006-05-25 at 02:44 +0200, Jens M Andreasen wrote: > On Thu, 2006-05-25 at 02:24 +0200, Jens M Andreasen wrote: > > > >> I am looking for a cross-platform implementation of an atomic > > > >> integer. > > > > sizeof(int) is your friend > > > > int speedy; as well, since int is defined to

Re: [linux-audio-dev] crossplatform atomics

2006-05-24 Thread Jens M Andreasen
On Thu, 2006-05-25 at 02:24 +0200, Jens M Andreasen wrote: > > >> I am looking for a cross-platform implementation of an atomic > > >> integer. > > sizeof(int) is your friend > > int speedy; as well, since int is defined to be the fastest integer on > your platform of choice. > Uhmm, I was reliy

Re: [linux-audio-dev] crossplatform atomics

2006-05-24 Thread Jens M Andreasen
> >> I am looking for a cross-platform implementation of an atomic > >> integer. sizeof(int) is your friend int speedy; as well, since int is defined to be the fastest integer on your platform of choice. --

Re: [linux-audio-dev] crossplatform atomics

2006-05-24 Thread Niklas Klügel
-BEGIN PGP SIGNED MESSAGE- Hash: SHA1 Jack O'Quin wrote: > On 5/24/06, Maarten de Boer <[EMAIL PROTECTED]> wrote: > >> Hello, >> >> I am looking for a cross-platform implementation of an atomic >> integer. >> >> Under Linux, a build an c++ class "atomic" around asm/atomic.h, >> (which I c

Re: [linux-audio-dev] crossplatform atomics

2006-05-24 Thread Jack O'Quin
On 5/24/06, Maarten de Boer <[EMAIL PROTECTED]> wrote: Hello, I am looking for a cross-platform implementation of an atomic integer. Under Linux, a build an c++ class "atomic" around asm/atomic.h, (which I can use as if it where an int), but I'd like to have a solution that also works on Window

Re: [linux-audio-dev] [ANN] Sonic Visualiser: An application for audio visualisation and analysis

2006-05-24 Thread Nick Dowell
There's always relaytool... http://autopackage.org/apbuild-relaytool.php -n On 23 May 2006, at 15:17, Alexandre DENIS wrote: Paul Davis wrote: i don't believe that is true. if you link with RTLD_GLOBAL, then dlopen () followed by dlsym jack_client_open() should be all that is needed. Add

[linux-audio-dev] crossplatform atomics

2006-05-24 Thread Maarten de Boer
Hello, I am looking for a cross-platform implementation of an atomic integer. Under Linux, a build an c++ class "atomic" around asm/atomic.h, (which I can use as if it where an int), but I'd like to have a solution that also works on Windows XP and Mac OS X. Thanks for any suggestions, Maarten