diff options
author | Björn-Egil Dahlberg <[email protected]> | 2016-12-02 16:44:43 +0100 |
---|---|---|
committer | Björn-Egil Dahlberg <[email protected]> | 2016-12-02 16:44:43 +0100 |
commit | 8e5c762d597b9a3ba4d78bcf57ebe379ad666599 (patch) | |
tree | 329f495e138b85dc3c64400eb4ddb5da857e197a /erts/emulator/beam/erl_lock_count.h | |
parent | 73e6fc31e8ef1808fb079a4bac2f1ccff44efa3a (diff) | |
download | otp-8e5c762d597b9a3ba4d78bcf57ebe379ad666599.tar.gz otp-8e5c762d597b9a3ba4d78bcf57ebe379ad666599.tar.bz2 otp-8e5c762d597b9a3ba4d78bcf57ebe379ad666599.zip |
erts: Fix whitespace errors in lock counter
Diffstat (limited to 'erts/emulator/beam/erl_lock_count.h')
-rw-r--r-- | erts/emulator/beam/erl_lock_count.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/erts/emulator/beam/erl_lock_count.h b/erts/emulator/beam/erl_lock_count.h index 3e8dcefe69..4f838f7faa 100644 --- a/erts/emulator/beam/erl_lock_count.h +++ b/erts/emulator/beam/erl_lock_count.h @@ -148,13 +148,13 @@ typedef struct erts_lcnt_lock_stats_s { typedef struct erts_lcnt_lock_s { char *name; /* lock name */ Uint16 flag; /* lock type */ - Eterm id; /* id if possible */ + Eterm id; /* id if possible */ #ifdef DEBUG ethr_atomic_t flowstate; #endif - /* lock states */ + /* lock states */ ethr_atomic_t w_state; /* 0 not taken, otherwise n threads waiting */ ethr_atomic_t r_state; /* 0 not taken, > 0 -> writes will wait */ |