Showing 47 open source projects for "c malloc"

View related business solutions
  • Our Free Plans just got better! | Auth0 by Okta Icon
    Our Free Plans just got better! | Auth0 by Okta

    With up to 25k MAUs and unlimited Okta connections, our Free Plan lets you focus on what you do best—building great apps.

    You asked, we delivered! Auth0 is excited to expand our Free and Paid plans to include more options so you can focus on building, deploying, and scaling applications without having to worry about your secuirty. Auth0 now, thank yourself later.
    Try free now
  • The #1 Embedded Analytics Solution for SaaS Teams. Icon
    The #1 Embedded Analytics Solution for SaaS Teams.

    Qrvey saves engineering teams time and money with a turnkey multi-tenant solution connecting your data warehouse to your SaaS application.

    Qrvey’s comprehensive embedded analytics software enables you to design more customizable analytics experiences for your end users.
    Try Developer Playground
  • 1

    GPerftools

    Fast, multi-threaded malloc() and nifty performance analysis tools

    GPerftools (formerly Google Performance Tools) is a collection of a high-performance multi-threaded malloc() implementation, plus some pretty nifty performance analysis tools useful for creating more robust applications. These tools can be especially useful when developing multi-threaded applications in C++ with templates. Among these tools are TCMalloc, a thread-friendly heap-checker, heap-profiler and cpu-profiler.
    Downloads: 7 This Week
    Last Update:
    See Project
  • 2
    Boehm-Demers-Weiser Garbage Collector

    Boehm-Demers-Weiser Garbage Collector

    The Boehm-Demers-Weiser conservative C/C++ Garbage Collector

    The Boehm-Demers-Weiser conservative garbage collector can be used as a garbage collecting replacement for C malloc or C++ new. It allows you to allocate memory basically as you normally would, without explicitly deallocating memory that is no longer useful. The collector automatically recycles memory when it determines that it can no longer be otherwise accessed. The collector is also used by a number of programming language implementations that either use C as intermediate code, want...
    Downloads: 0 This Week
    Last Update:
    See Project
  • 3
    jemalloc

    jemalloc

    A general purpose malloc(3) implementation

    jemalloc is a general purpose malloc(3) implementation that emphasizes fragmentation avoidance and scalable concurrency support. jemalloc first came into use as the FreeBSD libc allocator in 2005, and since then it has found its way into numerous applications that rely on its predictable behavior. In 2010 jemalloc development efforts broadened to include developer support features such as heap profiling and extensive monitoring/tuning hooks. Modern jemalloc releases continue to be integrated...
    Downloads: 11 This Week
    Last Update:
    See Project
  • 4

    ECSTL

    Embedded C Standard Template Library

    The Embedded C Standard Template Library (ECSTL) is a software library for the C programming language. It is a clone of the C++ STL which targets to embedded systems without using the heap (malloc/free functions).
    Downloads: 0 This Week
    Last Update:
    See Project
  • Bright Data - All in One Platform for Proxies and Web Scraping Icon
    Bright Data - All in One Platform for Proxies and Web Scraping

    Say goodbye to blocks, restrictions, and CAPTCHAs

    Bright Data offers the highest quality proxies with automated session management, IP rotation, and advanced web unlocking technology. Enjoy reliable, fast performance with easy integration, a user-friendly dashboard, and enterprise-grade scaling. Powered by ethically-sourced residential IPs for seamless web scraping.
    Get Started
  • 5

    libfc4c

    Fast containers for C language

    C dynamic containers are missing in the standard, so almost every single project in C uses different implementations. This library is yet another implementation of few basic containers, optimized for speed. A simplified interface to libarchive allows to save the containers in a compressed form. All the containers are 32bit. This greatly improves the performance (up to ~32%) and reduces the memory consumption (up to 41%) on 64bit systems. All the containers are pre-allocating buffers...
    Downloads: 0 This Week
    Last Update:
    See Project
  • 6

    Lnkdlst

    Single sided linked list (kind of lib with test-code, C, C++ and java)

    ... and chronological order. Use malloc{slower-but-easy} or fix (static) memory. - OAList01: Object-Kind of a predefined pre-reserved List with X Elements (with constant user-data size), with secur modify functions and option to use locks (POSIX: mutex). Supporting a BusyList and a IdleList for easy build of e.g. a FIFO without need of much time for mem-allocation. - Release-Notes see uws-Lnkdlst-readme.txt in the tar.gz file(s) and in „Files“.
    Downloads: 0 This Week
    Last Update:
    See Project
  • 7
    LMDBG is a set of small utilities for collecting and analysing logs of malloc(3), calloc(3), realloc(3), memalign(3), posix_memalign(3) and free(3) functions. LMDBG generates full stacktraces and separates the logging process from analysis, thus allowing analysis of application on per-module basis. Simple but powerful tools for analysis are also provided.
    Downloads: 2 This Week
    Last Update:
    See Project
  • 8
    WebSockets in C

    WebSockets in C

    WebSockets in C for Embedded Applications

    WIC is a C99 implementation of rfc6455 websockets designed for embedded applications. WIC decouples the websocket protocol from the transport layer. This makes it possible to use WIC over any transport layer assuming that you are prepared to do the integration work.
    Downloads: 1 This Week
    Last Update:
    See Project
  • 9

    molcajete

    Arduino meets FreeRTOS

    ... for the ATMEGA328 chip so that it can be used in the Arduino platform. It's comprissed of three projects: Arduino 1.8.5, FreeRTOS 10.0.1 and Arduino-mk. Examples for the console and sketches are now provided. This port uses the standard malloc and free implementations for AVR when using dynamic tasks. The system tick is fixed at 1 millisecond after the AVR's T0 timer. Tickless and/or low-power modes have not been tested yet. For further details see the README.txt file.
    Downloads: 0 This Week
    Last Update:
    See Project
  • Free CRM Software With Something for Everyone Icon
    Free CRM Software With Something for Everyone

    216,000+ customers in over 135 countries grow their businesses with HubSpot

    Think CRM software is just about contact management? Think again. HubSpot CRM has free tools for everyone on your team, and it’s 100% free. Here’s how our free CRM solution makes your job easier.
    Get free CRM
  • 10

    zmalloc

    Simple malloc checking in 'C'

    A very simple malloc checking library. Can be used as a source include as well. The biggest advantage of this library is non intrusiveness. It does not rely on any platform specific features, should work everywhere. How to use: use zalloc() and zfree() instead of the malloc and free calls. (Could be done by defines) Zmalloc will detect overwrites, freeing non freed items, not freeing items allocated. See the test_zmalloc on how to use it.
    Downloads: 0 This Week
    Last Update:
    See Project
  • 11

    Memory Manager: MDX

    Memory Manager: MDX = malloc() + free() + Garbage Collection

    MDX is a thread safe memory manager similar to the standard C library's malioc() and free(), except that it allows for some (or all) of the memory to be automatically freed by mark and sweep garbage collection with finalization. It's written in C++ under the Apache license for Windows and Linux on 32 & 64 bit systems. Programs using MDX provide it with a marking callback. The callback performs the marking phase of garbage collection, using MDX's mark() method to actually mark the wanted...
    Downloads: 0 This Week
    Last Update:
    See Project
  • 12

    meta-treedb

    on-disk memory library using meta-data

    meta-treedb can implement malloc functionality, and much more! Need a heap that allocates from a fixed size chunk of memory? No problem. But where treedb comes into its own is when it comes to allocating from a mmap()ed disk file - the memory becomes persistent. If you follow the tests/examples, you too can store dictionaries, trees, lists or whatever you can think of in disk-based memory, just an open() and mmap() away. Meta-treedb comes with an AVL tree, doubly-linked-list...
    Downloads: 0 This Week
    Last Update:
    See Project
  • 13
    debug_new

    debug_new

    C / C++ everything-memory debugger

    Warning: Older projects may have to be compiled with -DDEBUG_NEW_CONFIG_HAVE_DEPRECATED Debug_New offers the possibility of debugging memoryleaks, not only (note the "not only"; that's just one of its functions) in a <report-memory-leaks-on-shutdown> kind of way, but implemented using memory-states. - Cross platform + Cross compiler support (only utilizes the preprocessor and template-voodoo-magic for c++) - Supports C and C++ - Supports gcc and g++ - Supports pthread and any posix...
    Downloads: 1 This Week
    Last Update:
    See Project
  • 14

    libshmal

    Primitive shared memory allocator that allows several independent proc

    Primitive shared memory allocator that allows several independent processes to share same shared memory segments. It provides shared memory analogs to regular memry library calls like malloc(), free(), etc. Currently may work with mmap() or shmget().
    Downloads: 0 This Week
    Last Update:
    See Project
  • 15

    DigCC

    A simple, easy-to-retarget, C compiler

    DigCC is a simple, easy-to-retarget, C compiler. DigCC handles the main features of the C language, including: - complex data types (arrays, structs, and composition thereof) - dynamic structures (lists, trees, graphs, etc) The current version of DigCC targets the DigMIPS processor, and provides a runtime library with I/O and simplified heap handling (malloc/free).
    Downloads: 0 This Week
    Last Update:
    See Project
  • 16

    MemoryTracker

    C library, that logs memory changes made by malloc and free.

    This is a library that can be used for debugging memory consumption made by your program. Is written for Unix-like operating systems. It is advised to use GNU Compiler Collection when compiling.
    Downloads: 0 This Week
    Last Update:
    See Project
  • 17
    sharing user-space memory. Includes a driver and an API as a set of functions. An application can allocate memory via malloc and share it with other independent applications via a device-driver. Functions to handle this in an easy way are provided.
    Downloads: 0 This Week
    Last Update:
    See Project
  • 18
    An EXTREMELY FAST portable thread caching malloc implementation written in C for multiple threads without lock contention based on dlmalloc. Optimised for x86 and x64. Compatible with C++. Can patch itself into existing binaries on Windows.
    Downloads: 0 This Week
    Last Update:
    See Project
  • 19

    Concur memory allocator

    An extremely scalable multithreaded drop-in malloc() replacement

    Concur is an extremely scalable multithreaded transparent drop-in replacement for malloc() and other standard memory allocation calls. Scales linearly to any number of CPU cores. More scalable and memory efficient than mtmalloc, ptmalloc, Hoard, etc. Allocations are very fast, with no lock contention and the least memory waste of any other allocator. Concur is optimized especially for applications that make heavy use of memory allocation in a threaded environment, or that just want to make...
    Downloads: 0 This Week
    Last Update:
    See Project
  • 20

    The SNOMP Library

    SNOMP (SNOMP is Not OpenMP) is a library for semi-shared memory parall

    SNOMP (SNOMP is Not OpenMP) is a library for semi-shared memory parallelization.
    Downloads: 0 This Week
    Last Update:
    See Project
  • 21
    embedded heap library

    embedded heap library

    heap library management for embedded systems

    This library implements a simple, lite and easy to use heap management library for embedded systems. Library includes APIs to reserve memory (malloc) and to free memory with a builtin garbage collector to defragment close area of memory freed
    Downloads: 0 This Week
    Last Update:
    See Project
  • 22
    dbglib is a library dedicated for program debugging. It includes: a buddy malloc memory manager A memory debugging system (memory leaks, out of bound ...) A memory statistics recorder a crash reporting system
    Downloads: 0 This Week
    Last Update:
    See Project
  • 23
    An O(1) memory allocator, which may be used to replace malloc. It's very small and very fast.
    Downloads: 0 This Week
    Last Update:
    See Project
  • 24
    Garbage Collector Code in C Language ( for Windows only) by "Akshit Singhal, Deepak Kumar" This is a library for C which can be used as a replacement for standard malloc() by ANSI C Library.Algorithm Used-MarkAndSweep,Design Approach-Stop the World
    Downloads: 0 This Week
    Last Update:
    See Project
  • 25
    This was my first attempt at a persistent (disk-based) allocator, but I aimed too high, used too many obscure C++ features and it got away from me. You will need the version of v3c mentioned in configure.ac.in to build it. Like I said, it contains lots of really obscure C++, if you're curious. This project isn't being actively maintained anymore - see it's way-cooler C/C++ replacement here at SourceForge - treedb.
    Downloads: 0 This Week
    Last Update:
    See Project
  • Previous
  • You're on page 1
  • 2
  • Next