source: rtems/testsuites/psxtests/psx02/task.c @ 1ba858d

4.104.114.84.95
Last change on this file since 1ba858d was 1ba858d, checked in by Joel Sherrill <joel.sherrill@…>, on 06/10/96 at 20:51:31

new files.

This test does a basic checkout of signals with a thread-directed signal
(pthread_kill()) used to interrupt a nanosleep().

  • 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    seconds = sleep( 1 );
35    assert( !seconds );
36
37    print_current_time( "Task1: ", "" );
38    status = pthread_kill( Init_id, SIGUSR1 );
39    assert( !status );
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.