diff options
author | Lukas Larsson <[email protected]> | 2014-01-30 18:20:24 +0100 |
---|---|---|
committer | Lukas Larsson <[email protected]> | 2014-02-24 15:16:05 +0100 |
commit | d3b26048bff761f90da7e4ed9ef8453cbc5289b0 (patch) | |
tree | 445eeac602dbfb3bdb83ede07511bdfeaadd7360 /erts/lib_src/ose | |
parent | 734c74b65fbb8c5340e6e8e5542d14fa9c8e0565 (diff) | |
download | otp-d3b26048bff761f90da7e4ed9ef8453cbc5289b0.tar.gz otp-d3b26048bff761f90da7e4ed9ef8453cbc5289b0.tar.bz2 otp-d3b26048bff761f90da7e4ed9ef8453cbc5289b0.zip |
ose: Remove receive in debug
Sometimes scheduler 1 should go in here and it will have signals,
so remove this. If needed later a check to see that fsem is used
for scheduler 1 is needed.
Diffstat (limited to 'erts/lib_src/ose')
-rw-r--r-- | erts/lib_src/ose/ethr_event.c | 20 |
1 files changed, 1 insertions, 19 deletions
diff --git a/erts/lib_src/ose/ethr_event.c b/erts/lib_src/ose/ethr_event.c index 5905fe22a9..87294c98ea 100644 --- a/erts/lib_src/ose/ethr_event.c +++ b/erts/lib_src/ose/ethr_event.c @@ -186,26 +186,8 @@ wait__(ethr_event *e, int spincount) ETHR_ASSERT(val == ETHR_EVENT_OFF__); } -#if defined(DEBUG) - while (1) { - /* In debug we also receive any signals to make sure that we do - not get any! redir tables should send all to scheduler_1 */ - SIGSELECT sigsel[] = {0}; - union SIGNAL *sig = receive_fsem(OSE_NO_TIMEOUT,sigsel,1); - //ETHR_ASSERT(sig == OS_RCV_FSEM); - if (sig != OS_RCV_FSEM) { - int i; - printf("0x%x: Got signal in wait: %u ",current_process(),sig->signo); - for (i = 0; i < (sigsize(&sig) / sizeof(SIGSELECT)) && i < 5; i++) { - printf("%x ",sig[i+1]); - } - printf("\n"); - } else - break; - } -#else wait_fsem(1); -#endif + ETHR_ASSERT(get_fsem(current_process()) == 0); } } |