Jackalope / jlib (public) (License: GPLv3 or later) (since 2019-11-18) (hash sha1)
jlib C++ template library
Used to replace std functionality without exception handling.
- data structures
- filesystem routines
- crossplatform threads interface (currently only pthreads implementation)
- thread pool
- crossplatform dynamic memory functions interface (allocate, reallocate, deallocate) with alignment support
- high percision timer routines based on timespec
List of commits:
Subject Hash Author Date (UTC)
typo 14b869ada95c37bcc75a549cdcedae1b0b2ba76d Your Name 2019-11-25 03:27:12
thread pool cleanup 0b783f47cd02fb118f299784b52209e259646b25 Your Name 2019-11-25 03:23:02
removed nodiscard for optional function 3ba7da3a20d2ef5e8bc70d1ff14b9db973bba0dd Your Name 2019-11-25 03:22:13
rarray allocation fix e192f65d453e4e858bc0c034b5b431591175886d Your Name 2019-11-25 03:20:49
new darray function 41ed65d9c71ba226572b451f487ac381bdcb382d Your Name 2019-11-25 03:20:26
threads wrapper and thread pool moved to jlib e902ab04f388b331f7b0201a01591c52c0fb44a5 Your Name 2019-11-25 02:11:05
sharray implementation 84f563f018049700a9aaa3d9b915cd8e60010d6a Your Name 2019-11-25 02:10:39
removed excess cmake variable 5391e7b7eb08e7aef83e7b3783c3eb405b701f99 Your Name 2019-11-25 02:09:41
max and min functions 9aee2d76ffc74c9ff5e9b10591b4b5a77de8a859 Your Name 2019-11-25 02:09:16
item_call uses call func instead of constructor, so refference or copy can be passed and added conditional removing in darray 4caca92c89f8945a937e9fe6d5c8634ffc6b0af1 Your Name 2019-11-25 02:08:08
sharray work in progress 440da36f73077f6b7eec359d0059d1b1df96b295 Your Name 2019-11-24 21:47:22
darray protected members renamed b4ade511fd87dcb002a787ccc1c38143b09a5d04 Your Name 2019-11-24 21:46:41
built_const function not work with inheritance, so overloaded again 3ea48400586ef4dca2fe218dd7b1187a5842e879 Your Name 2019-11-24 20:41:48
added missing nodiscard attributes 592e615e8dbca2d0a5595753e35f59bf100d164f Your Name 2019-11-24 20:41:13
io_agent_memory updated 80d60ca831656db3ce47ecb21afb9cea89afe373 Your Name 2019-11-24 20:40:42
item_call now uses function pointers instead of limited methods 5e5a56a57c9d7125688f059de7eaf826dcd6dac7 Your Name 2019-11-24 20:26:59
init_move for const version 97e9eea70283e63beb10a90518ff589e8e58d0d8 Your Name 2019-11-23 01:54:17
io_agent_fs for working stream using io_agent 4e1e455b70935abba6d8a5349c725c4ee903087e Your Name 2019-11-23 01:16:10
io_agent_mem more features 0885fdf18edf22e95acda127fc7be29dc5b11f37 Your Name 2019-11-23 01:13:46
string more features d3fd117f9f4b7629d62bb7759c3a4254646f05e5 Your Name 2019-11-23 01:13:10
Commit 14b869ada95c37bcc75a549cdcedae1b0b2ba76d - typo
Author: Your Name
Author date (UTC): 2019-11-25 03:27
Committer name: Your Name
Committer date (UTC): 2019-11-25 03:27
Parent(s): 0b783f47cd02fb118f299784b52209e259646b25
Signer:
Signing key:
Signing status: N
Tree: f517c2144b40c4455a0e270e1a11f57bfb2cbaa3
File Lines added Lines deleted
include/jlib/darray.h 1 1
File include/jlib/darray.h changed (mode: 100644) (index 63e89c1..dc292e3)
... ... namespace jl
351 351 return *end(); return *end();
352 352 } }
353 353
354 /// @biref Put last item to *p_dst, remove and return true, if array is not empty, overwise return false.
354 /// @brief Put last item to *p_dst, remove and return true, if array is not empty, overwise return false.
355 355 [[nodiscard]] bool remove_last_if_exist(T *p_dst) [[nodiscard]] bool remove_last_if_exist(T *p_dst)
356 356 { {
357 357 if (count() > 0) if (count() > 0)
Hints:
Before first commit, do not forget to setup your git environment:
git config --global user.name "your_name_here"
git config --global user.email "your@email_here"

Clone this repository using HTTP(S):
git clone https://rocketgit.com/user/Jackalope/jlib

Clone this repository using ssh (do not forget to upload a key first):
git clone ssh://rocketgit@ssh.rocketgit.com/user/Jackalope/jlib

Clone this repository using git:
git clone git://git.rocketgit.com/user/Jackalope/jlib

You are allowed to anonymously push to this repository.
This means that your pushed commits will automatically be transformed into a merge request:
... clone the repository ...
... make some changes and some commits ...
git push origin main