From 794bda8359cbbd57567eb682d02505fd7a77388e Mon Sep 17 00:00:00 2001 From: berge Date: Fri, 2 Jul 2010 14:54:56 +0000 Subject: [PATCH] Renamed back Ptc* component to Its* --- ttcn/CAM/LibItsCam_Functions.ttcn | 6 +++--- ttcn/DENM/LibItsDenm_Functions.ttcn | 6 +++--- ttcn/LibIts_Interface.ttcn | 8 ++++---- 3 files changed, 10 insertions(+), 10 deletions(-) diff --git a/ttcn/CAM/LibItsCam_Functions.ttcn b/ttcn/CAM/LibItsCam_Functions.ttcn index 8c91281a..4253ead5 100644 --- a/ttcn/CAM/LibItsCam_Functions.ttcn +++ b/ttcn/CAM/LibItsCam_Functions.ttcn @@ -15,10 +15,10 @@ module LibItsCam_Functions { * @desc Create Facility component and map CAM port * @param p_camPtc returned Facility component variable */ - function f_cfCamUp(out PtcFa p_ptcCam) { + function f_cfCamUp(out ItsFa p_ptcCam) { // Create Facility component - p_ptcCam := PtcFa.create("CAM Tester"); + p_ptcCam := ItsFa.create("CAM Tester"); // map ports map(p_ptcCam:camPort, system:camPort); @@ -29,7 +29,7 @@ module LibItsCam_Functions { * @desc Wait for component to finish and unmap CAM ports * @param p_camPtc Facility component variable */ - function f_cfCamDown(in PtcFa p_ptcCam) runs on ItsMtc { + function f_cfCamDown(in ItsFa p_ptcCam) runs on ItsMtc { tc_guard.start; alt { diff --git a/ttcn/DENM/LibItsDenm_Functions.ttcn b/ttcn/DENM/LibItsDenm_Functions.ttcn index 1bc302eb..9f557070 100644 --- a/ttcn/DENM/LibItsDenm_Functions.ttcn +++ b/ttcn/DENM/LibItsDenm_Functions.ttcn @@ -15,10 +15,10 @@ module LibItsDenm_Functions { * @desc Create Facility component and connects DENM port * @param p_ptcDenm returned Facility component variable */ - function f_cfDenmUp(out PtcFa p_ptcDenm) { + function f_cfDenmUp(out ItsFa p_ptcDenm) { // Create Facility component - p_ptcDenm := PtcFa.create("DENM Tester"); + p_ptcDenm := ItsFa.create("DENM Tester"); // map ports map(p_ptcDenm:denmPort, system:denmPort); @@ -29,7 +29,7 @@ module LibItsDenm_Functions { * @desc Wait for component to finish and unmap DENM ports * @param p_camPtc Facility component variable */ - function f_cfDenmDown(in PtcFa p_ptcDenm) runs on ItsMtc { + function f_cfDenmDown(in ItsFa p_ptcDenm) runs on ItsMtc { tc_guard.start; alt { [] p_ptcDenm.done { diff --git a/ttcn/LibIts_Interface.ttcn b/ttcn/LibIts_Interface.ttcn index f963b504..78f642a7 100644 --- a/ttcn/LibIts_Interface.ttcn +++ b/ttcn/LibIts_Interface.ttcn @@ -19,7 +19,7 @@ module LibIts_Interface { /** * @desc Test component for ITS Access layer */ - type component PtcAc { + type component ItsAc { // AC1 ports port MacM5Port macM5Port; @@ -31,7 +31,7 @@ module LibIts_Interface { /** * @desc Test component for ITS Facility layer */ - type component PtcFa { + type component ItsFa { // FA1 ports port CamPort camPort; @@ -50,7 +50,7 @@ module LibIts_Interface { /** * @desc Test component for ITS Management layer */ - type component PtcMgt { + type component ItsMgt { // MGT1 ports port IiscPort iiscPort; @@ -59,7 +59,7 @@ module LibIts_Interface { /** * @desc Test component for ITS Network and Transport layer */ - type component PtcNt { + type component ItsNt { // NT1 ports port BtpPort btpPort; -- GitLab