From f72177f3f871ccc89ed1a58585ca43301020912a Mon Sep 17 00:00:00 2001 From: john Date: Wed, 18 Apr 2012 13:30:46 +0200 Subject: [PATCH] Added ServicePort.c containing all operations in AliveSupervision. --- system/WdgM/WdgM_ServicePort.c | 28 ++++++++++++++++++++++++++++ 1 file changed, 28 insertions(+) create mode 100644 system/WdgM/WdgM_ServicePort.c diff --git a/system/WdgM/WdgM_ServicePort.c b/system/WdgM/WdgM_ServicePort.c new file mode 100644 index 00000000..95981c33 --- /dev/null +++ b/system/WdgM/WdgM_ServicePort.c @@ -0,0 +1,28 @@ +/* -------------------------------- Arctic Core ------------------------------ + * Arctic Core - the open source AUTOSAR platform http://arccore.com + * + * Copyright (C) 2009 ArcCore AB + * + * This source code is free software; you can redistribute it and/or modify it + * under the terms of the GNU General Public License version 2 as published by the + * Free Software Foundation; See . + * + * This program is distributed in the hope that it will be useful, but + * WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY + * or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License + * for more details. + * -------------------------------- Arctic Core ------------------------------*/ + +#include "WdgM.h" + +Std_ReturnType WdgM_AliveSupervision_ActivateAliveSupervision(WdgM_SupervisedEntityIdType SEid) { + return WdgM_ActivateAliveSupervision(SEid); +} + +Std_ReturnType WdgM_AliveSupervision_DeactiveateAliveSupervision(WdgM_SupervisedEntityIdType SEid) { + return WdgM_DeactivateAliveSupervision(SEid); +} + +Std_ReturnType WdgM_AliveSupervision_UpdateAliveCounter(WdgM_SupervisedEntityIdType SEid) { + return WdgM_UpdateAliveCounter(SEid); +} -- 2.39.2