summaryrefslogtreecommitdiffstats
path: root/include/jau
Commit message (Expand)AuthorAgeFilesLines
* jau::latch: Using condition_variable requires us to hold same mutex lock on m...Sven Gothel2021-12-051-4/+3
* ordered_atomic: Add to_string(const ordered_atomic<>&), allowing to skip manu...Sven Gothel2021-11-171-0/+6
* latch: Extend with wait_for() and arrive_and_wait_for(), i.e. add variants wi...Sven Gothel2021-11-161-2/+116
* latch: Fix and add unit testSven Gothel2021-11-161-6/+10
* latch: Move into namespace jauSven Gothel2021-11-161-66/+70
* Add jau::latch implementation for C++17, inspired by std::latch C++20Sven Gothel2021-11-161-0/+112
* ringbuffer: Remove locking mutex before notify_all, leading to pessimistic re...Sven Gothel2021-11-161-6/+12
* helper_jni: Add checkAndGetObject(..)Sven Gothel2021-11-151-0/+13
* Fix Doxygen <tt> on '#### `something`', remove the code-qualifierSven Gothel2021-11-033-7/+8
* ringbuffer: Refine API docv0.7.1Sven Gothel2021-11-031-7/+10
* ringbuffer: Add notion of operating threading mode for more efficancyv0.7.0Sven Gothel2021-11-021-232/+470
* ringbuffer::moveIntoImpl(): Apply same 'integral, memcpy' path as for copyInt...Sven Gothel2021-11-021-1/+9
* darray/ringbuffer::get_info(): Add type infoSven Gothel2021-10-312-2/+6
* ringbuffer API change: Drop whole `NullValue` *angle*, simplifying; Drop `use...Sven Gothel2021-10-311-221/+158
* darray: Use proper 'void*' cast to lose const'ness, drop non-required 'void*'...Sven Gothel2021-10-311-8/+10
* darray: Enhance use_memmove API docSven Gothel2021-10-311-10/+18
* TOctets: Add convenient memmove*, memset* and bzero* methods; Ensure all memo...Sven Gothel2021-10-281-6/+34
* Add darray and cow_darray construction with initializer list using move-seman...Sven Gothel2021-10-242-1/+225
* Fix cow_darray::push_back( InputIt first, InputIt last ): On storage growth p...Sven Gothel2021-10-241-1/+1
* darray: Split JAU_DEBUG print for low- and high-level, PRINTF0 for low-memory...Sven Gothel2021-10-241-13/+19
* ringbuffer: Fix string usage in constexpr func (alloc -> abort case)Sven Gothel2021-10-241-4/+2
* cow_darray, darray: Use unique debug PRINTF macro namesSven Gothel2021-10-232-77/+78
* use_secmem darray, ringbuffer: Remove redundant bzero on [re]allocation and f...Sven Gothel2021-10-232-18/+0
* octets.hpp: Use unique TRACE macro nameSven Gothel2021-10-231-20/+20
* Apply same Non-Type Template Parameter of darray; Drop new[] C++ array storag...Sven Gothel2021-10-231-98/+154
* darray<> Non-Type Template Parameter: Remove use_realloc (fully deducted), se...Sven Gothel2021-10-234-49/+145
* callocator: Cover more std typedef's, standard, C++17 and deprecated C++17Sven Gothel2021-10-231-3/+14
* darray + ringbuffer: Use explicit 'constexpr if': if constexpr ( .. )Sven Gothel2021-10-223-27/+28
* endian conversion [le|be|cpu]_to_[le|be|cpu]() and bit_cast(): Use explicit '...Sven Gothel2021-10-222-51/+51
* POctet: Add explicit copy-ctor with given capacity; Add TROOctets default ctorSven Gothel2021-10-211-0/+26
* POctet copy-ctor API doc: Mention source.size() -> capacity of new instanceSven Gothel2021-10-211-6/+10
* octets: Fix TRACE_PRINT fmt usageSven Gothel2021-10-211-1/+1
* POctets API doc: Mention using native byte orderSven Gothel2021-10-211-7/+7
* EUI48[Sub] C++/Java: Better API doc re byte order, mention using native byte ...Sven Gothel2021-10-211-10/+6
* EUI48Sub: Add required endian conversion for byte stream ctor (C++ and Java)v0.5.0Sven Gothel2021-10-052-19/+18
* EUI48[Sub]: Add endian awareness, also fixes indexOf() semantics (C++ and Java)Sven Gothel2021-10-052-15/+115
* ringbuffer: Use std names for sizes: getSize() -> size(); getFreeSlots() -> f...Sven Gothel2021-10-051-32/+32
* jau:*Octets: Adding elaborated API doc; Use std names for sizes: getSize() ->...Sven Gothel2021-10-051-117/+248
* Have OutOfMemoryError being derived from std::bad_alloc (not std::exception);...Sven Gothel2021-10-042-11/+35
* Fix: be_to_cpu(uint16_t const n)Sven Gothel2021-10-041-1/+1
* jau:*Octets: Expose endian awareness, pass either endian::little or endian::b...Sven Gothel2021-10-031-65/+137
* jau::darray: Support immutable type, i.e. 'const Type'Sven Gothel2021-10-032-17/+26
* uuid_t: Add uuid_t::equivalent(..) method fo relaxed comparison on different ...Sven Gothel2021-10-021-6/+67
* Add uuid_t::getTypeSizeString()Sven Gothel2021-10-021-0/+6
* Fix jau::get_backtrace(..): max_frames>0 was _never_ leading to to collect an...v0.4.5Sven Gothel2021-09-231-3/+3
* cpp_pragma.hpp: Add PRAGMA_DISABLE_WARNING_NULL_DEREFERENCE and PRAGMA_DISABL...v0.4.4Sven Gothel2021-09-191-0/+6
* Moved EUI48, EUI48Sub (C++/Java) and uuid_t, *Octets (C++) from Direct-BT for...Sven Gothel2021-09-183-0/+1211
* Java JNI: Exceptions: Use jau::RuntimeException derivatives for all exception...v0.4.2Sven Gothel2021-08-031-9/+9
* ordered_atomic: Complete sc_atomic_* and relaxed_atomic_* for int8_t int16_t,...Sven Gothel2021-06-221-0/+36
* ringbuffer::get() and ::getBlocking(): Pass size of dest buffer and minimum c...v0.4.0Sven Gothel2021-06-191-20/+27