source: rtems/cpukit/posix/src/alarm.c @ 8f6b7b51

4.104.115
Last change on this file since 8f6b7b51 was 8f6b7b51, checked in by Joel Sherrill <joel.sherrill@…>, on 10/11/09 at 22:37:38

2009-10-11 Joel Sherrill <joel.sherrill@…>

  • posix/src/alarm.c: If 0 seconds do not insert timer.
  • rtems/src/regionextend.c: Eliminate warning. Use default else.
  • 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
5/*  COPYRIGHT (c) 1989-2007.
6 *  On-Line Applications Research Corporation (OAR).
7 *
8 *  The license and distribution terms for this file may be
9 *  found in the file LICENSE in this distribution or at
10 *  http://www.rtems.com/license/LICENSE.
11 *
12 *  $Id$
13 */
14
15#if HAVE_CONFIG_H
16#include "config.h"
17#endif
18
19#include <pthread.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 __attribute__((unused)),
34  void           *argument __attribute__((unused))
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    Watchdog_States state;
60
61    state = _Watchdog_Remove( the_timer );
62    if ( (state == WATCHDOG_ACTIVE) || (state == WATCHDOG_REMOVE_IT) ) {
63      /*
64       *  The stop_time and start_time fields are snapshots of ticks since
65       *  boot.  Since alarm() is dealing in seconds, we must account for
66       *  this.
67       */
68
69      remaining = the_timer->initial -
70        ((the_timer->stop_time - the_timer->start_time) / TOD_TICKS_PER_SECOND);
71    }
72  }
73
74  if ( seconds )
75    _Watchdog_Insert_seconds( the_timer, seconds );
76
77  return remaining;
78}
Note: See TracBrowser for help on using the repository browser.