From a58f93cd74fead43927093d36fc775a976788a4b Mon Sep 17 00:00:00 2001 From: William Hubbs Date: Wed, 24 Jun 2009 20:19:24 -0500 Subject: [PATCH] renamed reader_thread to softsynth_thread --- espeakup.h | 2 +- softsynth.c | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/espeakup.h b/espeakup.h index 36ee159..b00dd69 100644 --- a/espeakup.h +++ b/espeakup.h @@ -76,7 +76,7 @@ extern espeak_ERROR stop_speech(void); extern espeak_ERROR speak_text(struct synth_t *s); extern int open_softsynth(void); extern void close_softsynth(void); -extern void *reader_thread(void *arg); +extern void *softsynth_thread(void *arg); extern void stop_runner(void); extern void *queue_runner(void *arg); extern void *signal_thread(void *arg); diff --git a/softsynth.c b/softsynth.c index d04f6e4..6d6a13d 100644 --- a/softsynth.c +++ b/softsynth.c @@ -142,7 +142,7 @@ static void process_buffer(struct synth_t *s, char *buf, ssize_t length) } } -void *reader_thread(void *arg) +void *softsynth_thread(void *arg) { struct synth_t *s = (struct synth_t *) arg; fd_set set;