diff options
author | Rickard Green <[email protected]> | 2018-04-12 16:55:58 +0200 |
---|---|---|
committer | Rickard Green <[email protected]> | 2018-05-16 13:28:38 +0200 |
commit | 08873ec673ef223a4e0c9826b0370d80bb6aad24 (patch) | |
tree | 3282e1d43d2695c353c93eb4db08373e5d06fc9f /erts/emulator/hipe/hipe_process.h | |
parent | 9be1ed4b7847044698563392b3d7b53565ea0873 (diff) | |
download | otp-08873ec673ef223a4e0c9826b0370d80bb6aad24.tar.gz otp-08873ec673ef223a4e0c9826b0370d80bb6aad24.tar.bz2 otp-08873ec673ef223a4e0c9826b0370d80bb6aad24.zip |
Teach HiPE to yield from receive
Diffstat (limited to 'erts/emulator/hipe/hipe_process.h')
-rw-r--r-- | erts/emulator/hipe/hipe_process.h | 9 |
1 files changed, 0 insertions, 9 deletions
diff --git a/erts/emulator/hipe/hipe_process.h b/erts/emulator/hipe/hipe_process.h index ef14c75f6c..18354ba0a6 100644 --- a/erts/emulator/hipe/hipe_process.h +++ b/erts/emulator/hipe/hipe_process.h @@ -82,13 +82,4 @@ static __inline__ void hipe_delete_process(struct hipe_process_state *p) erts_free(ERTS_ALC_T_HIPE_STK, (void*)p->nstack); } -struct hipe_process_state_smp { - int have_receive_locks; -}; - -static __inline__ void hipe_init_process_smp(struct hipe_process_state_smp *p) -{ - p->have_receive_locks = 0; -} - #endif /* HIPE_PROCESS_H */ |