source: rtems/cpukit/posix/src/alarm.c @ 92f4671

4.104.115
Last change on this file since 92f4671 was 92f4671, checked in by Ralf Corsepius <ralf.corsepius@…>, on 01/02/09 at 10:04:24

Add attribute((unused)) to unused function args.

  • 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    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.