|
You are here |
3zanders.co.uk | ||
| | | | |
sergioprado.blog
|
|
| | | | | AddressSanitizer (ASan) is an instrumentation tool created by Google security researchers to identify memory access problems in C and C++ programs. | |
| | | | |
roundofthree.github.io
|
|
| | | | | Note: this is an incomplete updating post. Introduction snmalloc is a memory allocator by Microsoft Research that uses a "message passing" scheme. You can find its source code here. It is designed to be performant in highly parallel workloads where memory allocated in one thread is typically deallocated in another thread. A nice catch is that snmalloc is highly customizable, and more to my interest, security mitigations can be customized. It also provides abstraction layers for different architectures (AAL) and platforms (PAL). | |
| | | | |
austinmorlan.com
|
|
| | | | | While programming you often need some memory to do something but you dont know at compile-time how much you need. Instead you have to use malloc from C or new from C++ (or more commonly std::vector) to request a certain amount of memory to be allocated for you on the heap. Thats just how it works. You might not question this sort of pattern while doing normal programming but once you start getting into game development youll quickly learn these sorts of dynamic memory allocations that occur at runtime ca... | |
| | | | |
www.tjmaher.com
|
|
| | | T.J. Maher, a QA Engineer since 1996, blogs about his transition from a manual tester to an automation developer to a software engineer in test. | ||