diff options
author | Sverker Eriksson <[email protected]> | 2012-01-24 15:42:02 +0100 |
---|---|---|
committer | Sverker Eriksson <[email protected]> | 2012-02-21 12:23:04 +0100 |
commit | a23f25a3014dbad01d2016dc4e6d6df9d59ba64c (patch) | |
tree | 52c142a4d78eddcde0fdb526d531239e0638f6f3 /erts/emulator/beam/export.h | |
parent | 72cab3a723925d0e369466d7de7567d8482b1318 (diff) | |
download | otp-a23f25a3014dbad01d2016dc4e6d6df9d59ba64c.tar.gz otp-a23f25a3014dbad01d2016dc4e6d6df9d59ba64c.tar.bz2 otp-a23f25a3014dbad01d2016dc4e6d6df9d59ba64c.zip |
erts: Rename "loader" code_ix as "staging" code_ix
Staging is a better and more general name as does not necessary need
to involve code loading (can be deletion, tracing, etc).
Diffstat (limited to 'erts/emulator/beam/export.h')
-rw-r--r-- | erts/emulator/beam/export.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/erts/emulator/beam/export.h b/erts/emulator/beam/export.h index 577e24f266..21cfafc77d 100644 --- a/erts/emulator/beam/export.h +++ b/erts/emulator/beam/export.h @@ -72,8 +72,8 @@ Export *export_list(int,ErtsCodeIndex); int export_list_size(ErtsCodeIndex); int export_table_sz(void); Export *export_get(Export*); -void export_start_load(void); -void export_end_load(int commit); +void export_start_staging(void); +void export_end_staging(int commit); extern erts_smp_rwmtx_t export_table_lock; #define export_write_lock() erts_smp_rwmtx_rwlock(&export_table_lock) |