2008-02-06 15:06:50 -08:00
|
|
|
# The Microsoft C Runtime source code to which this document refers is available
|
|
|
|
# directly from Microsoft Corporation, under a separate license.
|
|
|
|
# Please ensure that if you are using that source code, you have appropriate
|
|
|
|
# rights to use it. By providing you access to this file, Mozilla Corporation
|
|
|
|
# and its affiliates do not purport to grant any rights in that source code.
|
|
|
|
# Binaries are available under separate licenses at
|
|
|
|
# http://www.microsoft.com/downloads/details.aspx?familyid=200b2fd9-ae1a-4a14-984d-389c36f85647&displaylang=en
|
2009-08-17 10:13:37 -07:00
|
|
|
diff -re crt/src/_sample_.rc ./crtsrc/_sample_.rc
|
2008-03-05 11:09:52 -08:00
|
|
|
41c
|
|
|
|
VALUE "ProductName", "Mozilla Custom C Runtime"
|
|
|
|
.
|
|
|
|
39c
|
|
|
|
VALUE "OriginalFilename", "MOZCRT19.DLL"
|
|
|
|
.
|
|
|
|
37c
|
|
|
|
VALUE "OriginalFilename", "MOZCRT19D.DLL"
|
|
|
|
.
|
|
|
|
33c
|
|
|
|
VALUE "InternalName", "MOZCRT19.DLL"
|
|
|
|
.
|
|
|
|
31c
|
|
|
|
VALUE "InternalName", "MOZCRT19D.DLL"
|
|
|
|
.
|
|
|
|
27c
|
|
|
|
VALUE "CompanyName", "Mozilla Foundation"
|
|
|
|
.
|
2009-08-17 10:13:37 -07:00
|
|
|
diff -re crt/src/crt0.c ./crtsrc/crt0.c
|
|
|
|
273c
|
|
|
|
/*
|
|
|
|
* this used to happen in _mtinit, but we need it before malloc
|
|
|
|
*/
|
|
|
|
_init_pointers(); /* initialize global function pointers */
|
|
|
|
|
|
|
|
if ( malloc_init_hard() ) /* initialize heap */
|
|
|
|
.
|
|
|
|
101a
|
|
|
|
extern BOOL malloc_init_hard(void);
|
|
|
|
.
|
|
|
|
diff -re crt/src/crt0dat.c ./crtsrc/crt0dat.c
|
2008-02-06 15:06:50 -08:00
|
|
|
789d
|
|
|
|
778d
|
2009-08-17 10:13:37 -07:00
|
|
|
diff -re crt/src/crtexe.c ./crtsrc/crtexe.c
|
2008-02-06 15:06:50 -08:00
|
|
|
333,335d
|
2009-08-17 10:13:37 -07:00
|
|
|
diff -re crt/src/crtheap.c ./crtsrc/crtheap.c
|
2008-02-06 15:06:50 -08:00
|
|
|
61c
|
|
|
|
pv = calloc(count, size);
|
|
|
|
.
|
|
|
|
58,59d
|
2009-08-17 10:13:37 -07:00
|
|
|
diff -re crt/src/crtlib.c ./crtsrc/crtlib.c
|
|
|
|
781,788d
|
2008-02-06 15:06:50 -08:00
|
|
|
416d
|
|
|
|
400a
|
|
|
|
malloc_shutdown();
|
|
|
|
|
|
|
|
.
|
|
|
|
359d
|
|
|
|
340d
|
|
|
|
310,311d
|
|
|
|
300d
|
|
|
|
287c
|
|
|
|
/*
|
|
|
|
* this used to happen in _mtinit, but we need it before malloc
|
|
|
|
*/
|
|
|
|
_init_pointers(); /* initialize global function pointers */
|
|
|
|
|
2008-02-08 21:46:59 -08:00
|
|
|
if ( malloc_init_hard() ) /* initialize heap */
|
2008-02-06 15:06:50 -08:00
|
|
|
.
|
|
|
|
43a
|
2008-02-08 21:46:59 -08:00
|
|
|
extern BOOL malloc_init_hard(void);
|
2008-02-06 15:06:50 -08:00
|
|
|
extern void malloc_shutdown(void);
|
|
|
|
|
|
|
|
.
|
2009-08-17 10:13:37 -07:00
|
|
|
diff -re crt/src/dllcrt0.c ./crtsrc/dllcrt0.c
|
2008-02-06 15:06:50 -08:00
|
|
|
236,237d
|
|
|
|
183d
|
|
|
|
173d
|
|
|
|
158d
|
|
|
|
153,155d
|
2009-08-17 10:13:37 -07:00
|
|
|
diff -re crt/src/intel/_sample_.def ./crtsrc/intel/_sample_.def
|
2008-02-06 15:06:50 -08:00
|
|
|
1208d
|
|
|
|
723,724d
|
2008-02-26 16:55:45 -08:00
|
|
|
669a
|
|
|
|
posix_memalign
|
|
|
|
.
|
|
|
|
643a
|
|
|
|
memalign
|
|
|
|
.
|
|
|
|
500a
|
|
|
|
malloc_usable_size
|
2009-10-03 00:21:30 -07:00
|
|
|
jemalloc_stats
|
2008-02-26 16:55:45 -08:00
|
|
|
.
|
2008-02-06 15:06:50 -08:00
|
|
|
336,341d
|
|
|
|
324d
|
|
|
|
313,314d
|
|
|
|
81d
|
|
|
|
9c
|
|
|
|
LIBRARY MOZCRT19
|
|
|
|
.
|
2009-08-17 10:13:37 -07:00
|
|
|
diff -re crt/src/internal.h ./crtsrc/internal.h
|
2008-02-06 15:06:50 -08:00
|
|
|
407a
|
|
|
|
#endif
|
|
|
|
.
|
|
|
|
403a
|
|
|
|
#if 0
|
|
|
|
.
|
2009-08-17 10:13:37 -07:00
|
|
|
diff -re crt/src/makefile ./crtsrc/makefile
|
|
|
|
1840c
|
|
|
|
-def:$(DEFFILE2_DIR)\sample_p.def
|
|
|
|
.
|
|
|
|
1816c
|
|
|
|
$(DEFFILE2_DIR)\sample_p.def $(CPPSRC_OBJS_DLL:*=dll) \
|
|
|
|
.
|
2008-02-06 15:06:50 -08:00
|
|
|
1745a
|
|
|
|
$(DEFFILE_DIR)\$(RETAIL_LIB_NAME).def : $(DEFFILE_DIR)\_sample_.def
|
|
|
|
copy $** $@
|
|
|
|
.
|
2009-08-17 10:13:37 -07:00
|
|
|
1274d
|
2008-02-06 15:06:50 -08:00
|
|
|
1228,1230d
|
|
|
|
754c
|
|
|
|
dll_ :: $(OBJROOT) $(OBJCPUDIR) $(OBJDIR_DLL) $(OBJDIR_DLL)\$(PURE_OBJ_DIR) \
|
|
|
|
$(OBJDIR_DLL)\$(CPP_OBJ_DIR) \
|
|
|
|
$(RELDIR_CPU) $(PDBDIR_CPU_DLL) $(MAKE_DIRS_DLL)
|
|
|
|
.
|
|
|
|
334c
|
|
|
|
CC_OPTS_BASE=-c -nologo -Zlp8 -W3 -GFy -DWIND32
|
|
|
|
.
|
|
|
|
307,309c
|
|
|
|
LINKER=link
|
|
|
|
LINKLIB=link -lib
|
|
|
|
LINKIMPLIB=link -lib
|
|
|
|
.
|
|
|
|
302,304c
|
|
|
|
LINKER=link -nologo
|
|
|
|
LINKLIB=link -lib -nologo
|
|
|
|
LINKIMPLIB=link -lib -nologo
|
|
|
|
.
|
|
|
|
209d
|
2009-08-17 10:13:37 -07:00
|
|
|
21,24c
|
2008-02-06 15:06:50 -08:00
|
|
|
RETAIL_DLL_NAME=MOZCRT19
|
2009-04-20 03:56:23 -07:00
|
|
|
RETAIL_LIB_NAME=mozcrt19
|
2009-08-17 10:13:37 -07:00
|
|
|
RETAIL_DLLCPP_NAME=MOZCPP19
|
|
|
|
RETAIL_LIBCPP_NAME=mozcpp19
|
2008-02-06 15:06:50 -08:00
|
|
|
.
|
2009-08-17 10:13:37 -07:00
|
|
|
diff -re crt/src/makefile.inc ./crtsrc/makefile.inc
|
|
|
|
1624a
|
2008-02-06 15:06:50 -08:00
|
|
|
$(OBJDIR)\unhandld.obj: $(PREOBJDIR)\unhandld.obj
|
|
|
|
copy $(PREOBJDIR)\unhandld.obj $@
|
2009-08-17 10:13:37 -07:00
|
|
|
|
2008-02-06 15:06:50 -08:00
|
|
|
.
|
|
|
|
618d
|
|
|
|
402d
|
|
|
|
342,353c
|
|
|
|
$(OBJDIR)\jemalloc.obj \
|
|
|
|
.
|
|
|
|
334,335d
|
|
|
|
329,330d
|
|
|
|
327d
|
|
|
|
323d
|
|
|
|
320d
|
2009-08-17 10:13:37 -07:00
|
|
|
diff -re crt/src/makefile.sub ./crtsrc/makefile.sub
|
2008-02-26 16:55:45 -08:00
|
|
|
103c
|
|
|
|
LIB=link -lib -nologo
|
|
|
|
.
|
2008-02-06 15:06:50 -08:00
|
|
|
69c
|
|
|
|
CFLAGS=$(CFLAGS) -O2 -DMOZ_MEMORY=1 -DMOZ_MEMORY_WINDOWS=1
|
|
|
|
.
|
2009-08-17 10:13:37 -07:00
|
|
|
diff -re crt/src/malloc.h ./crtsrc/malloc.h
|
2008-02-06 15:06:50 -08:00
|
|
|
189a
|
|
|
|
#endif
|
|
|
|
.
|
|
|
|
177a
|
|
|
|
|
|
|
|
#if 0
|
|
|
|
.
|
|
|
|
161d
|
|
|
|
83a
|
|
|
|
#endif
|
|
|
|
.
|
|
|
|
70a
|
|
|
|
#if 0
|
|
|
|
.
|
2009-08-17 10:13:37 -07:00
|
|
|
diff -re crt/src/mlock.c ./crtsrc/mlock.c
|
2008-02-06 15:06:50 -08:00
|
|
|
274c
|
|
|
|
#endif
|
|
|
|
.
|
|
|
|
262a
|
|
|
|
#if 0
|
|
|
|
.
|
2009-08-17 10:13:37 -07:00
|
|
|
diff -re crt/src/new.cpp ./crtsrc/new.cpp
|
2008-02-06 15:06:50 -08:00
|
|
|
60d
|
|
|
|
52,55d
|
|
|
|
37,38c
|
|
|
|
break;
|
|
|
|
.
|
2009-08-17 10:13:37 -07:00
|
|
|
diff -re crt/src/nothrownew.cpp ./crtsrc/nothrownew.cpp
|
2008-02-06 15:06:50 -08:00
|
|
|
37a
|
|
|
|
#endif
|
|
|
|
.
|
|
|
|
31a
|
|
|
|
#if 1
|
|
|
|
break;
|
|
|
|
#else
|
|
|
|
|
|
|
|
.
|
2009-08-17 10:13:37 -07:00
|
|
|
diff -re crt/src/sample_p.def ./crtsrc/sample_p.def
|
|
|
|
8c
|
|
|
|
LIBRARY MOZCPP19
|
|
|
|
.
|
|
|
|
diff -re crt/src/sample_p.rc ./crtsrc/sample_p.rc
|
|
|
|
41c
|
|
|
|
VALUE "ProductName", "Mozilla Custom C++ Runtime"
|
|
|
|
.
|
|
|
|
39c
|
|
|
|
VALUE "OriginalFilename", "MOZCPP19.DLL"
|
|
|
|
.
|
|
|
|
37c
|
|
|
|
VALUE "OriginalFilename", "MOZCPP19D.DLL"
|
|
|
|
.
|
|
|
|
33c
|
|
|
|
VALUE "InternalName", "MOZCPP19.DLL"
|
|
|
|
.
|
|
|
|
31c
|
|
|
|
VALUE "InternalName", "MOZCPP19D.DLL"
|
|
|
|
.
|
|
|
|
27c
|
|
|
|
VALUE "CompanyName", "Mozilla Foundation"
|
|
|
|
.
|
|
|
|
diff -re crt/src/tidtable.c ./crtsrc/tidtable.c
|
2008-02-06 15:06:50 -08:00
|
|
|
393,394d
|