]> git.sesse.net Git - vlc/commitdiff
Android: implement vlc_strerror and vlc_strerror_c
authorEdward Wang <edward.c.wang@compdigitec.com>
Wed, 8 Jan 2014 03:10:20 +0000 (22:10 -0500)
committerRafaël Carré <funman@videolan.org>
Sat, 11 Jan 2014 22:21:37 +0000 (23:21 +0100)
Android does not have strerror_l() and won't have it any time soon.

Localization is not required as these messages will never be displayed.

Signed-off-by: Rafaël Carré <funman@videolan.org>
src/Makefile.am
src/android/error.c [new file with mode: 0644]

index aeff20a2618650fc0d1a236de5d175e2a70920e8..474da25c29c5036a2aebb602fab85e493f2b9d0d 100644 (file)
@@ -259,6 +259,7 @@ SOURCES_libvlc_darwin = \
 SOURCES_libvlc_android = \
        android/dirs.c \
        android/thread.c \
+       android/error.c \
        posix/filesystem.c \
        android/netconf.c \
        posix/plugin.c \
diff --git a/src/android/error.c b/src/android/error.c
new file mode 100644 (file)
index 0000000..f4e3637
--- /dev/null
@@ -0,0 +1,39 @@
+/*****************************************************************************
+ * error.c: Android error messages formatting
+ *****************************************************************************
+ * Copyright © 2014 Edward Wang
+ *
+ * This program is free software; you can redistribute it and/or modify it
+ * under the terms of the GNU Lesser General Public License as published by
+ * the Free Software Foundation; either version 2.1 of the License, or
+ * (at your option) any later version.
+ *
+ * This program is distributed in the hope that it will be useful,
+ * but WITHOUT ANY WARRANTY; without even the implied warranty of
+ * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
+ * GNU Lesser General Public License for more details.
+ *
+ * You should have received a copy of the GNU Lesser General Public License
+ * along with this program; if not, write to the Free Software Foundation,
+ * Inc., 51 Franklin Street, Fifth Floor, Boston MA 02110-1301, USA.
+ *****************************************************************************/
+
+#ifdef HAVE_CONFIG_H
+# include "config.h"
+#endif
+
+#include <string.h>
+
+#include <vlc_common.h>
+
+const char* vlc_strerror(int errnum)
+{
+    return vlc_strerror_c(errnum);
+}
+
+const char* vlc_strerror_c(int errnum)
+{
+    static __thread char android_buf[100];
+    strerror_r(errnum, android_buf, 100);
+    return android_buf;
+}