diff libtwamr/tls_flags.c @ 252:57b4053559ff

libtwamr: beginning of project
author Mychaela Falconia <falcon@freecalypso.org>
date Fri, 05 Apr 2024 01:02:23 +0000
parents libgsmefr/tls_flags.c@38326102fc43
children dfb1f86541b2
line wrap: on
line diff
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/libtwamr/tls_flags.c	Fri Apr 05 01:02:23 2024 +0000
@@ -0,0 +1,18 @@
+/*
+ * Unfortunately the code we got from ETSI makes heavy use of two global
+ * Boolean flags named Carry and Overflow that function like equally named
+ * processor state flags on many CPU architectures.  They are not part
+ * of persistent codec session state for either the encoder or the decoder,
+ * instead they are "short-term" globals much like UNIX errno.
+ *
+ * Given this unfortunate reality plus the natural desire to make our
+ * AMR library thread-safe (a transcoding MGW handling a large volume of
+ * simultaneous calls is exactly the kind of application that would benefit
+ * from utilitizing all CPU cores), our current workaround is to use
+ * thread-local storage.
+ */
+
+#include <stdint.h>
+#include "typedef.h"
+
+__thread Flag AMR__Carry, AMR__Overflow;