Age | Commit message (Collapse) | Author | |
---|---|---|---|
2018-09-21 | MusicBuffer: remove `noexcept` from constructor | Max Kellermann | |
The `SliceBuffer` constructor can throw. | |||
2018-06-23 | MusicBuffer: fix potential deadlock while cross-fading in Return() | Max Kellermann | |
2018-06-22 | MusicChunkPtr: managed MusicChunk pointer | Max Kellermann | |
Make all uses of MusicChunk safe. | |||
2017-05-08 | *: add "noexcept" to many, many function prototypes | Max Kellermann | |
This eliminates some overhead, because the compiler doesn't need to consider these functions throwing. | |||
2017-01-03 | update copyright year | Max Kellermann | |
2017-01-03 | thread/Mutex: remove ScopeLock, use std::lock_guard directly | Max Kellermann | |
2016-06-17 | util/HugeAllocator: throw std::bad_alloc on error | Max Kellermann | |
2016-02-26 | update copyright year to 2016 | Max Kellermann | |
2015-01-01 | Copyright year 2015 | Max Kellermann | |
2014-08-12 | MusicChunk: rename struct to MusicChunk | Max Kellermann | |
2014-01-13 | copyright year 2014 | Max Kellermann | |
2013-09-26 | MusicBuffer: expose the C++ API | Max Kellermann | |
2013-08-07 | Makefile.am: move sources to libsystem.a | Max Kellermann | |
2013-08-07 | FatalError: new library to replace mpd_error.h | Max Kellermann | |
2013-01-04 | Mutex: new wrapper for std::mutex, replaces GMutex | Max Kellermann | |
2013-01-04 | MusicBuffer: return memory to kernel when stopping playback | Max Kellermann | |
Use the new HugeAllocator as backend for SliceBuffer and call HugeDiscard() when the last chunk was returned. | |||
2013-01-04 | MusicBuffer: move code to template class SliceBuffer | Max Kellermann | |
2013-01-04 | MusicBuffer: allocate with new/delete | Max Kellermann | |
2013-01-04 | MusicBuffer: disable memory poisoning | Max Kellermann | |
This is harmful for memory usage, because it forces the kernel to allocate physical memory, even before playback has started. No bug has been found in a few years with this, so it's safe to assume that this code is not necessary. | |||
2013-01-04 | buffer, pipe: convert to C++ | Max Kellermann | |