From af5f2eb7e3ee8c6ffc0dcdb3571fc8a43b2852cc Mon Sep 17 00:00:00 2001 From: marco Date: Mon, 19 May 2008 20:09:08 +0000 Subject: [PATCH] * Fix 4 bad characters in jack.h that were preventing doxygen to generate good latex code git-svn-id: svn+ssh://jackaudio.org/trunk/jack@2290 0c269be4-1314-0410-8aa9-9f06e86f4224 --- jack/jack.h | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/jack/jack.h b/jack/jack.h index 15c011d..f90699e 100644 --- a/jack/jack.h +++ b/jack/jack.h @@ -166,10 +166,10 @@ void jack_on_shutdown (jack_client_t *client, * work be done, passing @a arg as the second argument. * * The code in the supplied function must be suitable for real-time - * execution. That means that it cannot call functions that might - * block for a long time.  This includes malloc, free, printf, + * execution. That means that it cannot call functions that might + * block for a long time. This includes malloc, free, printf, * pthread_mutex_lock, sleep, wait, poll, select, pthread_join, - * pthread_cond_wait, etc, etc.  See + * pthread_cond_wait, etc, etc. See * http://jackit.sourceforge.net/docs/design/design.html#SECTION00411000000000000000 * for more information. * @@ -209,10 +209,10 @@ void jack_cycle_signal (jack_client_t* client, int status); * Tell the Jack server to call @a thread_callback in the RT thread. * Typical use are in conjunction with @a jack_cycle_wait and @ jack_cycle_signal functions. * The code in the supplied function must be suitable for real-time - * execution. That means that it cannot call functions that might - * block for a long time.  This includes malloc, free, printf, + * execution. That means that it cannot call functions that might + * block for a long time. This includes malloc, free, printf, * pthread_mutex_lock, sleep, wait, poll, select, pthread_join, - * pthread_cond_wait, etc, etc.  See + * pthread_cond_wait, etc, etc. See * http://jackit.sourceforge.net/docs/design/design.html#SECTION00411000000000000000 * for more information. *