mirror of
https://sourceware.org/git/glibc.git
synced 2024-11-10 15:20:10 +00:00
37de950b40
2002-03-03 Andreas Jaeger <aj@suse.de> * elf/nodlopenmod2.c: Provide prototype to avoid warning. * elf/tst-tlsmod1.c: Likewise. * posix/regcomp.c: Get regex.h from include dir for internal prototypes. * sysdeps/unix/sysv/linux/init-first.c: Move __init_misc prototype to libc-internal.h and include it. * include/libc-internal.h: Add __init_misc. * misc/init-misc.c: Include libc-internal.h for prototypes. * sysdeps/wordsize-32/divdi3.c: Add prototypes to avoid warnings. * misc/error.c [_LIBC]: Include libioP.h for prototype of _IO_putc_internal.
68 lines
1.1 KiB
C
68 lines
1.1 KiB
C
#include <stdio.h>
|
|
|
|
#include <tls.h>
|
|
|
|
#ifdef USE_TLS
|
|
#include "tls-macros.h"
|
|
|
|
|
|
/* One define int variable, two externs. */
|
|
COMMON_INT_DEF(foo);
|
|
VAR_INT_DEF(bar);
|
|
VAR_INT_DECL(baz);
|
|
#endif
|
|
|
|
extern int in_dso (void);
|
|
|
|
int
|
|
in_dso (void)
|
|
{
|
|
int result = 0;
|
|
#ifdef USE_TLS
|
|
int *ap, *bp, *cp;
|
|
|
|
/* Get variables using initial exec model. */
|
|
fputs ("get sum of foo and bar (IE)", stdout);
|
|
ap = TLS_IE (foo);
|
|
bp = TLS_IE (bar);
|
|
printf (" = %d\n", *ap + *bp);
|
|
result |= *ap + *bp != 3;
|
|
if (*ap != 1)
|
|
{
|
|
printf ("foo = %d\n", *ap);
|
|
result = 1;
|
|
}
|
|
if (*bp != 2)
|
|
{
|
|
printf ("bar = %d\n", *bp);
|
|
result = 1;
|
|
}
|
|
|
|
|
|
/* Get variables using generic dynamic model. */
|
|
fputs ("get sum of foo and bar and baz (GD)", stdout);
|
|
ap = TLS_GD (foo);
|
|
bp = TLS_GD (bar);
|
|
cp = TLS_GD (baz);
|
|
printf (" = %d\n", *ap + *bp + *cp);
|
|
result |= *ap + *bp + *cp != 6;
|
|
if (*ap != 1)
|
|
{
|
|
printf ("foo = %d\n", *ap);
|
|
result = 1;
|
|
}
|
|
if (*bp != 2)
|
|
{
|
|
printf ("bar = %d\n", *bp);
|
|
result = 1;
|
|
}
|
|
if (*cp != 3)
|
|
{
|
|
printf ("baz = %d\n", *cp);
|
|
result = 1;
|
|
}
|
|
#endif
|
|
|
|
return result;
|
|
}
|