binutils-gdb/sim/testsuite/cris/c/ex1.c
Mike Frysinger 1214c97666 sim: testsuite: initial support for OS-specific tests
We usually test against the newlib/libgloss environment, but for a
few ports that also support Linux apps, we want to test that logic
too.  A lot of the C code is written such that it works with either
newlib/libgloss or glibc/linux toolchains, but we have some tests
that end up being Linux-specific.  Cris has been using the target
tuple as a rough proxy for this (where cris*-*-elf is assumed to be
newlib/libgloss, and everything else is glibc/linux), but that is a
bit too rough, and it doesn't work in a multitarget build.

So lets create a few stub files that we can do compile tests with
to detect the different setups, and then let tests declare which
one they require (if they require any at all).
2021-11-26 20:06:55 -05:00

55 lines
1.4 KiB
C

/* Compiler options:
#progos: linux
#cc: additional_flags=-pthread
#output: Starting process a\naaaaaaaaStarting process b\nababbbbbbbbb
The output will change depending on the exact syscall sequence per
thread, so will change with glibc versions. Prepare to modify; use
the latest glibc.
This file is from glibc/linuxthreads, with the difference that the
number is 10, not 10000. */
/* Creates two threads, one printing 10000 "a"s, the other printing
10000 "b"s.
Illustrates: thread creation, thread joining. */
#include <stddef.h>
#include <stdio.h>
#include <unistd.h>
#include "pthread.h"
static void *
process (void *arg)
{
int i;
fprintf (stderr, "Starting process %s\n", (char *) arg);
for (i = 0; i < 10; i++)
{
write (1, (char *) arg, 1);
}
return NULL;
}
int
main (void)
{
int retcode;
pthread_t th_a, th_b;
void *retval;
retcode = pthread_create (&th_a, NULL, process, (void *) "a");
if (retcode != 0)
fprintf (stderr, "create a failed %d\n", retcode);
retcode = pthread_create (&th_b, NULL, process, (void *) "b");
if (retcode != 0)
fprintf (stderr, "create b failed %d\n", retcode);
retcode = pthread_join (th_a, &retval);
if (retcode != 0)
fprintf (stderr, "join a failed %d\n", retcode);
retcode = pthread_join (th_b, &retval);
if (retcode != 0)
fprintf (stderr, "join b failed %d\n", retcode);
return 0;
}