source: rtems/cpukit/posix/src/alarm.c @ a29d2e7

4.104.114.84.95
Last change on this file since a29d2e7 was 874297f3, checked in by Ralf Corsepius <ralf.corsepius@…>, on 04/16/04 at 10:01:03

Remove stray white spaces.

  • Property mode set to 100644
File size: 1.7 KB
Line 
1/*
2 *  3.4.1 Schedule Alarm, P1003.1b-1993, p. 79
3 *
4 *  COPYRIGHT (c) 1989-1999.
5 *  On-Line Applications Research Corporation (OAR).
6 *
7 *  The license and distribution terms for this file may be
8 *  found in the file LICENSE in this distribution or at
9 *  http://www.rtems.com/license/LICENSE.
10 *
11 *  $Id$
12 */
13
14#if HAVE_CONFIG_H
15#include "config.h"
16#endif
17
18#include <pthread.h>
19/* #include <errno.h> */
20
21#include <rtems/system.h>
22#include <rtems/posix/pthread.h>
23#include <rtems/posix/psignal.h>
24
25Watchdog_Control _POSIX_signals_Alarm_timer;
26
27/*PAGE
28 *
29 *  _POSIX_signals_Alarm_TSR
30 */
31
32void _POSIX_signals_Alarm_TSR(
33  Objects_Id      id,
34  void           *argument
35)
36{
37  int status;
38
39  status = kill( getpid(), SIGALRM );
40  /* XXX can't print from an ISR, should this be fatal? */
41}
42
43unsigned int alarm(
44  unsigned int seconds
45)
46{
47  unsigned int      remaining = 0;
48  Watchdog_Control *the_timer;
49
50  the_timer = &_POSIX_signals_Alarm_timer;
51
52  /*
53   *  Initialize the timer used to implement alarm().
54   */
55
56  if ( !the_timer->routine ) {
57    _Watchdog_Initialize( the_timer, _POSIX_signals_Alarm_TSR, 0, NULL );
58  } else {
59    switch ( _Watchdog_Remove( the_timer ) ) {
60      case WATCHDOG_INACTIVE:
61      case WATCHDOG_BEING_INSERTED:
62        break;
63
64      case WATCHDOG_ACTIVE:
65      case WATCHDOG_REMOVE_IT:
66        /*
67         *  The stop_time and start_time fields are snapshots of ticks since
68         *  boot.  Since alarm() is dealing in seconds, we must account for
69         *  this.
70         */
71
72        remaining = the_timer->initial -
73         ((the_timer->stop_time - the_timer->start_time) /
74           _TOD_Ticks_per_second);
75        break;
76    }
77  }
78
79  _Watchdog_Insert_seconds( the_timer, seconds );
80
81  return remaining;
82}
Note: See TracBrowser for help on using the repository browser.