diff options
author | dfr <dfr@FreeBSD.org> | 2009-05-27 18:54:31 +0000 |
---|---|---|
committer | dfr <dfr@FreeBSD.org> | 2009-05-27 18:54:31 +0000 |
commit | 954b6f0f3beed7a34bbcd1cdc1cf7df501666617 (patch) | |
tree | 52b24a9db3ac99a8258ab06b1f7848a94be7a9c4 | |
parent | 3fb43873edf721de1d1370b08f42f4c8c0e8dc19 (diff) | |
download | FreeBSD-src-954b6f0f3beed7a34bbcd1cdc1cf7df501666617.zip FreeBSD-src-954b6f0f3beed7a34bbcd1cdc1cf7df501666617.tar.gz |
Increase the size of the static TLS area slightly (required for the NVidia's
OpenGL driver on amd64).
-rw-r--r-- | libexec/rtld-elf/rtld.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/libexec/rtld-elf/rtld.h b/libexec/rtld-elf/rtld.h index 1d7ffb2..2b3b897 100644 --- a/libexec/rtld-elf/rtld.h +++ b/libexec/rtld-elf/rtld.h @@ -231,7 +231,7 @@ typedef struct Struct_Obj_Entry { #define RTLD_MAGIC 0xd550b87a #define RTLD_VERSION 1 -#define RTLD_STATIC_TLS_EXTRA 64 +#define RTLD_STATIC_TLS_EXTRA 128 /* Flags to be passed into symlook_ family of functions. */ #define SYMLOOK_IN_PLT 0x01 /* Lookup for PLT symbol */ |