mirror of
https://gitlab.com/sortix/sortix.git
synced 2023-02-13 20:55:38 -05:00
Add explicit_bzero(3).
This commit is contained in:
parent
4ee15987fa
commit
95fcb94648
3 changed files with 36 additions and 0 deletions
|
@ -184,6 +184,7 @@ stdlib/strtoull.o \
|
||||||
stdlib/strtoul.o \
|
stdlib/strtoul.o \
|
||||||
stdlib/wcstombs.o \
|
stdlib/wcstombs.o \
|
||||||
stdlib/wctomb.o \
|
stdlib/wctomb.o \
|
||||||
|
string/explicit_bzero.o \
|
||||||
string/ffsll.o \
|
string/ffsll.o \
|
||||||
string/ffsl.o \
|
string/ffsl.o \
|
||||||
string/ffs.o \
|
string/ffs.o \
|
||||||
|
|
|
@ -124,6 +124,7 @@ size_t strxfrm_l(char* __restrict, const char* __restrict, size_t, locale_t);
|
||||||
|
|
||||||
/* Functions copied from elsewhere. */
|
/* Functions copied from elsewhere. */
|
||||||
#if __USE_SORTIX
|
#if __USE_SORTIX
|
||||||
|
void explicit_bzero(void*, size_t);
|
||||||
int ffsl(long int);
|
int ffsl(long int);
|
||||||
void* memrchr(const void*, int, size_t);
|
void* memrchr(const void*, int, size_t);
|
||||||
/* TODO: strcasecmp_l */
|
/* TODO: strcasecmp_l */
|
||||||
|
|
34
libc/string/explicit_bzero.cpp
Normal file
34
libc/string/explicit_bzero.cpp
Normal file
|
@ -0,0 +1,34 @@
|
||||||
|
/*******************************************************************************
|
||||||
|
|
||||||
|
Copyright(C) Jonas 'Sortie' Termansen 2011, 2012, 2014.
|
||||||
|
|
||||||
|
This file is part of the Sortix C Library.
|
||||||
|
|
||||||
|
The Sortix C Library is free software: you can redistribute it and/or modify
|
||||||
|
it under the terms of the GNU Lesser General Public License as published by
|
||||||
|
the Free Software Foundation, either version 3 of the License, or (at your
|
||||||
|
option) any later version.
|
||||||
|
|
||||||
|
The Sortix C Library is distributed in the hope that it will be useful, but
|
||||||
|
WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY
|
||||||
|
or FITNESS FOR A PARTICULAR PURPOSE. See the GNU Lesser General Public
|
||||||
|
License for more details.
|
||||||
|
|
||||||
|
You should have received a copy of the GNU Lesser General Public License
|
||||||
|
along with the Sortix C Library. If not, see <http://www.gnu.org/licenses/>.
|
||||||
|
|
||||||
|
string/explicit_bzero.cpp
|
||||||
|
Initializes a region of memory to a byte value in a manner that is not
|
||||||
|
optimized away by the compiler.
|
||||||
|
|
||||||
|
*******************************************************************************/
|
||||||
|
|
||||||
|
#include <string.h>
|
||||||
|
|
||||||
|
// TODO: Employ special compiler support to ensure this is not optimized away.
|
||||||
|
extern "C" void explicit_bzero(void* dest_ptr, size_t size)
|
||||||
|
{
|
||||||
|
volatile unsigned char* dest = (volatile unsigned char*) dest_ptr;
|
||||||
|
for ( size_t i = 0; i < size; i++ )
|
||||||
|
dest[i] = 0;
|
||||||
|
}
|
Loading…
Add table
Reference in a new issue