summaryrefslogtreecommitdiffhomepage
AgeCommit message (Collapse)Author
2023-03-08Added cco_done(ctx) to check if coroutine is complete (including cleanup stage).Tyge Løvset
2023-03-07Merge branch 'master' of github.com:tylov/STCTyge Løvset
2023-03-07Improved/simplified c_forfilter (): last optional parameter gone. Now ↵Tyge Løvset
c_flt_take() and c_flt_takewhile() breaks the loop always. c11/fmt.h : renamed fmt_freebuffer(buf) => fmt_destroy(buf).
2023-03-06Simplify macro calling coroutine from coroutine.Tyge Løvset
2023-03-01Reverted example moves.Tyge Løvset
2023-03-01Moved algorithm examples to algo folder.Tyge Løvset
2023-02-28Fixed stopping of sub-coroutines.Tyge Løvset
2023-02-28Fixed a state issue in coroutine.Tyge Løvset
2023-02-28Final cleanups on corotines.Tyge Løvset
2023-02-28Renamed cco_coroutine => overloaded cco_yield(coro, ctx, retval).Tyge Løvset
2023-02-28Fixed coroutine.h and examples. cco_return; has no arguments.Tyge Løvset
2023-02-27Added example Pythagorean triples. (Arthur O’Dwyer blog)Tyge Løvset
2023-02-27Enhanced c_with and c_scope macros. Improved coroutine.h and example.Tyge Løvset
2023-02-27Let cco_end(value) return value. Should be last in function anyway.Tyge Løvset
Assume context always non-NULL when calling cco_alive(context).
2023-02-27Minor issue fixed.Tyge Løvset
2023-02-27Simplified coroutine.h a bit and modified coroutines.cTyge Løvset
2023-02-26Addition to coroutine.h. Allow dynamic allocation of context.Tyge Løvset
2023-02-25Finish fixes in coroutine.h.Tyge Løvset
2023-02-25Some clever adjustment to coroutine state.Tyge Løvset
2023-02-25Improved coread.c example a lot.Tyge Løvset
2023-02-25Renamed algo/ccoro.h => algo/coroutine.h. Using cco_ as prefix. Changed ↵Tyge Løvset
ccoro_execute(c) => cco_begin(c); ... cco_end(); (was required).
2023-02-24Added cspan_find() - 2 liner.Tyge Løvset
2023-02-24Added eq function to cspan.Tyge Løvset
Final cleanup normalized var naming.
2023-02-24Update ccoro.h and added cosub.c example demoing a corotine calling another ↵Tyge Løvset
coroutine.
2023-02-24Added eq function to cdeq, clist, cmap, csmap, and fixed cmap eq.Tyge Løvset
2023-02-24Added eq function to cvec.Tyge Løvset
2023-02-24Allow to have both i_no_cmp and i_eq defined.Tyge Løvset
2023-02-24Replace by ccoro.hTyge Løvset
2023-02-23Replaced coroutine.h with ccoro.h. Stackbased only.Tyge Løvset
2023-02-23Fix minor regression in coroutine.h.Tyge Løvset
2023-02-23Renamed cco.h to coroutine.hTyge Løvset
2023-02-23Internal updates.Tyge Løvset
2023-02-22Renamed ccontext => cco_handleTyge Løvset
2023-02-22Added coroutines, based upon Simon Tatham's famous implementation. This ↵Tyge Løvset
version is much improved, but uses the same basic mechanisms.
2023-02-20Added c_eraseremove_if() for cvec, cdeq, cstack, cqueue in ccommon.h. Some ↵Tyge Løvset
cleanup.
2023-02-18Fixed carc, cbox: no need for no_lookup and no_eq: use only no_cmp, no_hash ↵Tyge Løvset
if needed.
2023-02-17Improved clist: 1) added clist_X_sort_with(self, cmp) - custom compare func. ↵Tyge Løvset
2) shortened mergesort function.
2023-02-16Reverted and removed maps put function. Renamed clist node api functions. ↵Tyge Løvset
Minor fix in template.h
2023-02-15Cleaned up in size-types. API always uses intptr_t as default for all ↵Tyge Løvset
containers.
2023-02-14Merge pull request #48 from tylov/dev411Tyge Løvset
Release V4.1.1
2023-02-14Added links in docsTyge Løvset
2023-02-13Improved docs.Tyge Løvset
2023-02-13Changed name of c_flt_inc() to c_flt_count().Tyge Løvset
2023-02-13Removed support for uppercase version of c_sv() (i.e c_SV => c_sv).Tyge Løvset
Renamed c_ARGSV => c_SV. Old name is still working.
2023-02-13Docs update and improvementsTyge Løvset
2023-02-12Fairly large update before release 4.1, cleaning up docs and some minor ↵Tyge Løvset
additions.
2023-02-12More docs: prepare for release.Tyge Løvset
2023-02-11Some more docs. Renamed (half-)internal template parameter i_size => ↵Tyge Løvset
i_ssize. Updated external cpp maps for benchmarks.
2023-02-11Merge branch 'master' of github.com:tylov/STCTyge Løvset
2023-02-11More docs improvements.Tyge Løvset