source: rtems/cpukit/rtems/src/timergetinfo.c @ 52adc808

4.115
Last change on this file since 52adc808 was 52adc808, checked in by Alex Ivanov <alexivanov97@…>, on 12/02/12 at 16:03:09

score misc: Clean up Doxygen #12 (GCI 2012)

This patch is a task from GCI 2012 which improves the Doxygen
comments in the RTEMS source.

http://www.google-melange.com/gci/task/view/google/gci2012/8025203

  • Property mode set to 100644
File size: 1.4 KB
Line 
1/**
2 *  @file
3 *
4 *  @brief RTEMS Get Timer Information
5 *  @ingroup ClassicTimer
6 */
7
8/*
9 *  COPYRIGHT (c) 1989-2007.
10 *  On-Line Applications Research Corporation (OAR).
11 *
12 *  The license and distribution terms for this file may be
13 *  found in the file LICENSE in this distribution or at
14 *  http://www.rtems.com/license/LICENSE.
15 */
16
17#if HAVE_CONFIG_H
18#include "config.h"
19#endif
20
21#include <rtems/system.h>
22#include <rtems/rtems/status.h>
23#include <rtems/rtems/support.h>
24#include <rtems/score/object.h>
25#include <rtems/score/thread.h>
26#include <rtems/rtems/timer.h>
27#include <rtems/score/tod.h>
28#include <rtems/score/watchdog.h>
29
30rtems_status_code rtems_timer_get_information(
31  rtems_id                 id,
32  rtems_timer_information *the_info
33)
34{
35  Timer_Control     *the_timer;
36  Objects_Locations  location;
37
38  if ( !the_info )
39    return RTEMS_INVALID_ADDRESS;
40
41  the_timer = _Timer_Get( id, &location );
42  switch ( location ) {
43
44    case OBJECTS_LOCAL:
45      the_info->the_class  = the_timer->the_class;
46      the_info->initial    = the_timer->Ticker.initial;
47      the_info->start_time = the_timer->Ticker.start_time;
48      the_info->stop_time  = the_timer->Ticker.stop_time;
49      _Thread_Enable_dispatch();
50      return RTEMS_SUCCESSFUL;
51
52#if defined(RTEMS_MULTIPROCESSING)
53    case OBJECTS_REMOTE:            /* should never return this */
54#endif
55    case OBJECTS_ERROR:
56      break;
57  }
58
59  return RTEMS_INVALID_ID;
60}
Note: See TracBrowser for help on using the repository browser.