aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorKrzysztof Kosiński <krzysio@google.com>2023-10-28 14:52:35 +0000
committerKrzysztof Kosiński <krzysio@google.com>2023-11-02 08:56:39 +0000
commit4f612f6192f080c8e3201f6cbe363f13ad7cad6e (patch)
tree9f9a43408e27b299b0ca83c98938a21a05eaf324
parentf63d9093afb499b7bfedd86f7021d86e4b7d6f31 (diff)
downloadlibevent-4f612f6192f080c8e3201f6cbe363f13ad7cad6e.tar.gz
Add missing defines to Bionic config.
The size-related defines were missing, which was causing warnings in WebRTC build that were worked around with -Wno-everything (a flag which disables all warnings). Add the missing definitions so that the flag can be removed. Bug: 308179380 Test: presubmit Change-Id: Iae7236e493878f309fb8b1035168857c1824d426
-rw-r--r--include/event2/event-config-bionic.h21
1 files changed, 21 insertions, 0 deletions
diff --git a/include/event2/event-config-bionic.h b/include/event2/event-config-bionic.h
index 4287cac..29fa6da 100644
--- a/include/event2/event-config-bionic.h
+++ b/include/event2/event-config-bionic.h
@@ -464,6 +464,27 @@
your system. */
/* #undef EVENT__PTHREAD_CREATE_JOINABLE */
+/* The size of `int', as computed by sizeof. */
+#define EVENT__SIZEOF_INT 4
+
+/* The size of `long', as computed by sizeof. */
+#define EVENT__SIZEOF_LONG EVENT__SIZEOF_SIZE_T
+
+/* The size of `long long', as computed by sizeof. */
+#define EVENT__SIZEOF_LONG_LONG 8
+
+/* The size of `off_t', as computed by sizeof. */
+#define EVENT__SIZEOF_OFF_T EVENT__SIZEOF_SIZE_T
+
+/* The size of `pthread_t', as computed by sizeof. */
+#define EVENT__SIZEOF_PTHREAD_T EVENT__SIZEOF_SIZE_T
+
+/* The size of `short', as computed by sizeof. */
+#define EVENT__SIZEOF_SHORT 2
+
+/* The size of `void *', as computed by sizeof. */
+#define EVENT__SIZEOF_VOID_P EVENT__SIZEOF_SIZE_T
+
/* Define to 1 if you have the ANSI C header files. */
#define EVENT__STDC_HEADERS 1