Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/mono/mono.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
AgeCommit message (Collapse)Author
2013-03-29Hopefully fix the windows build.Zoltan Varga
2013-03-29Hopefully fix the windows build.Zoltan Varga
2013-03-29Have the linker skip mixed-mode assemblies since it won't be able to save ↵Sebastien Pouliot
them later
2013-03-28Remove some debug printfs.Zoltan Varga
2013-03-28Fix the build.Zoltan Varga
2013-03-28Fix the build.Zoltan Varga
2013-03-28Fix build break.Jonathan Pryor
5329fab3 requires <sys/uio.h>, which wasn't being included.
2013-03-28Move atomic.h/atomic.h to utils/.Zoltan Varga
2013-03-28Add implementations of atomic functions using gcc atomic ops. Not yet used.Zoltan Varga
2013-03-28[mkbundle] Remove Mono.Posix, ICSharpCode.SharpZipLib depsJonathan Pryor
I want to make execution of mkbundle possible under .NET, and as such I want to remove unnecessary dependencies. Mono.Posix is only used for UnixMarshal heap methods; there's NO need to use these when Marshal can be used. That leaves DeflaterOutputStream, and it's possible to configure zlib to accept deflate streams, allowing us to use GZipStream: http://stackoverflow.com/a/1838702/83444 Update template_z.c accordingly so that the compressed data works. Two side results of this: 1. Increased compression; my (really stupid) test app went from a compression ration of 31.39% to 32% 2. This MAY make things WORSE when running on .NET < 4.5. This is fixed in .NET 4.5: http://msdn.microsoft.com/en-us/library/system.io.compression.deflatestream.aspx Starting with the .NET Framework 4.5, the DeflateStream class uses the zlib library. As a result, it provides a better compression algorithm and, in most cases, a smaller compressed file than it provides in earlier versions of the .NET Framework.
2013-03-27Merge pull request #609 from steffen-kiess/stat-st_atimJonathan Pryor
Add nanosecond resolution times to struct Stat
2013-03-27Add nanosecond resolution times to struct StatSteffen Kieß
2013-03-27Fix sdb asserts when seq-points are not found for a method because its ↵Zoltan Varga
assembly was AOTed without the 'soft-debug' option. Fixes #11435.
2013-03-27Merge pull request #221 from steffen-kiess/masterJonathan Pryor
Add various methods and flags to Syscall
2013-03-27Add various methods and flags to SyscallSteffen Kieß
* Add OpenFlags.O_CLOEXEC and OpenFlags.O_PATH * Add AtFlags for AT_* values * Add fdopendir, mkdtemp, futimens * Add readv, writev, preadv, pwritev * Add *at methods: openat, renameat, fchmodat, fstatat, utimensat, mkdirat, mknodat, mkfifoat, faccessat, fchownat, linkat, readlinkat, symlinkat, unlinkat * Add constants AT_FDCWD, UTIME_NOW, UTIME_OMIT
2013-03-26Export a few more symbols for LLVM.Zoltan Varga
2013-03-26[corlib] Marshal: fine-tune the pointer Read/Write operations.Miguel de Icaza
This patch reworks the Marshal's Read and Write pointer operations to avoid performing a modulo operation to choose the fast path, as in some platforms the modulo operation is implemented as a C subroutine. Instead we use bit operations which always run in constant time. It also avoids the IntPtr.XXX method calls, factors out "unsafe", only ever performs one IntPtr->pointer conversion, and makes the source code uniform.
2013-03-26Remove a redundant null check.Zoltan Varga
2013-03-26Return null when null was passed to Marshal.PtrToStructure () instead of ↵Zoltan Varga
throwing an exception. Fixes #11417.
2013-03-26Set errno to 0 before calling readdir in Syscall.readdir().Steffen Kieß
This will allow the caller to distinguish between errors and end-of-directory.
2013-03-26Update number separators for mexican and similar locales. Fixes #8084Marek Safar
2013-03-26Set invariant DateTimeFormatInfo for all invariant format specifiers. Fixes ↵Marek Safar
#11364
2013-03-26Populate AbbreviatedMonthNames values. Fixes #11361Marek Safar
2013-03-26update cecil rev.Atsushi Eno
We cannot fully update cecil to the latest master which seems to break some existing code, so use specific branch so far.
2013-03-26Export a few functions needed by llvm.Paolo Molaro
2013-03-26Fix quoting of some date time patters. Fixes #11363Marek Safar
2013-03-26Add zh-CHT parent lcid handling. Fixes #11375Marek Safar
2013-03-26Merge pull request #608 from metanest/bin_bash_spikeAlex Rønne Petersen
#!/bin/bash -> #!/usr/bin/env bash
2013-03-26#!/bin/bash -> #!/usr/bin/env bashKISHIMOTO, Makoto
2013-03-26Don't emulate idiv.un/irem.un on ARM in cases where it can be optimized away.Zoltan Varga
2013-03-26Fix a typo in bc149a3814c33ee55eaa01fe49c52389d7b31bb2.Zoltan Varga
2013-03-25Add configure awaitMarek Safar
2013-03-25Merge pull request #607 from maksimenko/masterMarek Safar
use await GetRequestStreamAsync on System.Net.Http.HttpClientHandler SendAsync to avoid blocking
2013-03-25Change mono_gc_get_managed_array_allocator to receive a MonoClass instead of ↵Rodrigo Kumpera
a vtable, rank pair. * method-to-ir.c: Given mono_gc_get_managed_array_allocator now takes a class and not an vtable, we can now use it for shared code allocating arrays.
2013-03-25Fast path Array::Resize with small arrays.Rodrigo Kumpera
2013-03-25Don't capture any variables when block yield only breaksMarek Safar
2013-03-25Don't create interator parameters copies for unmodified parametersMarek Safar
2013-03-25Apply 9dc360146f373e64b2b8801a4284938759bc5229 to all where methodsMarek Safar
2013-03-25Don't copy hoisted iterator parameters when not neededMarek Safar
2013-03-25Fix the hashing of MonoJumpInfo structures, previously many had the same ↵Zoltan Varga
hash code.
2013-03-25Add a mono_print_ji () helper function to print a MonoJumpInfo structure.Zoltan Varga
2013-03-25Add a test for the WebUtility.HtmlEncode bitsMiguel de Icaza
2013-03-25Move the 'Created object count' stat to the GC section when using --stats.Zoltan Varga
2013-03-25Avoid using an rgctx when making delegate invokes from shared code, the ↵Zoltan Varga
delegate trampoline code already handles this.
2013-03-24Add optimized where iterator for arraysMarek Safar
2013-03-24Optimize entity conversionMarek Safar
2013-03-24Try to recover incomplete ternary expression. Fixes #5195Marek Safar
2013-03-24Better error message for not matching overload when expanded params ↵Marek Safar
conversion fails.
2013-03-24Fix the build.Zoltan Varga
2013-03-24Avoid AOTing PtrToStructure/StructureToPtr() wrappers for the compiler ↵Zoltan Varga
generated '-...' structs.