File: assert.h

package info (click to toggle)
memtest86%2B 7.20-1
  • links: PTS, VCS
  • area: main
  • in suites: trixie
  • size: 1,772 kB
  • sloc: ansic: 22,575; asm: 2,497; makefile: 589; sh: 408
file content (29 lines) | stat: -rw-r--r-- 579 bytes parent folder | download | duplicates (3)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
// SPDX-License-Identifier: GPL-2.0
#ifndef ASSERT_H
#define ASSERT_H
/**
 * \file
 *
 * Provides a function to terminate the program if an unexpected and fatal
 * error is detected.
 *
 *//*
 * Copyright (C) 2022 Martin Whitaker.
 */

/*
 * Terminates the program (using a breakpoint exception) if expr is equal
 * to zero.
 */
static inline void assert(int expr)
{
    if (!expr) {
#if defined(__i386__) || defined(__x86_64__)
        __asm__ __volatile__ ("int $3");
#elif defined(__loongarch_lp64)
        __asm__ __volatile__ ("break 0");
#endif
    }
}

#endif // ASSERT_H