libcosmos
Linux C++ System Programming Library
Loading...
Searching...
No Matches
memory.hxx File Reference
#include <cstring>
#include <type_traits>

Go to the source code of this file.

Functions

template<typename T >
void cosmos::zero_object (T &obj)
 Completely overwrites the given object with zeroes.
 

Detailed Description

Helper functions for dealing with raw memory.

Definition in file memory.hxx.

Function Documentation

◆ zero_object()

template<typename T >
void cosmos::zero_object ( T & obj)

Completely overwrites the given object with zeroes.

This is typically used in C-APIs to get a defined object state.

This is not an optimization-safe function to remove sensitive data from memory.

Definition at line 23 of file memory.hxx.

23 {
24 // this should only be done for non-C++ types
25 static_assert(std::is_trivial<T>::value == true);
26 std::memset(&obj, 0, sizeof(T));
27}