L4Re Operating System Framework
Interface and Usage Documentation
All Data Structures Namespaces Files Functions Variables Typedefs Enumerations Enumerator Friends Macros Modules Pages
debug
Go to the documentation of this file.
1// vi:set ft=cpp: -*- Mode: C++ -*-
6/*
7 * (c) 2008-2009 Adam Lackorzynski <adam@os.inf.tu-dresden.de>,
8 * Alexander Warg <warg@os.inf.tu-dresden.de>
9 * economic rights: Technische Universität Dresden (Germany)
10 *
11 * License: see LICENSE.spdx (in this directory or the directories above)
12 */
13#pragma once
14
15#include <l4/sys/capability>
16#include <l4/re/protocols.h>
17#include <l4/sys/cxx/ipc_iface>
18
19namespace L4Re {
41 public L4::Kobject_t<Debug_obj, L4::Kobject, L4RE_PROTO_DEBUG>
42{
43public:
44
56 L4_INLINE_RPC(long, debug, (unsigned long function));
58};
59
60template<typename BASE>
61class Debug_obj_t :
62 public L4::Kobject_2t<Debug_obj_t<BASE>, BASE, Debug_obj, L4::PROTO_EMPTY>
63{
64 typedef L4::Typeid::Rpcs<> Rpcs;
65};
66}
L4::Cap related definitions.
Debug interface.
Definition debug:42
Helper class to create an L4Re interface class that is derived from two base classes (see L4::Kobject...
Definition __typeinfo.h:828
Helper class to create an L4Re interface class that is derived from a single base class.
Definition __typeinfo.h:750
#define L4_EXPORT
Attribute to mark functions, variables, and data types as being exported from a library.
Definition compiler.h:210
Interface Definition Language.
#define L4_INLINE_RPC(res, name, args, attr...)
Define an inline RPC call (type and callable).
Definition ipc_iface:476
L4Re C++ Interfaces.
Definition cmd_control:14
L4Re Protocol Constants (C version)
List of RPCs of an interface using a single operation without an opcode.
Definition __typeinfo.h:454
Standard list of RPCs of an interface.
Definition __typeinfo.h:428