mirror of
https://github.com/genodelabs/genode.git
synced 2025-05-03 01:02:56 +00:00
24 lines
518 B
C++
24 lines
518 B
C++
/*
|
|
* \brief Omit heartbeat monitoring because core has no parent
|
|
* \author Norman Feske
|
|
* \date 2018-11-15
|
|
*/
|
|
|
|
/*
|
|
* Copyright (C) 2018 Genode Labs GmbH
|
|
*
|
|
* This file is part of the Genode OS framework, which is distributed
|
|
* under the terms of the GNU Affero General Public License version 3.
|
|
*/
|
|
|
|
/* Genode includes */
|
|
#include <base/env.h>
|
|
|
|
/* base-internal includes */
|
|
#include <base/internal/globals.h>
|
|
|
|
|
|
void Genode::init_heartbeat_monitoring(Env &) { }
|
|
void Genode::deinit_heartbeat_monitoring() { }
|
|
|