mirror of
https://github.com/linux-speakup/espeakup.git
synced 2026-08-09 09:19:09 +02:00
renamed reader_thread to softsynth_thread
This commit is contained in:
parent
dfc9bbff65
commit
a58f93cd74
2 changed files with 2 additions and 2 deletions
|
|
@ -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);
|
||||
|
|
|
|||
|
|
@ -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;
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue