Thanks to visit codestin.com
Credit goes to github.com

Skip to content
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
25 commits
Select commit Hold shift + click to select a range
167051d
Making it so that MakeBinary handles ArrayIndex
djsell Nov 4, 2010
d1d82af
Merge branch 'gc_oom'
kumpera Nov 10, 2010
461418d
[OSX] Dont use nested functions to determine if we can use the system…
Nov 10, 2010
46997e2
[corlib] Fix for bug #652807. Handle RegistryValueKind.QWord in Win32…
grendello Nov 11, 2010
d4659e7
removed xml output code (mostly harmless but could break xml files).
Nov 11, 2010
eb818ee
Fix readonly collection check (should use IsWritePublic).
Nov 11, 2010
6e5eeda
Split XamlNode.cs to object-reader specific code and else.
Nov 11, 2010
aa4cf49
Remove extra copy lines.
Nov 11, 2010
00ef616
Remove old code (overwrite).
Nov 11, 2010
53f9968
When collection instance returned null, do not try to GetItems().
Nov 11, 2010
3e3804b
XamlMember.TypeConverter should return correct converter now.
Nov 11, 2010
96f6aaf
Define mono_gc_get_card_table () for boehm/null gc too, to reduce the…
vargaz Nov 11, 2010
f7f6e26
Unwraped equality operators cannot use a user operator of different t…
marek-safar Nov 10, 2010
7239b02
Synchronize event add/remove using CAS
marek-safar Nov 11, 2010
3d4efed
Remove one more compile-time dependency on sgen.
vargaz Nov 11, 2010
92b0e3f
Log profiler: implemented the reverse reference feature in the heapsh…
illupus Nov 11, 2010
c963609
Added a proper define for the external zlib and check for sched_getcp…
illupus Nov 11, 2010
39ecc85
Added the mprof-report manpage.
illupus Nov 11, 2010
195accd
[650850] Inflate all hoisted type parameter constraints
marek-safar Nov 11, 2010
f99729b
Small logic fix in choosing step in Parallel.For
garuma Nov 11, 2010
92f611a
In Parallel.For, returns immediately if the initial bound is superior…
garuma Nov 11, 2010
8a37df6
Add a new lightweight stealing algorithm to Parallel.For
garuma Nov 11, 2010
021deca
Refine precedent algorithm for Parallel.For index stealing.
garuma Nov 11, 2010
6b4c510
Making it so that MakeBinary handles ArrayIndex
djsell Nov 4, 2010
e760556
Merge branch 'mbai' of github.com:djsell/mono into mbai
djsell Nov 12, 2010
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 3 additions & 2 deletions configure.in
Original file line number Diff line number Diff line change
Expand Up @@ -377,15 +377,15 @@ AC_CHECK_HEADERS(sys/user.h, [], [],
AC_CHECK_HEADER(zlib.h, [have_zlib=yes], [have_zlib=no])
if test x$have_zlib = xyes; then
AC_TRY_COMPILE([#include <zlib.h>], [
void main () {
#if defined(ZLIB_VERNUM) && (ZLIB_VERNUM >= 0x1230)
}
return 0;
#else
#error No good zlib found
#endif
],[
AC_MSG_RESULT(Using system zlib)
zlib_msg="system zlib"
AC_DEFINE(HAVE_SYS_ZLIB,1,[Have system zlib])
],[
AC_MSG_RESULT(Using embedded zlib)
have_zlib=no
Expand Down Expand Up @@ -1007,6 +1007,7 @@ if test x$target_win32 = xno; then
AC_CHECK_FUNCS(sysconf)

AC_CHECK_FUNCS(sched_setaffinity)
AC_CHECK_FUNCS(sched_getcpu)

dnl ****************************************************************
dnl *** Check for sched_setaffinity from glibc versions before ***
Expand Down
1 change: 1 addition & 0 deletions man/Makefile.am
Original file line number Diff line number Diff line change
Expand Up @@ -27,6 +27,7 @@ man_MANS = \
mdvalidater.1 \
mkbundle.1 \
mono.1 \
mprof-report.1 \
mono-cil-strip.1 \
mono-config.5 \
monodocer.1 \
Expand Down
Loading