source: rtems/cpukit/itron/src/wai_sem.c @ fb27af76

4.104.114.84.95
Last change on this file since fb27af76 was fb27af76, checked in by Joel Sherrill <joel.sherrill@…>, on 11/15/99 at 16:39:01

Split ITRON semaphore manager into multiple files.

  • Property mode set to 100644
File size: 472 bytes
Line 
1/*
2 *  The license and distribution terms for this file may be
3 *  found in the file LICENSE in this distribution or at
4 *  http://www.OARcorp.com/rtems/license.html.
5 *
6 *  $Id$
7 */
8
9#include <itron.h>
10
11#include <rtems/itron/semaphore.h>
12#include <rtems/itron/task.h>
13#include <rtems/score/tod.h>
14
15/*
16 *  wai_sem - Wait on Semaphore
17 *
18 *  This function implements the ITRON 3.0 wai_sem() service.
19 */
20
21ER wai_sem(
22  ID semid
23)
24{
25  return twai_sem( semid, TMO_FEVR );
26}
Note: See TracBrowser for help on using the repository browser.