diff options
author | Ulrich Drepper <drepper@redhat.com> | 2003-04-27 06:15:09 +0000 |
---|---|---|
committer | Ulrich Drepper <drepper@redhat.com> | 2003-04-27 06:15:09 +0000 |
commit | 669863e27194ac7ddeffa2843d96949a1e082ece (patch) | |
tree | 25fecffacede43f5982dafb9f57ab094749825d1 | |
parent | 5ae340e35bfb08dd57e83dccfc45068865a7cd0d (diff) | |
download | glibc-669863e27194ac7ddeffa2843d96949a1e082ece.tar glibc-669863e27194ac7ddeffa2843d96949a1e082ece.tar.gz glibc-669863e27194ac7ddeffa2843d96949a1e082ece.tar.bz2 glibc-669863e27194ac7ddeffa2843d96949a1e082ece.zip |
Test for unloading of modules with TLS in static block.
-rw-r--r-- | elf/tst-tls13.c | 29 |
1 files changed, 29 insertions, 0 deletions
diff --git a/elf/tst-tls13.c b/elf/tst-tls13.c new file mode 100644 index 0000000000..31b9cfbba3 --- /dev/null +++ b/elf/tst-tls13.c @@ -0,0 +1,29 @@ +/* Check unloading modules with data in static TLS block. */ +#include <dlfcn.h> +#include <stdio.h> +#include <stdlib.h> + + +static int +do_test (void) +{ + int i; + for (i = 0; i < 1000;) + { + printf ("round %d\n",++i); + + void *h = dlopen ("tst-tlsmod13a.so", RTLD_LAZY); + if (h == NULL) + { + printf ("cannot load: %s\n", dlerror ()); + exit (1); + } + + dlclose (h); + } + + return 0; +} + +#define TEST_FUNCTION do_test () +#include "../test-skeleton.c" |