summaryrefslogblamecommitdiffstats
path: root/cpukit/score/src/schedulercbsdestroyserver.c
blob: 2407a48bf8060f56cf9a3033be57f2aaa13b669c (plain) (tree)
1
2
3
4
5
6
7
8







                                      





                                                                       
                                         





                   
                                     
                                







                                   
                                                    

                                                 
                                                           

                                        
                                                                    

                                                          
                                                            

             
/**
 * @file
 *
 * @brief Scheduler CBS Destroy Server
 *
 * @ingroup ScoreScheduler
 */

/*
 *  Copyright (C) 2011 Petr Benes.
 *  Copyright (C) 2011 On-Line Applications Research Corporation (OAR).
 *
 *  The license and distribution terms for this file may be
 *  found in the file LICENSE in this distribution or at
 *  http://www.rtems.org/license/LICENSE.
 */

#if HAVE_CONFIG_H
#include "config.h"
#endif

#include <rtems/score/schedulercbs.h>
#include <rtems/score/wkspace.h>

int _Scheduler_CBS_Destroy_server (
  Scheduler_CBS_Server_id server_id
)
{
  int ret = SCHEDULER_CBS_OK;
  rtems_id tid;

  if ( server_id >= _Scheduler_CBS_Maximum_servers )
    return SCHEDULER_CBS_ERROR_INVALID_PARAMETER;

  if ( !_Scheduler_CBS_Server_list[server_id].initialized )
    return SCHEDULER_CBS_ERROR_NOSERVER;

  if ( (tid = _Scheduler_CBS_Server_list[server_id].task_id) != -1 )
    ret = _Scheduler_CBS_Detach_thread ( server_id, tid );

  _Scheduler_CBS_Server_list[server_id].initialized = false;
  return ret;
}