diff options
author | Dan Gudmundsson <[email protected]> | 2018-12-06 21:50:46 +0100 |
---|---|---|
committer | Dan Gudmundsson <[email protected]> | 2018-12-06 21:50:46 +0100 |
commit | 1ec09d6d239194689a95a0f0111d751d9a57e407 (patch) | |
tree | 29a3bbea95f446feece021bca920b377904acef6 /lib/wx/c_src/wxe_helpers.cpp | |
parent | 73e4f5f21bbf492ab61c01dee48fa09fd7309a50 (diff) | |
download | otp-1ec09d6d239194689a95a0f0111d751d9a57e407.tar.gz otp-1ec09d6d239194689a95a0f0111d751d9a57e407.tar.bz2 otp-1ec09d6d239194689a95a0f0111d751d9a57e407.zip |
Don't try to wake up wx thread when not necessary
That kills performance on at least windows when a the load goes up and
a lot of commands is sent to the driver.
Diffstat (limited to 'lib/wx/c_src/wxe_helpers.cpp')
-rw-r--r-- | lib/wx/c_src/wxe_helpers.cpp | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/lib/wx/c_src/wxe_helpers.cpp b/lib/wx/c_src/wxe_helpers.cpp index d1f607d2af..47955494f9 100644 --- a/lib/wx/c_src/wxe_helpers.cpp +++ b/lib/wx/c_src/wxe_helpers.cpp @@ -101,7 +101,7 @@ wxeCommand * wxeFifo::Peek(unsigned int *i) } -void wxeFifo::Add(int fc, char * cbuf,int buflen, wxe_data *sd) +int wxeFifo::Add(int fc, char * cbuf,int buflen, wxe_data *sd) { unsigned int pos; wxeCommand *curr; @@ -144,6 +144,7 @@ void wxeFifo::Add(int fc, char * cbuf,int buflen, wxe_data *sd) } else { // No-op only PING currently curr->buffer = NULL; } + return m_n; } void wxeFifo::Append(wxeCommand *orig) |