source: rtems/c/src/lib/libbsp/shmdr/setckvec.c @ 98e4ebf5

4.104.114.84.95
Last change on this file since 98e4ebf5 was 98e4ebf5, checked in by Joel Sherrill <joel.sherrill@…>, on 10/08/97 at 15:45:54

Fixed typo in the pointer to the license terms.

  • Property mode set to 100644
File size: 839 bytes
RevLine 
[ac7d5ef0]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 *
[03f2154e]10 *  COPYRIGHT (c) 1989-1997.
[ac7d5ef0]11 *  On-Line Applications Research Corporation (OAR).
[03f2154e]12 *  Copyright assigned to U.S. Government, 1994.
[ac7d5ef0]13 *
[98e4ebf5]14 *  The license and distribution terms for this file may be
15 *  found in the file LICENSE in this distribution or at
[03f2154e]16 *  http://www.OARcorp.com/rtems/license.html.
[ac7d5ef0]17 *
18 *  $Id$
19 */
20
21#include <rtems.h>
[b06e68ef]22#include <rtems/libio.h>
23
[ac7d5ef0]24#include "shm.h"
25
26rtems_isr Shm_setclockvec()
27{
[b06e68ef]28    rtems_libio_ioctl_args_t args;
29    args.iop = 0;
30    args.command = rtems_build_name('N', 'E', 'W', ' ');
31    args.buffer = (void *) Shm_Poll;
32
33    (void) rtems_io_control(rtems_clock_major, rtems_clock_minor, &args);
[ac7d5ef0]34}
Note: See TracBrowser for help on using the repository browser.