summaryrefslogtreecommitdiff
path: root/tst/stubs/nhm/nhm-systemd-stub.c
blob: 658f032c195f0a828bb2b95a2cfa131cdea7d187 (plain)
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
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
/* NHM - NodeHealthMonitor
 *
 * Copyright (C) 2013 Continental Automotive Systems, Inc.
 *
 * This Source Code Form is subject to the terms of the Mozilla Public License,
 * v. 2.0. If a copy of the MPL was not distributed with this file, You can
 * obtain one at http://mozilla.org/MPL/2.0/.
 *
 * Author: Jean-Pierre Bogler <Jean-Pierre.Bogler@continental-corporation.com>
 */

/******************************************************************************
*
* Header includes
*
******************************************************************************/

#include <gio/gio.h>         /* Use gtypes      */
#include <src/nhm-systemd.h> /* Original header */

/******************************************************************************
*
* Interfaces. Exported functions. See Header for detailed description.
*
******************************************************************************/


/**
 * nhm_systemd_connect_stub:
 *
 * Stub for nhm_systemd_connect()
 */
gboolean
nhm_systemd_connect_stub(NhmSystemdAppStatusCb app_status_cb)
{
  return TRUE;
}

/**
 * nhm_systemd_disconnect_stub:
 *
 * Stub for nhm_systemd_disconnect()
 */
void
nhm_systemd_disconnect_stub(void)
{

}