diff --git a/ChangeLog b/ChangeLog index 5b7adcb60e..f6c4ffd2df 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,3 +1,8 @@ +Tue Dec 1 07:50:33 2015 Eric Wong + + * missing/explicit_bzero.c: new file. define explicit_bzero. + Fixup r52806 + Thu Oct 22 12:54:43 2015 KOSAKI Motohiro * thread_pthread.c (register_ubf_list): renamed from @@ -88,7 +93,6 @@ Wed Oct 21 08:23:36 2015 KOSAKI Motohiro Sun Oct 18 17:26:53 2015 KOSAKI Motohiro - * missing/explicit_bzero.c: new file. define explicit_bzero. * common.mk: add a rule for explicit.o. * configure.in: detect explicit_bzero and memset_s. * include/ruby/missing.h: add explicit_bzero. diff --git a/missing/explicit_bzero.c b/missing/explicit_bzero.c new file mode 100644 index 0000000000..cb11bd6da1 --- /dev/null +++ b/missing/explicit_bzero.c @@ -0,0 +1,8 @@ +#include + +/* prevent the compiler from optimizing away memset or bzero */ +void +explicit_bzero(void *p, size_t n) +{ + memset(p, 0, n); +}