X-Git-Url: http://git.lttng.org/?a=blobdiff_plain;f=liblttng-ust%2Flttng-getcpu.c;h=dc2834e9f310bbaa9047ec845197019c4b9b89fe;hb=c0c0989ab70574e09b2f7e8b48c2da6af664a849;hp=8f4c0fe7eeb6ba92c236bd2715709348c7ec45d8;hpb=5e1b7b8bac9f038e681906b269c1422611c6376d;p=lttng-ust.git diff --git a/liblttng-ust/lttng-getcpu.c b/liblttng-ust/lttng-getcpu.c index 8f4c0fe7..dc2834e9 100644 --- a/liblttng-ust/lttng-getcpu.c +++ b/liblttng-ust/lttng-getcpu.c @@ -1,22 +1,10 @@ /* - * Copyright (C) 2014 Mathieu Desnoyers + * SPDX-License-Identifier: LGPL-2.1-only * - * This library 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; version 2.1 of - * the License. - * - * This library 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 library; if not, write to the Free Software - * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA + * Copyright (C) 2014 Mathieu Desnoyers */ -#define _GNU_SOURCE +#define _LGPL_SOURCE #include #include #include @@ -25,10 +13,14 @@ #include #include +#include "getenv.h" #include "../libringbuffer/getcpu.h" int (*lttng_get_cpu)(void); +static +void *getcpu_handle; + int lttng_ust_getcpu_override(int (*getcpu)(void)) { CMM_STORE_SHARED(lttng_get_cpu, getcpu); @@ -38,20 +30,21 @@ int lttng_ust_getcpu_override(int (*getcpu)(void)) void lttng_ust_getcpu_init(void) { const char *libname; - void *handle; void (*libinit)(void); - libname = secure_getenv("LTTNG_UST_GETCPU_PLUGIN"); + if (getcpu_handle) + return; + libname = lttng_getenv("LTTNG_UST_GETCPU_PLUGIN"); if (!libname) return; - handle = dlopen(libname, RTLD_NOW); - if (!handle) { + getcpu_handle = dlopen(libname, RTLD_NOW); + if (!getcpu_handle) { PERROR("Cannot load LTTng UST getcpu override library %s", libname); return; } dlerror(); - libinit = (void (*)(void)) dlsym(handle, + libinit = (void (*)(void)) dlsym(getcpu_handle, "lttng_ust_getcpu_plugin_init"); if (!libinit) { PERROR("Cannot find LTTng UST getcpu override library %s initialization function lttng_ust_getcpu_plugin_init()",