diff options
author | Dan Gudmundsson <[email protected]> | 2015-10-20 10:19:16 +0200 |
---|---|---|
committer | Dan Gudmundsson <[email protected]> | 2015-11-23 14:39:57 +0100 |
commit | e732293edc5a970885d9eb362dcaddf3548f84a4 (patch) | |
tree | ae21baeb0c8d65241b7dd55eb02130174bfa00ec /lib/wx/c_src/wxe_impl.h | |
parent | ba77723f5d81e9e52fb4e2abdffc70ccd3d3e8de (diff) | |
download | otp-e732293edc5a970885d9eb362dcaddf3548f84a4.tar.gz otp-e732293edc5a970885d9eb362dcaddf3548f84a4.tar.bz2 otp-e732293edc5a970885d9eb362dcaddf3548f84a4.zip |
wx: Use only one ring buffer for command queue
Avoid copying between command queues, cleaner, faster and
safer implementation.
Diffstat (limited to 'lib/wx/c_src/wxe_impl.h')
-rw-r--r-- | lib/wx/c_src/wxe_impl.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/lib/wx/c_src/wxe_impl.h b/lib/wx/c_src/wxe_impl.h index d6d3095a0f..fd25296c73 100644 --- a/lib/wx/c_src/wxe_impl.h +++ b/lib/wx/c_src/wxe_impl.h @@ -67,8 +67,8 @@ public: void shutdown(wxeMetaCommand& event); - int dispatch(wxeFifo *, int, int); - void dispatch_cb(wxeFifo * batch, wxeFifo * temp, ErlDrvTermData process); + int dispatch(wxeFifo *); + void dispatch_cb(wxeFifo * batch, ErlDrvTermData process); void wxe_dispatch(wxeCommand& event); |