/
githubmirror
/
audit-userspace
Обзор
Документация
Войти
/
githubmirror
/
audit-userspace
Код
Запросы
0
Пакеты
0
Релизы
0
Аналитика
Безопасность
master
gcc-attributes.h
82 строки
2 KB
Steve Grubb
Add Linux Kernel style branch hinting
17 ноя 2025, 01:08
17 ноя 2025, 01:08
c5789f1
Код
Авторство
О чём код?
/* gcc-attributes.h -- compatibility wrappers for GCC function attributes * Copyright 2025 Red Hat Inc. * All Rights Reserved. * * 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; either * version 2.1 of the License, or (at your option) any later version. * * 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., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA * * Author: Steve Grubb <sgrubb@redhat.com> */ #ifndef AUDIT_GCC_ATTRIBUTES_H #define AUDIT_GCC_ATTRIBUTES_H /* * These macros originate in sys/cdefs.h when glibc is installed. But the * definitions may be missing on some libc implementations (e.g. musl). * The purpose of this header is to provide fallbacks when they are * undefined. * * Note: We do not want to ship this file. Therefore the following headers * CANNOT include this file because they are the public API for the audit * system: audit-records.h, audit_logging.h, auparse-defs.h, auparse.h, * auplugin.h and libaudit.h */ #ifndef __has_attribute # define __has_attribute(x) 0 #endif #ifndef __attr_access # define __attr_access(x) #endif #ifndef __attribute_malloc__ # define __attribute_malloc__ #endif #ifndef __attr_dealloc # define __attr_dealloc(dealloc, argno) #endif #ifndef __attr_dealloc_free # define __attr_dealloc_free #endif #ifndef __attribute_const__ # define __attribute_const__ #endif #ifndef __attribute_pure__ # define __attribute_pure__ #endif #ifndef __nonnull # define __nonnull(params) #endif #ifndef __wur # define __wur #endif /* Linux kernel style branch prediction hints. */ #ifndef likely # define likely(x) __builtin_expect(!!(x), 1) #endif #ifndef unlikely # define unlikely(x) __builtin_expect(!!(x), 0) #endif #endif /* AUDIT_GCC_ATTRIBUTES_H */