diff options
author | Sverker Eriksson <[email protected]> | 2012-03-07 16:16:44 +0100 |
---|---|---|
committer | Sverker Eriksson <[email protected]> | 2012-03-07 16:16:44 +0100 |
commit | 16c60b70936070b0a568473c1d99466479446af2 (patch) | |
tree | e24322cea82c826b20cd9475fca77aaf3319ce41 /erts/emulator/beam/code_ix.h | |
parent | 869237370df8133f0252ad2f803fcd6a152d98e7 (diff) | |
download | otp-16c60b70936070b0a568473c1d99466479446af2.tar.gz otp-16c60b70936070b0a568473c1d99466479446af2.tar.bz2 otp-16c60b70936070b0a568473c1d99466479446af2.zip |
erts: Fix assert failure when code_server exits "during" commit
Simplify by removing the support of abort_staging after end_staging.
Diffstat (limited to 'erts/emulator/beam/code_ix.h')
-rw-r--r-- | erts/emulator/beam/code_ix.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/erts/emulator/beam/code_ix.h b/erts/emulator/beam/code_ix.h index 068ff0e6ba..6b2680044e 100644 --- a/erts/emulator/beam/code_ix.h +++ b/erts/emulator/beam/code_ix.h @@ -101,7 +101,7 @@ void erts_release_code_write_permission(void); void erts_start_staging_code_ix(void); /* End the staging. - * Preceded by "start" and followed by "commit" or "abort". + * Preceded by "start" and must be followed by "commit". */ void erts_end_staging_code_ix(void); @@ -111,7 +111,7 @@ void erts_end_staging_code_ix(void); void erts_commit_staging_code_ix(void); /* Abort the staging. - * Preceded by "start" or "end". + * Preceded by "start". */ void erts_abort_staging_code_ix(void); |