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