Changeset 71f2a83d in rtems


Ignore:
Timestamp:
12/09/13 19:13:33 (10 years ago)
Author:
Joel Sherrill <joel.sherrill@…>
Branches:
4.11, 5, master
Children:
07a3aa9d
Parents:
4600bd7c
git-author:
Joel Sherrill <joel.sherrill@…> (12/09/13 19:13:33)
git-committer:
Joel Sherrill <joel.sherrill@…> (12/10/13 01:50:55)
Message:

ptimer.h: Comment clean up

File:
1 edited

Legend:

Unmodified
Added
Removed
  • cpukit/posix/include/rtems/posix/ptimer.h

    r4600bd7c r71f2a83d  
    1111 *  Initial Implementation:
    1212 *    COPYRIGHT (c) 1998.  Alfonso Escalera Piña
    13  *  Largely rewritten by Joel Sherrill.
     13 *    Largely rewritten by Joel Sherrill (1999).
     14 *
     15 *  COPYRIGHT (c) 1999-2013.
     16 *  On-Line Applications Research Corporation (OAR).
    1417 *
    1518 *  The license and distribution terms for this file may be
    1619 *  found in the file LICENSE in this distribution or at
    1720 *  http://www.rtems.com/license/LICENSE.
    18  *
    19  *  ptimer.h,v 1.0 1998/03/31 16:21:16
    2021 */
    2122
     
    2728 *
    2829 * @ingroup POSIXAPI
    29  *
    3030 */
    3131/**@{**/
     
    3636#include <rtems/posix/config.h>
    3737
    38 /*
    39  *  _POSIX_Timers_Manager_initialization
    40  *
    41  *  DESCRIPTION:
     38/**
     39 *  @brief POSIX Timer Manager Initialization
    4240 *
    4341 *  This routine performs the initialization necessary for this manager.
    4442 */
    45 
    4643void _POSIX_Timer_Manager_initialization(void);
    4744
    48 /*
     45/**
    4946 *  @brief Create a Per-Process Timer
    50  *
    51  *  14.2.2 Create a Per-Process Timer, P1003.1b-1993, p. 264
    52  *
    53  *  timer_create
    5447 */
    55 
    5648int timer_create(
    5749  clockid_t        clock_id,
     
    6052);
    6153
    62 /*
    63  *  14.2.3 Delete a Per_process Timer, P1003.1b-1993, p. 266
     54/**
     55 *  @brief Delete a Per-Process Timer
    6456 */
    65 
    6657int timer_delete(
    6758  timer_t timerid
    6859);
    6960
    70 /*
    71  *  14.2.4 Per-Process Timers, P1003.1b-1993, p. 267
    72  *
    73  *  timer_settime
     61/**
     62 *  @brief Set a Per-Process Timer
    7463 */
    75 
    7664int timer_settime(
    7765  timer_t                  timerid,
     
    8169);
    8270
    83 /*
    84  *  14.2.4 Per-Process Timers, P1003.1b-1993, p. 267
    85  *
    86  *  timer_gettime
     71/**
     72 *  @brief Set a Per-Process Timer
    8773 */
    88 
    8974int timer_gettime(
    9075  timer_t            timerid,
     
    9378
    9479/**
    95  * @brief Get overrun count for a POSIX per-process timer.
     80 * @brief Get overrun count for a Per-Process Timer
    9681 *
    9782 * The expiration of a timer must increase by one a counter.
    9883 * After the signal handler associated to the timer finishes
    9984 * its execution, _POSIX_Timer_TSR will have to set this counter to 0.
    100  *
    101  * 14.2.4 Per-Process Timers, P1003.1b-1993, p. 267
    10285 */
    10386int timer_getoverrun(
Note: See TracChangeset for help on using the changeset viewer.