source: rtems/testsuites/psxtests/psx02/task.c @ fb39f19

4.104.114.84.95
Last change on this file since fb39f19 was fb39f19, checked in by Joel Sherrill <joel.sherrill@…>, on 06/11/96 at 16:04:25

modified to test pthread_kill() to self and pthread_kill() to a blocked
thread. nanosleep() can be interrupted and return the time remaining.

  • Property mode set to 100644
File size: 1.0 KB
Line 
1/*  Task_1_through_3
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, 1990, 1991, 1992, 1993, 1994.
12 *  On-Line Applications Research Corporation (OAR).
13 *  All rights assigned to U.S. Government, 1994.
14 *
15 *  This material may be reproduced by or for the U.S. Government pursuant
16 *  to the copyright license under the clause at DFARS 252.227-7013.  This
17 *  notice must appear in all copies of this file and its derivatives.
18 *
19 *  $Id$
20 */
21
22#include "system.h"
23#include <signal.h>
24
25void *Task_1_through_3(
26  void *argument
27)
28{
29  int seconds;
30  int i;
31  int status;
32
33  for ( i=0 ; i<5 ; i++ ) {
34    print_current_time( "Task1: ", "" );
35    status = pthread_kill( Init_id, SIGUSR1 );
36    assert( !status );
37
38    seconds = sleep( 1 );
39    assert( !seconds );
40  }
41  puts( "*** END OF POSIX TEST 2 ***" );
42  exit( 0 );
43
44  return NULL; /* just so the compiler thinks we returned something */
45}
Note: See TracBrowser for help on using the repository browser.