More package lines.

This commit is contained in:
Jeroen van Rijn
2025-10-09 20:11:06 +02:00
parent c4c2431997
commit 8a35acd506
12 changed files with 31 additions and 22 deletions
+1 -2
View File
@@ -1,6 +1,5 @@
/*
The `mem` package implements various allocators and provides utility procedures
for dealing with memory, pointers and slices.
package mem implements various allocators and provides helpers for dealing with memory, pointers and slices.
The documentation below describes basic concepts, applicable to the `mem`
package.
+3 -3
View File
@@ -1,3 +1,6 @@
// package tlsf implements a Two Level Segregated Fit memory allocator.
package mem_tlsf
/*
Copyright 2024 Jeroen van Rijn <nom@duclavier.com>.
Made available under Odin's BSD-3 license.
@@ -7,9 +10,6 @@
Jeroen van Rijn: Source port
*/
// package mem_tlsf implements a Two Level Segregated Fit memory allocator.
package mem_tlsf
import "base:intrinsics"
import "base:runtime"
+1 -1
View File
@@ -1,5 +1,5 @@
/*
package mem/virtual implements a platform agnostic way to reserve/commit/decommit virtual memory
package virtual implements a platform agnostic way to reserve/commit/decommit virtual memory.
virtual.Arena usage