Remove "weak" attribute from symbols
authorMathieu Desnoyers <mathieu.desnoyers@efficios.com>
Sun, 24 Mar 2019 15:27:11 +0000 (11:27 -0400)
committerMathieu Desnoyers <mathieu.desnoyers@efficios.com>
Sun, 24 Mar 2019 15:27:11 +0000 (11:27 -0400)
Signed-off-by: Mathieu Desnoyers <mathieu.desnoyers@efficios.com>
src/rseq.c

index 11f722a60a863705e9fffea1b93850970339f081..da6fcddd1870422dc466868a01a4f4b2ddffed56 100644 (file)
 
 #define ARRAY_SIZE(arr)        (sizeof(arr) / sizeof((arr)[0]))
 
-__attribute__((weak)) __thread
+__thread
 volatile struct rseq __rseq_abi = {
        .cpu_id = RSEQ_CPU_ID_UNINITIALIZED,
 };
 
-__attribute__((weak)) __thread
+__thread
 volatile uint32_t __rseq_refcount;
 
 static int sys_rseq(volatile struct rseq *rseq_abi, uint32_t rseq_len,
This page took 0.023159 seconds and 4 git commands to generate.