aboutsummaryrefslogtreecommitdiffstats
path: root/erts/emulator/beam/erl_process.h
diff options
context:
space:
mode:
authorSverker Eriksson <[email protected]>2012-08-14 20:39:25 +0200
committerSverker Eriksson <[email protected]>2012-08-31 15:50:15 +0200
commit7719f3e754e43e8176f906c9075257367f73cf93 (patch)
tree83bc0b7515a2881e8e8fb31042528bb194a33e07 /erts/emulator/beam/erl_process.h
parentf8cd4094e91985c5c98e06a641a04ffbf0ad15ab (diff)
downloadotp-7719f3e754e43e8176f906c9075257367f73cf93.tar.gz
otp-7719f3e754e43e8176f906c9075257367f73cf93.tar.bz2
otp-7719f3e754e43e8176f906c9075257367f73cf93.zip
erts: Refactor code loading to use erts_schedule_thr_prgr_later_op
Diffstat (limited to 'erts/emulator/beam/erl_process.h')
-rw-r--r--erts/emulator/beam/erl_process.h9
1 files changed, 2 insertions, 7 deletions
diff --git a/erts/emulator/beam/erl_process.h b/erts/emulator/beam/erl_process.h
index 1436e246d6..71b066046b 100644
--- a/erts/emulator/beam/erl_process.h
+++ b/erts/emulator/beam/erl_process.h
@@ -283,9 +283,8 @@ typedef enum {
#define ERTS_SSI_AUX_WORK_CHECK_CHILDREN (((erts_aint32_t) 1) << 10)
#define ERTS_SSI_AUX_WORK_SET_TMO (((erts_aint32_t) 1) << 11)
#define ERTS_SSI_AUX_WORK_MSEG_CACHE_CHECK (((erts_aint32_t) 1) << 12)
-#define ERTS_SSI_AUX_WORK_CODE_IX_ACTIVATION (((erts_aint32_t) 1) << 13)
-#define ERTS_SSI_AUX_WORK_REAP_PORTS (((erts_aint32_t) 1) << 14)
-#define ERTS_SSI_AUX_WORK_FINISH_BP (((erts_aint32_t) 1) << 15)
+#define ERTS_SSI_AUX_WORK_REAP_PORTS (((erts_aint32_t) 1) << 13)
+#define ERTS_SSI_AUX_WORK_FINISH_BP (((erts_aint32_t) 1) << 14)
typedef struct ErtsSchedulerSleepInfo_ ErtsSchedulerSleepInfo;
@@ -480,10 +479,6 @@ typedef struct {
#endif
#ifdef ERTS_SMP
struct {
- Process* code_stager;
- ErtsThrPrgrVal thr_prgr;
- } code_ix_activation;
- struct {
Process* stager;
ErtsThrPrgrVal thr_prgr;
} bp_ix_activation;