Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/valdikss/skype-poll-fix
Reduce Skype CPU load on Linux and Mac OS
https://github.com/valdikss/skype-poll-fix
Last synced: 16 days ago
JSON representation
Reduce Skype CPU load on Linux and Mac OS
- Host: GitHub
- URL: https://github.com/valdikss/skype-poll-fix
- Owner: ValdikSS
- Created: 2014-10-30T20:34:20.000Z (about 10 years ago)
- Default Branch: master
- Last Pushed: 2018-02-05T18:54:02.000Z (almost 7 years ago)
- Last Synced: 2023-11-07T19:26:17.439Z (about 1 year ago)
- Language: C
- Homepage:
- Size: 11.7 KB
- Stars: 136
- Watchers: 14
- Forks: 10
- Open Issues: 3
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
Skype poll fix
==============**This library is for old Skype <= 4.3. It will not work with modern Skype for Linux 8.**
This library is made to reduce Skype CPU consumption by increasing poll (on Linux) or kevent (on Mac OS) call timeouts. It lowers Skype idle CPU load from 4.4% down to 0.9% and improves battery life on my laptop, while making Skype only a bit slower.
How to use
----------
* Compile the source code with ```make``` .
* Run Skype with ```LD_PRELOAD=/path/to/skype-poll-fix.so skype``` on Linux or with ```DYLD_INSERT_LIBRARIES=/path/to/skype-poll-fix.dylib skype``` on Mac OS.
* On Linux you can edit ```/usr/share/applications/skype.desktop``` file to run Skype with ```skype-poll-fix.so``` automatically (example for Debian Jessie):
* Change ```Exec=``` string to ```Exec=env LD_PRELOAD=/path/to/skype-poll-fix.so skype %U``` .Configuration
-------------
You can configure SET_POLL and MIN_POLL environmental variables. SET_POLL is a poll() or kevent() timeout value which would be set if Skype tries to poll with timeout less than MIN_POLL. Both variables are default to 300 ms.##### Example
```LD_PRELOAD=/path/to/skype-poll-fix.so MIN_POLL=100 SET_POLL=250 skype```All poll() timeouts less than 100 ms would be set to 250 ms.
Based on [Valery Yundin](http://habrahabr.ru/users/Vayun/) idea.