source: rtems/c/src/tests/psxtests/psx06/task.c @ 1ed9d57

4.104.114.84.95
Last change on this file since 1ed9d57 was 60b791ad, checked in by Joel Sherrill <joel.sherrill@…>, on 02/17/98 at 23:46:28

updated copyright to 1998

  • Property mode set to 100644
File size: 1.2 KB
Line 
1/*  Task_1
2 *
3 *  This routine serves as a test task.  It verifies the basic task
4 *  switching capabilities of the executive.
5 *
6 *  Input parameters:
7 *    argument - task argument
8 *
9 *  Output parameters:  NONE
10 *
11 *  COPYRIGHT (c) 1989-1998.
12 *  On-Line Applications Research Corporation (OAR).
13 *  Copyright assigned to U.S. Government, 1994.
14 *
15 *  The license and distribution terms for this file may be
16 *  found in the file LICENSE in this distribution or at
17 *  http://www.OARcorp.com/rtems/license.html.
18 *
19 *  $Id$
20 */
21
22#include "system.h"
23#include <errno.h>
24
25void *Task_1(
26  void *argument
27)
28{
29  int               status;
30  rtems_unsigned32 *key_data;
31
32  printf( "Task_1: Setting the key to %d\n", 1 );
33  status = pthread_setspecific( Key_id, &Data_array[ 1 ] );
34  if ( status )
35    printf( "status = %d\n", status );
36  assert( !status );
37 
38  key_data = pthread_getspecific( Key_id );
39  printf( "Task_1: Got the key value of %ld\n",
40          (unsigned long) ((rtems_unsigned32 *)key_data - Data_array) );
41  if ( status )
42    printf( "status = %d\n", status );
43  assert( !status );
44
45  puts( "Task_1: exitting" );
46  pthread_exit( NULL );
47
48     /* switch to task 2 */
49
50  return NULL; /* just so the compiler thinks we returned something */
51}
Note: See TracBrowser for help on using the repository browser.