| age |
author |
description |
| 2007-04-11 |
William Pitcock |
Add a README file. |
| 2007-04-11 |
William Pitcock |
Add --enable-examples to enable building and installation of example programs. |
| 2007-04-11 |
William Pitcock |
Fix makefile. |
| 2007-04-11 |
William Pitcock |
Add an appropriate license header here. |
| 2007-04-11 |
William Pitcock |
Add Makefile for examples. |
| 2007-04-11 |
William Pitcock |
Add example test of the random number generation class. |
| 2007-04-11 |
William Pitcock |
Bump version to 0.1.4. |
| 2007-04-11 |
William Pitcock |
Random number generation class based on MT19937, additional casting for Sun Studio (incomplete). |
| 2007-03-26 |
William Pitcock |
Remove pregenerated file mowgli_config.h. |
| 2007-03-21 |
William Pitcock |
Rework the class a little. |
| 2007-03-21 |
William Pitcock |
Add mowgli_error_context_display_with_error(), which displays a backtrace, error, and then terminates cleanly. |
| 2007-03-21 |
William Pitcock |
Use a newline instead of nothing. |
| 2007-03-21 |
William Pitcock |
Only display the delimiter if we have not reached the end. |
| 2007-03-21 |
William Pitcock |
Allow printf-style formatting in ebt messages. |
| 2007-03-21 |
William Pitcock |
Clean up mowgli_throw_exception_fatal(). Remove some cruft from mowgli_ebt. |
| 2007-03-21 |
William Pitcock |
Add a simple error backtrace class. |
| 2007-03-21 |
William Pitcock |
Enable exception support. |
| 2007-03-21 |
William Pitcock |
Add exception support. try/catch not yet implemented. |
| 2007-03-21 |
William Pitcock |
Add documentation on what boost libraries have an equivilant implementation. |
| 2007-03-21 |
William Pitcock |
Version bump. |
| 2007-03-21 |
William Pitcock |
Remove regex.h for now. |
| 2007-03-21 |
William Pitcock |
Due to an error, the header for blocks in a managed heap were misallocated. This is only visible on little-endian 64-bit (AMD64 by default). |
| 2007-03-21 |
William Pitcock |
Warning fixes. |
| 2007-03-21 |
William Pitcock |
Add documentation concerning the GIT repository. |
| 2007-03-21 |
William Pitcock |
Fix PACKAGE="libmcs". Other issues already fixed. |
| 2007-03-21 |
William Pitcock |
Add mowgli_queue_shift(). |
| 2007-03-21 |
William Pitcock |
Keep some spare blocks around. Never allow the amount of available blocks to drop to 0. This saves costly reallocation time. |
| 2007-03-21 |
William Pitcock |
Really fix "(mowgli_heap.c:175) [mowgli_heap_alloc]: mowgli_heap_alloc() failed to allocate; heap free element count (1024) wrong". |
| 2007-03-21 |
William Pitcock |
Fix "(mowgli_heap.c:175) [mowgli_heap_alloc]: mowgli_heap_alloc() failed to allocate; heap free element count (1024) wrong". |
| 2007-03-21 |
William Pitcock |
Remove GNU C ifdefs from here, as it's not needed. |
| 2007-03-21 |
William Pitcock |
Clean up mowgli_assert warnings. |
| 2007-03-21 |
William Pitcock |
Add a reference to the heap associated with the memory block for mowgli_heap_shrink(). |
| 2007-03-21 |
William Pitcock |
Use mmap to manage memory for managed heaps if available. Fix a missing variable in mowgli_queue_length(). |
| 2007-03-21 |
William Pitcock |
Add some more checks to configure. |
| 2007-03-21 |
William Pitcock |
Add mowgli_queue_length(). Make sure iterators are properly initialized. |
| 2007-03-21 |
William Pitcock |
Add mowgli_queue_rewind(). |
| 2007-03-21 |
William Pitcock |
Bump library version to 0.1.2. |
| 2007-03-21 |
William Pitcock |
Rename mowgli_queue_append() to mowgli_queue_push(). Add mowgli_queue_pop_head(), mowgli_queue_pop_tail(). |
| 2007-03-21 |
William Pitcock |
Add mowgli_queue_skip(), mowgli_queue_head(), mowgli_queue_tail(). |
| 2007-03-21 |
William Pitcock |
Use a managed heap for queue nodes instead of direct calls to mowgli_alloc(). |
| 2007-03-21 |
William Pitcock |
Pre-allocate more list nodes (256 -> 1024 per block), pre-allocate less dynamic lists (256->64). |
| 2007-03-21 |
William Pitcock |
Cleanup mowgli_node_move(). |
| 2007-03-21 |
William Pitcock |
Add mowgli_node_nth_data(). |
| 2007-03-21 |
William Pitcock |
Add many new list functions. |
| 2007-03-20 |
William Pitcock |
Undefine TRUE/FALSE if they are defined. |
| 2007-03-20 |
William Pitcock |
Warning fixes. |
| 2007-03-20 |
William Pitcock |
Fix some paths in the CFLAGS. |
| 2007-03-20 |
William Pitcock |
Add mowgli_signal.h to main header. |
| 2007-03-20 |
William Pitcock |
Signals. |
| 2007-03-20 |
William Pitcock |
Remove references to g_return_if_fail(). |
| 2007-03-20 |
William Pitcock |
Logging API. |
| 2007-03-20 |
William Pitcock |
Hooks. |
| 2007-03-20 |
William Pitcock |
Some adjustments. |
| 2007-03-20 |
William Pitcock |
Add mowgli_bitvector_compare(). |
| 2007-03-20 |
William Pitcock |
Remove autogenerated files. |
| 2007-03-20 |
William Pitcock |
Return the actual reference instead of a junk pointer. |
| 2007-03-20 |
William Pitcock |
Bitvectors. |
| 2007-03-20 |
William Pitcock |
Add mowgli_init.h to mowgli.h. |
| 2007-03-20 |
William Pitcock |
Add mowgli_init(). |
| 2007-03-20 |
William Pitcock |
Heap allocation. |