This website works better with JavaScript.
Home
Help
Sign In
jackaudio
/
jack1
mirror of
https://github.com/jackaudio/jack1
Watch
1
Star
0
Fork
0
Code
Releases
19
Activity
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
c1c6855667
commit
5fbff0d09d
2 changed files
with
5 additions
and
3 deletions
Split View
Diff Options
Show Stats
Download Patch File
Download Diff File
+1
-1
configure.in
+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
Write
Preview
Loading…
Cancel
Save