2025-01-04 03:04:27 +03:00
|
|
|
// SPDX-License-Identifier: CDDL-1.0
|
2010-08-26 22:50:56 +04:00
|
|
|
/*
|
|
|
|
|
* CDDL HEADER START
|
|
|
|
|
*
|
|
|
|
|
* The contents of this file are subject to the terms of the
|
|
|
|
|
* Common Development and Distribution License, Version 1.0 only
|
|
|
|
|
* (the "License"). You may not use this file except in compliance
|
|
|
|
|
* with the License.
|
|
|
|
|
*
|
|
|
|
|
* You can obtain a copy of the license at usr/src/OPENSOLARIS.LICENSE
|
2022-07-12 00:16:13 +03:00
|
|
|
* or https://opensource.org/licenses/CDDL-1.0.
|
2010-08-26 22:50:56 +04:00
|
|
|
* See the License for the specific language governing permissions
|
|
|
|
|
* and limitations under the License.
|
|
|
|
|
*
|
|
|
|
|
* When distributing Covered Code, include this CDDL HEADER in each
|
|
|
|
|
* file and include the License file at usr/src/OPENSOLARIS.LICENSE.
|
|
|
|
|
* If applicable, add the following below this CDDL HEADER, with the
|
|
|
|
|
* fields enclosed by brackets "[]" replaced with your own identifying
|
|
|
|
|
* information: Portions Copyright [yyyy] [name of copyright owner]
|
|
|
|
|
*
|
|
|
|
|
* CDDL HEADER END
|
|
|
|
|
*/
|
|
|
|
|
/*
|
|
|
|
|
* Copyright 2008 Sun Microsystems, Inc. All rights reserved.
|
|
|
|
|
* Use is subject to license terms.
|
|
|
|
|
*/
|
2025-10-19 06:41:38 +03:00
|
|
|
/*
|
|
|
|
|
* Copyright (c) 2005, 2010, Oracle and/or its affiliates. All rights reserved.
|
|
|
|
|
* Copyright 2011 Nexenta Systems, Inc. All rights reserved.
|
|
|
|
|
* Copyright (c) 2012, 2018 by Delphix. All rights reserved.
|
|
|
|
|
* Copyright (c) 2012, Joyent, Inc. All rights reserved.
|
|
|
|
|
*/
|
2010-08-26 22:50:56 +04:00
|
|
|
|
|
|
|
|
#ifndef _LIBSPL_SYS_DEBUG_H
|
2013-11-01 23:26:11 +04:00
|
|
|
#define _LIBSPL_SYS_DEBUG_H
|
2010-08-26 22:50:56 +04:00
|
|
|
|
|
|
|
|
#include <assert.h>
|
|
|
|
|
|
2019-09-12 23:28:26 +03:00
|
|
|
#ifndef __printflike
|
|
|
|
|
#define __printflike(x, y) __attribute__((__format__(__printf__, x, y)))
|
|
|
|
|
#endif
|
|
|
|
|
|
2019-12-05 23:37:00 +03:00
|
|
|
#ifndef __maybe_unused
|
|
|
|
|
#define __maybe_unused __attribute__((unused))
|
|
|
|
|
#endif
|
|
|
|
|
|
2025-02-24 07:14:23 +03:00
|
|
|
#ifndef __must_check
|
|
|
|
|
#define __must_check __attribute__((warn_unused_result))
|
|
|
|
|
#endif
|
|
|
|
|
|
2025-10-19 06:41:38 +03:00
|
|
|
#ifndef noinline
|
|
|
|
|
#define noinline __attribute__((noinline))
|
|
|
|
|
#endif
|
|
|
|
|
|
|
|
|
|
#ifndef likely
|
|
|
|
|
#define likely(x) __builtin_expect((x), 1)
|
|
|
|
|
#endif
|
|
|
|
|
|
|
|
|
|
#ifndef unlikely
|
|
|
|
|
#define unlikely(x) __builtin_expect((x), 0)
|
|
|
|
|
#endif
|
|
|
|
|
|
2025-10-19 06:44:14 +03:00
|
|
|
/*
|
|
|
|
|
* Kernel modules
|
|
|
|
|
*/
|
|
|
|
|
#define __init
|
|
|
|
|
#define __exit
|
|
|
|
|
|
2010-08-26 22:50:56 +04:00
|
|
|
#endif
|