renamed reader_thread to softsynth_thread

This commit is contained in:
William Hubbs 2009-06-24 20:19:24 -05:00
commit a58f93cd74
2 changed files with 2 additions and 2 deletions

View file

@ -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);

View file

@ -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;