Removed mmap emulation. Updated TODO. Fixed an over rename

This commit is contained in:
Abramo Bagnara 2000-05-31 15:09:27 +00:00
parent f9eacbfc9e
commit 2ff2c87cdb
5 changed files with 21 additions and 328 deletions

View file

@ -89,15 +89,8 @@ struct snd_pcm_stream {
size_t frames_per_frag;
snd_pcm_mmap_control_t *mmap_control;
size_t mmap_control_size;
int mmap_control_emulation;
char *mmap_data;
size_t mmap_data_size;
int mmap_data_emulation;
pthread_t mmap_thread;
int mmap_thread_stop;
pthread_mutex_t mutex;
pthread_cond_t status_cond;
pthread_cond_t ready_cond;
};
struct snd_pcm {
@ -108,8 +101,6 @@ struct snd_pcm {
int private[0];
};
void snd_pcm_mmap_status_streamge(snd_pcm_t *pcm, int stream, int newstatus);
int snd_pcm_abstract_open(snd_pcm_t **handle, int mode, snd_pcm_type_t type, size_t extra);