source: rtems/testsuites/libtests/malloctest/task1.c @ cd792a86

4.104.114.84.95
Last change on this file since cd792a86 was cd792a86, checked in by Joel Sherrill <joel.sherrill@…>, on 02/03/99 at 22:12:28

Patch from John S Gwynne <jsg@…> for malloctest. His comments:

I have a few patches for the efi332 bsp. If you let me know when you
expect the next snapshot release, I will try to have them to you
before then. Also, the malloctest has some problems that I would think
would prevent it from running on almost any platform. I have enclose
patches below to fix (1) Task_id and Task_name dimensioning, (2) end
of test message, (3) the amount of memory malloc'ed, and (4) retry on
unsuccessful (out of memory) molloc's.

  • Property mode set to 100644
File size: 2.0 KB
RevLine 
[4a5e651]1/*  task1.c
2 *
3 *  This set of three tasks do some simple task switching for about
4 *  15 seconds and then call a routine to "blow the stack".
5 *
[60b791ad]6 *  COPYRIGHT (c) 1989-1998.
[4a5e651]7 *  On-Line Applications Research Corporation (OAR).
[03f2154e]8 *  Copyright assigned to U.S. Government, 1994.
[4a5e651]9 *
[98e4ebf5]10 *  The license and distribution terms for this file may be
11 *  found in the file LICENSE in this distribution or at
[03f2154e]12 *  http://www.OARcorp.com/rtems/license.html.
[4a5e651]13 *
14 *  $Id$
15 */
16
17#include "system.h"
18#include <libcsupport.h>    /* for malloc_dump, malloc_walk */
19#include <string.h>         /* for memset */
[cd792a86]20#include <stdlib.h>
[4a5e651]21
22#define NUM_PASSES 100
23
24rtems_task Task_1_through_5(
25  rtems_task_argument argument
26)
27{
28  int i;
29  unsigned int passes = 0;
30  rtems_id          tid;
31  rtems_time_of_day time;
32  rtems_status_code status;
33  unsigned char *mem_ptr;
34  int mem_amt;
35
36  status = rtems_task_ident( RTEMS_SELF, RTEMS_SEARCH_ALL_NODES, &tid );
37  directive_failed( status, "rtems_task_ident" );
38
39  while (TRUE)
40  {
[cd792a86]41    if ( passes++ > NUM_PASSES ) {
42        puts("*** END OF MALLOC TEST ***");
[4a5e651]43        exit(0);
[cd792a86]44    }
[4a5e651]45
46    status = rtems_clock_get( RTEMS_CLOCK_GET_TOD, &time );
47    directive_failed( status, "rtems_clock_get" );
48
49    put_name( Task_name[ task_number( tid ) ], FALSE );
50    print_time( " - rtems_clock_get - ", &time, "\n" );
51
[cd792a86]52    mem_amt = ((int)((float)rand()*1000.0/(float)RAND_MAX));
53    while (!(mem_ptr = malloc ( mem_amt))) {
54        printf("out of memory... trying again.\n");
55        mem_amt = ((int)((float)rand()*1000.0/(float)RAND_MAX));
56    }
[4a5e651]57    printf("mallocing %d bytes\n",mem_amt);
58    memset( mem_ptr, mem_amt, mem_amt );
59    malloc_dump();
60    malloc_walk(1,FALSE);
61    status = rtems_task_wake_after( task_number( tid ) * 1 * TICKS_PER_SECOND/4 );
62    for (i=0; i < mem_amt; i++)
63    {
64       if ( mem_ptr[i] != (mem_amt & 0xff))
65       {
66          printf("failed %d, %d, 0x%x, 0x%x\n",i,mem_amt,mem_ptr[i],mem_amt&0xff);
67          exit(1);
68       }
69    }
70    directive_failed( status, "rtems_task_wake_after" );
71    free( mem_ptr );
72  }
73}
Note: See TracBrowser for help on using the repository browser.