source: rtems/cpukit/itron/src/get_tid.c @ eb02f47

4.104.114.84.95
Last change on this file since eb02f47 was eb02f47, checked in by Joel Sherrill <joel.sherrill@…>, on 11/10/99 at 13:48:27

Committed modifications from ITRON Task and Task Dependendent Synchronization
Working Group. Included are tests.

  • Property mode set to 100644
File size: 691 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/score/thread.h>
12#include <rtems/score/userext.h>
13#include <rtems/score/wkspace.h>
14#include <rtems/score/apiext.h>
15#include <rtems/score/sysstate.h>
16
17#include <rtems/itron/task.h>
18
19/*
20 *  get_tid - Get Task Identifier
21 */
22
23ER get_tid(
24  ID *p_tskid
25)
26{
27  /*
28   *  This does not support multiprocessing.  The id handling will have
29   *  to be enhanced to support multiprocessing.
30   */
31   
32  *p_tskid = _Objects_Get_index( _Thread_Executing->Object.id );
33  return E_OK;
34}
35
Note: See TracBrowser for help on using the repository browser.