Handle IRQs inside the kernel
All checks were successful
Build documentation / build-and-deploy (push) Successful in 2m42s

This commit is contained in:
2026-03-13 20:33:27 +01:00
parent 4760818118
commit 217179c9a0
84 changed files with 14517 additions and 1297 deletions

View File

@@ -223,7 +223,7 @@ void LZ4_free(void* p);
# define FREEMEM(p) LZ4_free(p)
#else
//@@ # include <stdlib.h> /* malloc, calloc, free */
#include <mm/liballoc.h>
#include <mm/malloc.h>
# define ALLOC(s) malloc(s)
# define ALLOC_AND_ZERO(s) calloc(1,s)
# define FREEMEM(p) free(p)

View File

@@ -94,7 +94,7 @@
#ifndef LZ4_SRC_INCLUDED /* avoid redefinition when sources are coalesced */
//@@ # include <stdlib.h> /* malloc, calloc, free */
#include <mm/liballoc.h>
#include <mm/malloc.h>
# define ALLOC(s) malloc(s)
# define ALLOC_AND_ZERO(s) calloc(1,(s))
# define FREEMEM(p) free(p)

View File

@@ -103,7 +103,7 @@
/*! Modify the local functions below should you wish to use some other memory routines
* for malloc(), free() */
//@@ #include <stdlib.h>
#include <mm/liballoc.h>
#include <mm/malloc.h>
static void* XXH_malloc (size_t s) { return malloc (s); }
static void XXH_free (void* p) { free (p); }
/*! and for memcpy() */