source: rtems/c/src/lib/libbsp/shmdr/setckvec.c @ 7c4a626

4.104.114.84.95
Last change on this file since 7c4a626 was 4e89a12, checked in by Joel Sherrill <joel.sherrill@…>, on 09/04/03 at 18:56:25

2003-09-04 Joel Sherrill <joel@…>

  • addlq.c, cnvpkt.c, dump.c, fatal.c, getlq.c, getpkt.c, init.c, initlq.c, intr.c, mpci.h, mpisr.c, poll.c, receive.c, retpkt.c, send.c, setckvec.c, shm_driver.h: URL for license changed.
  • Property mode set to 100644
File size: 792 bytes
Line 
1/*  Shm_setclockvec
2 *
3 *  This routines installs the shared memory clock interrupt handler
4 *  used when the driver is used in polling mode.
5 *
6 *  INPUT PARAMETERS:  NONE
7 *
8 *  OUTPUT PARAMETERS: NONE
9 *
10 *  COPYRIGHT (c) 1989-1999.
11 *  On-Line Applications Research Corporation (OAR).
12 *
13 *  The license and distribution terms for this file may be
14 *  found in the file LICENSE in this distribution or at
15 *  http://www.rtems.com/license/LICENSE.
16 *
17 *  $Id$
18 */
19
20#include <rtems.h>
21#include <rtems/libio.h>
22
23#include "shm_driver.h"
24
25rtems_isr Shm_setclockvec()
26{
27    rtems_libio_ioctl_args_t args;
28    args.iop = 0;
29    args.command = rtems_build_name('N', 'E', 'W', ' ');
30    args.buffer = (void *) Shm_Poll;
31
32    (void) rtems_io_control(rtems_clock_major, rtems_clock_minor, &args);
33}
Note: See TracBrowser for help on using the repository browser.