diff options
author | Lukas Larsson <[email protected]> | 2013-10-31 14:40:33 +0100 |
---|---|---|
committer | Lukas Larsson <[email protected]> | 2014-02-24 15:16:00 +0100 |
commit | 8103fed4090e9f1457fb1705e9a4df0821f5db9b (patch) | |
tree | 8ed606e8774851fee2645012b1e948dc1bb88de0 /erts/lib_src/pthread | |
parent | fd3aa9d63649084b345d0977fa121805f13c9d33 (diff) | |
download | otp-8103fed4090e9f1457fb1705e9a4df0821f5db9b.tar.gz otp-8103fed4090e9f1457fb1705e9a4df0821f5db9b.tar.bz2 otp-8103fed4090e9f1457fb1705e9a4df0821f5db9b.zip |
ose,erts: Specify name for tsd keys
This simplified debugging on OSE and also limits the number of ppdata
keys that are created when beam is restarted.
Diffstat (limited to 'erts/lib_src/pthread')
-rw-r--r-- | erts/lib_src/pthread/ethread.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/erts/lib_src/pthread/ethread.c b/erts/lib_src/pthread/ethread.c index fb7d135418..7f27b5f29c 100644 --- a/erts/lib_src/pthread/ethread.c +++ b/erts/lib_src/pthread/ethread.c @@ -472,7 +472,7 @@ ethr_leave_ts_event(ethr_ts_event *tsep) */ int -ethr_tsd_key_create(ethr_tsd_key *keyp) +ethr_tsd_key_create(ethr_tsd_key *keyp, char *keyname) { #if ETHR_XCHK if (ethr_not_inited__) { |