]> granicus.if.org Git - gc/commitdiff
Fix GC_jmp_buf multiple definition
authorIvan Maidanski <ivmai@mail.ru>
Tue, 15 Nov 2016 08:35:28 +0000 (11:35 +0300)
committerIvan Maidanski <ivmai@mail.ru>
Sun, 27 Nov 2016 06:38:37 +0000 (09:38 +0300)
This error occurs only if "-fno-common" gcc option is specified.

* include/private/gc_priv.h [USE_PROC_FOR_LIBRARIES && THREADS
|| NEED_FIND_LIMIT] (GC_jmp_buf): Replace variable definition with
a declaration (as GC_EXTERN).
* os_dep.c [USE_PROC_FOR_LIBRARIES && THREADS || NEED_FIND_LIMIT]
(GC_jmp_buf): Define global variable (as GC_INNER).

include/private/gc_priv.h
os_dep.c

index 73eb48cdc67a74e36e4d2ea0b0ea2053347e4ddd..efab8de7a68fb94ed513bdd3deee084757c12cc5 100644 (file)
@@ -2543,7 +2543,7 @@ GC_INNER ptr_t GC_store_debug_info(ptr_t p, word sz, const char *str,
 
 #if defined(NEED_FIND_LIMIT) \
      || (defined(USE_PROC_FOR_LIBRARIES) && defined(THREADS))
-  JMP_BUF GC_jmp_buf;
+  GC_EXTERN JMP_BUF GC_jmp_buf;
 
   /* Set up a handler for address faults which will longjmp to  */
   /* GC_jmp_buf;                                                */
index a649b5984ce2c4916fe45a2e0d3331f91b13c76f..00323266ab9ac1fcee28e65a38bafa1dcdb7273c 100644 (file)
--- a/os_dep.c
+++ b/os_dep.c
@@ -902,6 +902,8 @@ GC_INNER size_t GC_page_size = 0;
   /* Some tools to implement HEURISTIC2 */
 #   define MIN_PAGE_SIZE 256    /* Smallest conceivable page size, bytes */
 
+    GC_INNER JMP_BUF GC_jmp_buf;
+
     STATIC void GC_fault_handler(int sig GC_ATTR_UNUSED)
     {
         LONGJMP(GC_jmp_buf, 1);