Changes between Version 2 and Version 3 of Ticket #231
- Timestamp:
- 01/09/13 10:19:37 (8 years ago)
Legend:
- Unmodified
- Added
- Removed
- Modified
-
Ticket #231 – Description
v2 v3 1 1 We currently require all calls to {{{send()}}} to be done in the main thread, but this can be quite expensive - see this [/wiki/Profiling#pycallgraph pycallgraph] diagram: 2 [[Image(https://www.xpra.org/trac/raw-attachment/ticket/231/pycallgraph-expensivetosend .png)]]2 [[Image(https://www.xpra.org/trac/raw-attachment/ticket/231/pycallgraph-expensivetosend2.png)]] 3 3 4 which was obtained with :4 which was obtained with a server running: 5 5 {{{ 6 ./tests/scripts/pycallgraph -i '*' -e ALL -d 2 -r 20 -- attach :10 --no-mmap --encoding=x264 6 xpra start :10 --start-child="vglrun glxgears" 7 }}} 8 And the client running 9 {{{ 10 XPRA_OPENGL=0 ./tests/scripts/pycallgraph -i '*' -e ALL -d 2 -r 20 -- \ 11 attach :10 --no-mmap --encoding=x264 7 12 }}} 8 13