realtimenetprots/sipfw/SIP/Server/src/CSipActiveScheduler.cpp
changeset 0 307788aac0a8
equal deleted inserted replaced
-1:000000000000 0:307788aac0a8
       
     1 // Copyright (c) 2005-2009 Nokia Corporation and/or its subsidiary(-ies).
       
     2 // All rights reserved.
       
     3 // This component and the accompanying materials are made available
       
     4 // under the terms of "Eclipse Public License v1.0"
       
     5 // which accompanies this distribution, and is available
       
     6 // at the URL "http://www.eclipse.org/legal/epl-v10.html".
       
     7 //
       
     8 // Initial Contributors:
       
     9 // Nokia Corporation - initial contribution.
       
    10 //
       
    11 // Contributors:
       
    12 //
       
    13 // Description:
       
    14 // Name          : CSipActiveScheduler.cpp
       
    15 // Part of       : SIPServerCore
       
    16 // Version       : SIP/4.0 
       
    17 //
       
    18 
       
    19 
       
    20 
       
    21 #include "CSipActiveScheduler.h"
       
    22 #include "SipLogs.h"
       
    23 
       
    24 // -----------------------------------------------------------------------------
       
    25 // CSipActiveScheduler::CSipActiveScheduler
       
    26 // -----------------------------------------------------------------------------
       
    27 //
       
    28 CSipActiveScheduler::CSipActiveScheduler ()
       
    29 	{
       
    30 	}
       
    31 
       
    32 // -----------------------------------------------------------------------------
       
    33 // CSipActiveScheduler::~CSipActiveScheduler
       
    34 // -----------------------------------------------------------------------------
       
    35 //
       
    36 CSipActiveScheduler::~CSipActiveScheduler ()
       
    37 	{
       
    38 	}
       
    39 
       
    40 // -----------------------------------------------------------------------------
       
    41 // CSipActiveScheduler::Error
       
    42 // -----------------------------------------------------------------------------
       
    43 //
       
    44 void CSipActiveScheduler::Error (TInt aError) const
       
    45 	{
       
    46     // This function will be entered only if a RunL-function of 
       
    47     // a non-C/S-session related active object leaves.
       
    48     // The SIP C/S-server has to be kept running under any conditions.
       
    49     __SIP_INT_LOG1("CSipActiveScheduler::Error", aError)
       
    50     
       
    51     // Avoid compiler warning in UREL
       
    52     (void)aError;
       
    53 	}