PR#5636: issue with pthread_atfork in glibc
git-svn-id: http://caml.inria.fr/svn/ocaml/trunk@12586 f963ae5c-01c2-4b8c-9fe0-0dff7051ff02master
parent
6d391dca01
commit
81ca9d7223
3
Changes
3
Changes
|
@ -55,7 +55,7 @@ Standard library:
|
|||
. Fixed behavior of generic hash function w.r.t. -0.0 and NaN (PR#5222)
|
||||
. Added optional "random" parameter to Hashtbl.create to randomize
|
||||
collision patterns and improve security (PR#5572, CVE-2012-0839)
|
||||
. Added "randomize" function and "R" parameter to OCAMLRUNPARAMS
|
||||
. Added "randomize" function and "R" parameter to OCAMLRUNPARAM
|
||||
to turn randomization on by default (PR#5572, CVE-2012-0839)
|
||||
. Added new functorial interface "MakeSeeded" to support randomization
|
||||
with user-provided seeded hash functions.
|
||||
|
@ -177,6 +177,7 @@ Feature wishes:
|
|||
- PR#5555: Add function Hashtbl.reset to resize the bucket table to
|
||||
its initial size.
|
||||
- PR#5599: Add warn() tag in ocamlbuild to control -w compiler switch
|
||||
- PR#5636: in system threads library, issue with linking of pthread_atfork
|
||||
- ocamldebug: ability to inspect values that contain code pointers
|
||||
- ocamldebug: new 'environment' directive to set environment variables
|
||||
for debugee
|
||||
|
|
|
@ -30,7 +30,7 @@ all: libthreads.a threads.cma
|
|||
allopt: libthreadsnat.a threads.cmxa
|
||||
|
||||
libthreads.a: $(BYTECODE_C_OBJS)
|
||||
$(MKLIB) -o threads $(BYTECODE_C_OBJS)
|
||||
$(MKLIB) -o threads $(BYTECODE_C_OBJS) -lpthread
|
||||
|
||||
st_stubs_b.o: st_stubs.c st_posix.h
|
||||
$(BYTECC) -O -I../../byterun $(BYTECCCOMPOPTS) $(SHAREDCCCOMPOPTS) \
|
||||
|
|
Loading…
Reference in New Issue