Browse Source

SSE fix from Yann Orlarey and Stephane Letz

git-svn-id: svn+ssh://jackaudio.org/trunk/jack@623 0c269be4-1314-0410-8aa9-9f06e86f4224
tags/0.109.0
trutkin 22 years ago
parent
commit
5fbff0d09d
2 changed files with 5 additions and 3 deletions
  1. +1
    -1
      configure.in
  2. +4
    -2
      libjack/pool.c

+ 1
- 1
configure.in View File

@@ -15,7 +15,7 @@ dnl changes are made
dnl ---
JACK_MAJOR_VERSION=0
JACK_MINOR_VERSION=94
JACK_MICRO_VERSION=2
JACK_MICRO_VERSION=3

dnl ---
dnl HOWTO: updating the jack protocal version


+ 4
- 2
libjack/pool.c View File

@@ -18,6 +18,7 @@
$Id$
*/

#define _XOPEN_SOURCE 600
#include <stdlib.h>
#include <config.h>
#include <jack/pool.h>
@@ -26,8 +27,9 @@ void *
jack_pool_alloc (size_t bytes)
{
/* XXX need RT-pool based allocator here */

return malloc (bytes);
void* m;
int err = posix_memalign (&m, 16, bytes);
return (!err) ? m : 0;
}

void


Loading…
Cancel
Save