From 907a8fc5dcab79a15a107d0470a1e06a278afd4a Mon Sep 17 00:00:00 2001 From: David Reid Date: Sun, 16 Oct 2016 10:21:24 +1000 Subject: [PATCH] Clean up old documentation. --- mini_al.h | 12 ------------ 1 file changed, 12 deletions(-) diff --git a/mini_al.h b/mini_al.h index 5349d063..1c448101 100644 --- a/mini_al.h +++ b/mini_al.h @@ -2387,18 +2387,6 @@ mal_uint32 mal_get_sample_size_in_bytes(mal_format format) // ------- // - An "event" is just a binary semaphore and is the only synchronization primitive used by mini_al. An event is // always auto-reset and initially unsignaled. -// -// -// ALSA -// ---- -// - [DONE] Use snd_pcm_recover() when snd_pcm_writei() or snd_pcm_readi() fails. -// -// -// Synchronization -// --------------- -// - Need to use an event (or binary semaphore) instead of a regular semaphore. The reason for this is that we never want -// any of the semaphores to get set to a value greater than 1, but this is not directly supported by posix. This becomes -// an issue with stopping in particular. See http://stackoverflow.com/questions/7478684/how-to-initialise-a-binary-semaphore-in-c /*