L4Re Operating System Framework
Interface and Usage Documentation
Loading...
Searching...
No Matches
kdump.h
Go to the documentation of this file.
1/*
2 * Copyright (C) 2024 Kernkonzept GmbH.
3 * Author(s): Jan Klötzke <jan.kloetzke@kernkonzept.com>
4 *
5 * License: see LICENSE.spdx (in this directory or the directories above)
6 */
7
8#pragma once
9
26#include <l4/sys/kdebug.h>
27
34L4_INLINE long
36
37L4_INLINE long
39{
40 enum { DUMP_KMEM_STATS = L4_KDEBUG_GROUP_DUMP + 0x00 };
41 return l4_error(__kdebug_op(DUMP_KMEM_STATS));
42}
long l4_error(l4_msgtag_t tag) L4_NOTHROW
Get IPC error code if any or message tag label otherwise for an IPC call.
Definition ipc.h:646
#define L4_INLINE
L4 Inline function attribute.
Definition compiler.h:51
Functionality for invoking the kernel debugger.
l4_msgtag_t __kdebug_op(unsigned op) L4_NOTHROW
Invoke a nullary operation on the base debugger capability.
Definition kdebug.h:68
long fiasco_dump_kmem_stats(void)
Dump kernel memory statistics on console.
Definition kdump.h:38