mono.git
9 years agoAdd system.runtime.serialization config, makes several tests pass.
Atsushi Eno [Tue, 31 Mar 2015 07:01:48 +0000 (16:01 +0900)]
Add system.runtime.serialization config, makes several tests pass.

9 years ago[S.R.Serialization] switch to referencesources.
Atsushi Eno [Mon, 30 Mar 2015 18:22:28 +0000 (03:22 +0900)]
[S.R.Serialization] switch to referencesources.

It builds on net_4_5 and monodroid so far.

We still need to eliminate dynamic code generation to make it work on iOS.

9 years ago[S.Xml] Add [InternalsVisibleTo(S.R.Serialization)].
Atsushi Eno [Mon, 30 Mar 2015 18:11:17 +0000 (03:11 +0900)]
[S.Xml] Add [InternalsVisibleTo(S.R.Serialization)].

9 years agoMerge pull request #1735 from akoeplinger/mingw-fix
Alex Rønne Petersen [Fri, 24 Apr 2015 02:13:10 +0000 (04:13 +0200)]
Merge pull request #1735 from akoeplinger/mingw-fix

[io-layer] Fix Windows build on mingw

9 years ago[io-layer] Fix Windows build on mingw
Alexander Köplinger [Fri, 24 Apr 2015 01:44:07 +0000 (18:44 -0700)]
[io-layer] Fix Windows build on mingw

When we moved to Vista as the minimum build target, the mingw build broke.
The reason is that mingw's mswsock.h has the following code:

    #if (_WIN32_WINNT >= _WIN32_WINNT_VISTA)
    int WSAAPI WSAPoll(WSAPOLLFD, ULONG, INT);
    #endif

Unfortunately, due to a bug mingw 4.0 doesn't define WSAPOLLFD and the compiler
raises an error. See http://sourceforge.net/p/mingw/bugs/1980 for more details.

As a workaround, inline the typedef for WSAPOLLFD from the mentioned bug report.

Also removed an unecessary check for _WIN32_WINNT < 0x0502 from the file.

9 years ago[jit] Use mini_get_underlying_type () in mini_type_is_vtype () so it works with parti...
Zoltan Varga [Thu, 23 Apr 2015 22:44:29 +0000 (18:44 -0400)]
[jit] Use mini_get_underlying_type () in mini_type_is_vtype () so it works with partial sharing.

9 years ago[threadpool] Remove native call to Socket.(Receive|Send)_internal
Ludovic Henry [Thu, 23 Apr 2015 20:45:28 +0000 (21:45 +0100)]
[threadpool] Remove native call to Socket.(Receive|Send)_internal

This is now done in managed in SocketAsyncWorker.cs since 0c9dcf73c2362974015ffee7b98672510573f014

9 years ago[threadpool-ms] Fix race condition
Ludovic Henry [Thu, 23 Apr 2015 19:47:26 +0000 (20:47 +0100)]
[threadpool-ms] Fix race condition

9 years ago[runtime] Fix the arm build.
Zoltan Varga [Thu, 23 Apr 2015 17:25:32 +0000 (13:25 -0400)]
[runtime] Fix the arm build.

9 years ago[System.Data] Bring back PropertyAttributes, StrongTypingException and TypedDataSetGe...
Rolf Bjarne Kvinge [Thu, 23 Apr 2015 11:02:46 +0000 (13:02 +0200)]
[System.Data] Bring back PropertyAttributes, StrongTypingException and TypedDataSetGeneratorException to the mobile build.

9 years ago[mono-api-html] Use html5-compatible code for colorizing (i.e. css instead of font...
Rolf Bjarne Kvinge [Thu, 23 Apr 2015 10:19:41 +0000 (12:19 +0200)]
[mono-api-html] Use html5-compatible code for colorizing (i.e. css instead of font/s/u).

9 years ago[mono-api-html] Ignore non-important attribute differences and other improvements.
Rolf Bjarne Kvinge [Thu, 23 Apr 2015 09:56:50 +0000 (11:56 +0200)]
[mono-api-html] Ignore non-important attribute differences and other improvements.

* Properly colorize removed types (as red).
* Print 'NotSerialized' field attribute change (as not breaking).
* Ignore 'HasSecurity' and 'PInvokeImpl' method attribute differences.
* Render property indexers (and detect name change in property indexer parameters).
* Improve debug spew to print proper method/field attributes.

9 years agoMerge pull request #1731 from mono/fix-abort-arm-thumb
Zoltan Varga [Thu, 23 Apr 2015 07:05:09 +0000 (03:05 -0400)]
Merge pull request #1731 from mono/fix-abort-arm-thumb

[arm] Fix aborting of threads in managed code

9 years ago[arm] Fix aborting of threads in managed code
Vlad Brezae [Wed, 22 Apr 2015 23:40:45 +0000 (23:40 +0000)]
[arm] Fix aborting of threads in managed code

When installing the async callback in the context we need to update the thumb bit accordingly.

9 years ago[pdb2mdb] fix decimal values reading
Radek Doulik [Wed, 22 Apr 2015 20:03:14 +0000 (22:03 +0200)]
[pdb2mdb] fix decimal values reading

    apply patch from monodroid

    Author: Dean Ellis <dellis1972@googlemail.com>
    Date:   Thu Apr 17 12:34:00 2014 +0100

        [MSBuild] Error MSB3375 when attempting to debug PCL in VS

        Fixes https://bugzilla.xamarin.com/show_bug.cgi?id=18757

        The code to read the decimal values from
        the pdb did not work in all circumstances.
        This change uses the recommended code for
        reading the bits for a decimal from MSDN

        see http://msdn.microsoft.com/en-us/library/system.decimal.getbits.aspx?cs-save-lang=1&cs-lang=csharp#code-snippet-3

        It also includes an ArgumentException
        handler just in case it fails.

9 years agoMerge pull request #1728 from akoeplinger/revert-xp
Alex Rønne Petersen [Wed, 22 Apr 2015 16:54:10 +0000 (18:54 +0200)]
Merge pull request #1728 from akoeplinger/revert-xp

Revert "[msvc] Change target MSVC release from v120 to v120_xp"

9 years ago[threading] Remove dead code that was used only by old suspend.
Rodrigo Kumpera [Wed, 22 Apr 2015 15:27:15 +0000 (11:27 -0400)]
[threading] Remove dead code that was used only by old suspend.

9 years agoFix comment that still referred to Windows XP in configure.ac
Alexander Köplinger [Wed, 22 Apr 2015 16:13:45 +0000 (18:13 +0200)]
Fix comment that still referred to Windows XP in configure.ac

9 years agoRevert "[msvc] Change target MSVC release from v120 to v120_xp"
Alexander Köplinger [Wed, 22 Apr 2015 16:13:45 +0000 (18:13 +0200)]
Revert "[msvc] Change target MSVC release from v120 to v120_xp"

This reverts commit 577482e3361159e0c4c4b0232a07195ba91335dd.

We dropped XP support (see https://github.com/mono/mono/pull/1723),
so this is no longer necessary.

9 years agoMerge pull request #1725 from alexanderkyte/cache_crash
João Matos [Wed, 22 Apr 2015 14:29:32 +0000 (15:29 +0100)]
Merge pull request #1725 from alexanderkyte/cache_crash

[System.Runtime.Caching] Added missing locking around cache's sortedset.

9 years agoMerge pull request #1726 from jaredpar/build-roslyn
João Matos [Wed, 22 Apr 2015 14:27:21 +0000 (15:27 +0100)]
Merge pull request #1726 from jaredpar/build-roslyn

Improve Visual Basic build support

9 years ago[linker] Mark SecurityDeclarations [#28918]
Sebastien Pouliot [Wed, 22 Apr 2015 01:42:11 +0000 (21:42 -0400)]
[linker] Mark SecurityDeclarations [#28918]

Security declarations looks very similar to custom attributes - but
they are not (e.g. a different metadata table).

They need to be marked, just like other metadata, by the linker because
they can encode types that won't show up in the type (or assembly)
references.

Ignoring this can create an invalid binary (the kind that even Cecil
can't load back for further processing).

9 years ago[linker] Resolve AssemblyName[Reference] when sweeping [#29211]
Sebastien Pouliot [Wed, 22 Apr 2015 01:29:56 +0000 (21:29 -0400)]
[linker] Resolve AssemblyName[Reference] when sweeping [#29211]

The exact name (e.g. version) might differ between the original
AssemblyNameReference and the one being used (e.g. PCL).

To make sure we remove unused references we need to resolve
the AssemblyNameReference into AssemblyDefinition and then
continue the sweep based on the _new_ AssemblyNameReference.

9 years agoBump referencesources to restore compatibility with UnmanagedType enum
Sebastien Pouliot [Wed, 22 Apr 2015 01:26:15 +0000 (21:26 -0400)]
Bump referencesources to restore compatibility with UnmanagedType enum

9 years ago[sdb] Remove more unused code.
Zoltan Varga [Tue, 21 Apr 2015 23:07:23 +0000 (19:07 -0400)]
[sdb] Remove more unused code.

9 years ago[sdb] Remove more unused interrupt code.
Zoltan Varga [Tue, 21 Apr 2015 23:01:51 +0000 (19:01 -0400)]
[sdb] Remove more unused interrupt code.

9 years ago[sdb] Remove unused mono_debugger_agent_thread_interrupt () function.
Zoltan Varga [Tue, 21 Apr 2015 22:54:44 +0000 (18:54 -0400)]
[sdb] Remove unused mono_debugger_agent_thread_interrupt () function.

9 years ago[sdb] Remove an osx workaround which isn't needed with the new suspend code.
Zoltan Varga [Tue, 21 Apr 2015 22:50:07 +0000 (18:50 -0400)]
[sdb] Remove an osx workaround which isn't needed with the new suspend code.

9 years agoFix some warnings.
Zoltan Varga [Tue, 21 Apr 2015 22:39:53 +0000 (18:39 -0400)]
Fix some warnings.

9 years agoMerge pull request #1723 from madewokherd/winvista
Rodrigo Kumpera [Tue, 21 Apr 2015 22:03:22 +0000 (17:03 -0500)]
Merge pull request #1723 from madewokherd/winvista

Bump Windows requirement to Vista.

9 years ago[runtime] It's spring cleaning in MonoInternalThread. Remove 8 (yes, eight) unused...
Rodrigo Kumpera [Tue, 21 Apr 2015 21:50:50 +0000 (17:50 -0400)]
[runtime] It's spring cleaning in MonoInternalThread. Remove 8 (yes, eight) unused fields.

9 years ago[threading] Remove old suspend code now that all targets support it.
Rodrigo Kumpera [Tue, 21 Apr 2015 21:09:37 +0000 (17:09 -0400)]
[threading] Remove old suspend code now that all targets support it.

The new suspend code works on all major targets, so it's time to remove old suspend.

This change removes all relevant native code, managed code could see some cleanup.

9 years agoImprove Visual Basic build support
jaredpar [Mon, 20 Apr 2015 15:35:07 +0000 (08:35 -0700)]
Improve Visual Basic build support

This fixes a couple of small issues with the Visual Basic build support:

- The VBC task now respects the $(NoStdLib) MSBuild option.
- The field @(ReferencePath) should be used for References in the VBC
target as it is for the CSC target.
- The CreateVisualBasicManifestResourceNames task is compiled and used
in the same manner as CreateCSharpManifestResourceNames hence it should
be loaded via UsingTask in the same manner as well.
- Include the VisualBasic Portable targets files.

9 years agoMerge pull request #1699 from ludovic-henry/threadpool-managed
Rodrigo Kumpera [Tue, 21 Apr 2015 16:41:01 +0000 (11:41 -0500)]
Merge pull request #1699 from ludovic-henry/threadpool-managed

[threadpool-io] Move (Socket)AsyncResult invocation code to managed + Various improvements

9 years agoMerge pull request #1721 from jaredpar/fix-attribute-gen
Alexander Köplinger [Tue, 21 Apr 2015 16:35:24 +0000 (18:35 +0200)]
Merge pull request #1721 from jaredpar/fix-attribute-gen

Emit assembly attributes after Import statements

9 years agoEmit assembly attributes after Import statements
jaredpar [Fri, 17 Apr 2015 22:19:27 +0000 (15:19 -0700)]
Emit assembly attributes after Import statements

The VB language requires that code files have statements in the
following order:

- Option
- Import
- Assembly level attributes
- Namespaces / other declarations

The VBCodeGenerator type when given both import and assembly level
attribute statements was generating the attributes first.  This lead to
compilation errors in the generated file.

This change fixes the generator to emit assembly level attributes in
the proper location in the file (and adds the corresponding unit tests
as well).

9 years agoFix Options.cs warning on mobile builds
Chris Hamons [Tue, 21 Apr 2015 14:58:51 +0000 (09:58 -0500)]
Fix Options.cs warning on mobile builds

- Explictly disable warning CS0618 for Options.cs in Mono.Options

9 years ago[System] Replaced System.Process lock(this)
Marcos Henrich [Tue, 21 Apr 2015 14:54:08 +0000 (15:54 +0100)]
[System] Replaced System.Process lock(this)

To avoid concurrency problems lock(this) should not be used in public
classes.

9 years ago[System] Process.Exited is now thread safe.
Marcos Henrich [Tue, 21 Apr 2015 13:09:20 +0000 (14:09 +0100)]
[System] Process.Exited is now thread safe.

Fixes Exited event triggering multiple times.

9 years agoMerge pull request #1720 from blucz/master
Miguel de Icaza [Tue, 21 Apr 2015 02:00:09 +0000 (22:00 -0400)]
Merge pull request #1720 from blucz/master

Fix NullReferenceException in timer thread

9 years ago[System.Runtime.Caching] Added missing locking around cache's sortedset.
Alexander Kyte [Mon, 20 Apr 2015 23:07:14 +0000 (19:07 -0400)]
[System.Runtime.Caching] Added missing locking around cache's sortedset.

9 years ago[threading] Fix coop+windows compilation.
Rodrigo Kumpera [Mon, 20 Apr 2015 20:46:13 +0000 (16:46 -0400)]
[threading] Fix coop+windows compilation.

9 years agoBump Windows version requirement to Vista.
Vincent Povirk [Mon, 20 Apr 2015 20:14:22 +0000 (15:14 -0500)]
Bump Windows version requirement to Vista.

9 years agoAdd configure check for inet_pton on Windows.
Vincent Povirk [Mon, 20 Apr 2015 20:05:50 +0000 (15:05 -0500)]
Add configure check for inet_pton on Windows.

9 years ago[threading] Just skipping GC is not enough, we need to transition the threadpool...
Rodrigo Kumpera [Mon, 20 Apr 2015 19:57:25 +0000 (15:57 -0400)]
[threading] Just skipping GC is not enough, we need to transition the threadpool to blocking.

9 years ago[threading] Add coop support to sdb.
Rodrigo Kumpera [Mon, 20 Apr 2015 19:58:02 +0000 (15:58 -0400)]
[threading] Add coop support to sdb.

9 years ago[Socket] Add DualMode property and adjust to Mono semantics (continuation to #20048)
Miguel de Icaza [Mon, 20 Apr 2015 19:55:26 +0000 (15:55 -0400)]
[Socket] Add DualMode property and adjust to Mono semantics (continuation to #20048)

The new socket constructor that only takes a SocketType and a
ProtocolType defaults to InterNetworkV6 (this was done on a previous patch).

In addition, we explicitly set "DualMode" to true, so that on Windows,
this gets set explicitly (it does not matter on Unix).

We surface the DualMode property to allow servers that want to just
bind to the IPv6 address to do so by creating the socket and then
changing DualMode to false.

This is *not* the same setting that Windows has, but it is the
semantics that Mono applications depend on.  So a test has been added
to ensure that we do not regress.

This also switches to use SocketOptionName from the ReferenceSources.

9 years ago[threadpool-io] Fix epoll init
Ludovic Henry [Mon, 20 Apr 2015 13:10:26 +0000 (14:10 +0100)]
[threadpool-io] Fix epoll init

9 years ago[threadpool-io] Move epoll/kqueue/poll specific code to dedicated files
Ludovic Henry [Tue, 14 Apr 2015 21:40:21 +0000 (22:40 +0100)]
[threadpool-io] Move epoll/kqueue/poll specific code to dedicated files

This is to make the addition of backends easier

9 years ago[threadpool-io] Move Mono(Socket)RuntimeWorkItem ExecuteWorkItem code to (Socket...
Ludovic Henry [Tue, 7 Apr 2015 13:47:58 +0000 (14:47 +0100)]
[threadpool-io] Move Mono(Socket)RuntimeWorkItem ExecuteWorkItem code to (Socket)AsyncResult in managed

9 years ago[corlib] cryptography from reference sources
Marek Safar [Mon, 20 Apr 2015 14:49:59 +0000 (16:49 +0200)]
[corlib] cryptography from reference sources

9 years agoMerge pull request #1691 from esdrubal/exitevent
Marcos Henrich [Mon, 20 Apr 2015 14:04:32 +0000 (15:04 +0100)]
Merge pull request #1691 from esdrubal/exitevent

Improved Process.Exited

9 years agoMerge pull request #1222 from LogosBible/uri-trycreate
Marcos Henrich [Mon, 20 Apr 2015 13:06:22 +0000 (14:06 +0100)]
Merge pull request #1222 from LogosBible/uri-trycreate

Lower-case the host in Uri.TryCreate to match behavior of constructors

9 years ago[corlib] Fix mobile tests
Marek Safar [Mon, 20 Apr 2015 11:46:23 +0000 (13:46 +0200)]
[corlib] Fix mobile tests

9 years ago[threadpool-io] Make updates non backend specific
Ludovic Henry [Tue, 7 Apr 2015 14:42:29 +0000 (15:42 +0100)]
[threadpool-io] Make updates non backend specific

9 years ago[threadpool-io] Do not wait on socket if there are no SocketAsyncResults to call
Ludovic Henry [Tue, 7 Apr 2015 19:02:11 +0000 (20:02 +0100)]
[threadpool-io] Do not wait on socket if there are no SocketAsyncResults to call

9 years ago[llvm] Refactor the intrinsics registration code a bit.
Zoltan Varga [Sun, 19 Apr 2015 03:47:28 +0000 (23:47 -0400)]
[llvm] Refactor the intrinsics registration code a bit.

9 years ago[Socket] Fix the socket ctor base call, and document the reason; Fixes #20048
Miguel de Icaza [Sun, 19 Apr 2015 02:01:33 +0000 (22:01 -0400)]
[Socket] Fix the socket ctor base call, and document the reason;  Fixes #20048

9 years ago[runtime] Fix a regression in the socket code introduced by 6999fc26772e73c26069ce09e...
Zoltan Varga [Sun, 19 Apr 2015 00:17:37 +0000 (20:17 -0400)]
[runtime] Fix a regression in the socket code introduced by 6999fc26772e73c26069ce09e7fc19794d619d7d.

9 years ago[runtime] Add a checked version of mono_class_from_name ().
Zoltan Varga [Sat, 18 Apr 2015 16:03:15 +0000 (12:03 -0400)]
[runtime] Add a checked version of mono_class_from_name ().

9 years agoFix a warning.
Zoltan Varga [Sat, 18 Apr 2015 15:43:02 +0000 (11:43 -0400)]
Fix a warning.

9 years agoRevert "[runtime] Add a _checked version for mono_class_from_name ()."
Zoltan Varga [Sat, 18 Apr 2015 04:24:52 +0000 (00:24 -0400)]
Revert "[runtime] Add a _checked version for mono_class_from_name ()."

This reverts commit 652c882f3d84309fdb1b97978871c8aa76916fd2.

Revert this as it breaks tests.

9 years ago[runtime] Remove unused mono_metadata_parse_signature_full () function.
Zoltan Varga [Sat, 18 Apr 2015 03:55:03 +0000 (23:55 -0400)]
[runtime] Remove unused mono_metadata_parse_signature_full () function.

9 years ago[runtime] Add a _checked version for mono_class_from_name ().
Zoltan Varga [Sat, 18 Apr 2015 03:51:35 +0000 (23:51 -0400)]
[runtime] Add a _checked version for mono_class_from_name ().

9 years ago[jit] Fix the build.
Rodrigo Kumpera [Fri, 17 Apr 2015 21:01:12 +0000 (17:01 -0400)]
[jit] Fix the build.

9 years ago[jit] Allow the storage of trampolines in the jit info tables. Currently, this is...
Zoltan Varga [Fri, 17 Apr 2015 20:49:05 +0000 (16:49 -0400)]
[jit] Allow the storage of trampolines in the jit info tables. Currently, this is only used by mono_print_method_from_ip ().

9 years ago[runtime] Enable the managed test runner for the gshared tests as well.
Zoltan Varga [Fri, 17 Apr 2015 20:42:46 +0000 (16:42 -0400)]
[runtime] Enable the managed test runner for the gshared tests as well.

9 years ago[threading] [jit] Fix non coop osx build.
Rodrigo Kumpera [Fri, 17 Apr 2015 19:27:54 +0000 (15:27 -0400)]
[threading] [jit] Fix non coop osx build.

9 years agoFix NullReferenceException in timer thread
Brian Luczkiewicz [Fri, 17 Apr 2015 19:22:40 +0000 (15:22 -0400)]
Fix NullReferenceException in timer thread

Every once in a while, we run into a NullReferenceException attempting to dispose a null timer. It's very rare and we can't reproduce. However, reading this code, it seems possible that two timer callbacks could pile up, and if they did, the first one might dispose the timer, and then the second one would attempt to dispose null.

9 years ago[coop] Add missing coop checks for WFSO and WFMO.
Rodrigo Kumpera [Fri, 17 Apr 2015 00:13:11 +0000 (20:13 -0400)]
[coop] Add missing coop checks for WFSO and WFMO.

9 years agoRevert "[threading] Move the safe pointing of WFSO and WFMO into the io-layer, since...
Rodrigo Kumpera [Thu, 16 Apr 2015 23:56:27 +0000 (19:56 -0400)]
Revert "[threading] Move the safe pointing of WFSO and WFMO into the io-layer, since it's simpler to have it there."

This reverts commit 0327832893092c2dd6f36c72a188d7819bff3f30.

9 years ago[coop] get_addrinfo_family_hint could call into managed, which is not allowed while...
Rodrigo Kumpera [Thu, 16 Apr 2015 23:56:03 +0000 (19:56 -0400)]
[coop] get_addrinfo_family_hint could call into managed, which is not allowed while in blocking mode.

9 years ago[jit] Rework the managed code suspend polling and add COOP_GC support.
Rodrigo Kumpera [Thu, 16 Apr 2015 23:49:02 +0000 (19:49 -0400)]
[jit] Rework the managed code suspend polling and add COOP_GC support.

This change enables managed polling to work with both NaCL and coop as they are exactly the same except for the variables used.

We cleanup how safepoints are injects to be done on a separate pass instead of having in spread around the JIT.

We now inject safepoints at EH handler entry as those did not previously have them.

The generated AOT code was greatly optimized by having the polling variable checked before doing the icall. This more
than doubles the performance of the generated code.

9 years ago[jit] Fix the loop recognition pass to handle single BB loops and enable logging...
Rodrigo Kumpera [Thu, 16 Apr 2015 23:12:28 +0000 (19:12 -0400)]
[jit] Fix the loop recognition pass to handle single BB loops and enable logging by default.

9 years ago[threading] Add a global variable that is set while a global suspend is hapening.
Rodrigo Kumpera [Thu, 16 Apr 2015 23:01:13 +0000 (19:01 -0400)]
[threading] Add a global variable that is set while a global suspend is hapening.

This global var is meant to be used by JIT'd code to efficiently implement polling.

9 years ago[runtime] Fix the creation of multi-dimensional arrays using ConstructorInfo.Invoke...
Zoltan Varga [Fri, 17 Apr 2015 19:05:51 +0000 (15:05 -0400)]
[runtime] Fix the creation of multi-dimensional arrays using ConstructorInfo.Invoke (). Fixes #29183.

9 years ago[threadpool-ms] Change boolean return type from gboolean to MonoBoolean for icalls
Ludovic Henry [Fri, 17 Apr 2015 16:53:17 +0000 (17:53 +0100)]
[threadpool-ms] Change boolean return type from gboolean to MonoBoolean for icalls

9 years ago[threadpool-ms] Fix sgen runtime test crash
Ludovic Henry [Fri, 17 Apr 2015 16:42:23 +0000 (17:42 +0100)]
[threadpool-ms] Fix sgen runtime test crash

9 years ago[runtime] Revert this change as it strips the volatileness of the load.
João Matos [Fri, 17 Apr 2015 16:35:56 +0000 (17:35 +0100)]
[runtime] Revert this change as it strips the volatileness of the load.

9 years ago[corlib] Security attributes from reference sources
Marek Safar [Fri, 17 Apr 2015 14:59:49 +0000 (16:59 +0200)]
[corlib] Security attributes from reference sources

9 years ago[corlib] Update public api
Marek Safar [Fri, 17 Apr 2015 14:06:05 +0000 (16:06 +0200)]
[corlib] Update public api

9 years ago[corlib] Versioning from reference sources
Marek Safar [Fri, 17 Apr 2015 13:38:03 +0000 (15:38 +0200)]
[corlib] Versioning from reference sources

9 years ago[runtime] Fix call to task_for_pid in proclib utils
Ludovic Henry [Fri, 17 Apr 2015 12:53:26 +0000 (13:53 +0100)]
[runtime] Fix call to task_for_pid in proclib utils

task_for_pid requires special privileges on osx 10.5+ and ios, so it's better to avoid calling it.

9 years ago[corlib] SafeHandles from reference sources
Marek Safar [Fri, 17 Apr 2015 12:31:46 +0000 (14:31 +0200)]
[corlib] SafeHandles from reference sources

9 years agoMerge pull request #1717 from jaredpar/vb-build-props
João Matos [Fri, 17 Apr 2015 11:28:23 +0000 (12:28 +0100)]
Merge pull request #1717 from jaredpar/vb-build-props

Expand Visual Basic build support

9 years agoMerge pull request #1716 from esdrubal/jsdeserialize
João Matos [Fri, 17 Apr 2015 11:10:45 +0000 (12:10 +0100)]
Merge pull request #1716 from esdrubal/jsdeserialize

[System.Web.Extension] Fixes JavaScriptSerializer.Deserialize.

9 years ago[system] Fixes mobile build
Marek Safar [Fri, 17 Apr 2015 10:09:08 +0000 (12:09 +0200)]
[system] Fixes mobile build

9 years ago[corlib] Fixes build
Marek Safar [Fri, 17 Apr 2015 09:34:57 +0000 (11:34 +0200)]
[corlib] Fixes build

9 years agoBump reference sources for build fix
Marek Safar [Fri, 17 Apr 2015 09:01:59 +0000 (11:01 +0200)]
Bump reference sources for build fix

9 years ago[corlib] Mobile build fixes
Marek Safar [Fri, 17 Apr 2015 08:36:34 +0000 (10:36 +0200)]
[corlib] Mobile build fixes

9 years ago[facades] Add missing attributes
Marek Safar [Fri, 17 Apr 2015 08:36:11 +0000 (10:36 +0200)]
[facades] Add missing attributes

9 years ago[corlib] More exceptions from reference sources
Marek Safar [Fri, 17 Apr 2015 08:35:18 +0000 (10:35 +0200)]
[corlib] More exceptions from reference sources

9 years agoExpand Visual Basic build support
jaredpar [Thu, 16 Apr 2015 20:27:03 +0000 (13:27 -0700)]
Expand Visual Basic build support

This change adds support for the following MSBuild properties which are specific to VB compilation:

- OptionInfer: controls the /optioninfer switch
- VBRuntime: controls the /vbruntime switch

9 years agoAdd support for mono_arch_create_monitor_[enter|exit]_trampoline
Neale Ferguson [Thu, 16 Apr 2015 20:14:19 +0000 (16:14 -0400)]
Add support for mono_arch_create_monitor_[enter|exit]_trampoline

9 years ago[runtime] Fix support for delegates with a byref first argument bound to a valuetype...
Zoltan Varga [Thu, 16 Apr 2015 19:10:03 +0000 (15:10 -0400)]
[runtime] Fix support for delegates with a byref first argument bound to a valuetype method. Fixes #25717.

9 years ago[System.Web.Extension] Fixes js deserialization.
Marcos Henrich [Thu, 16 Apr 2015 18:12:29 +0000 (19:12 +0100)]
[System.Web.Extension] Fixes js deserialization.

Fixes JavaScriptSerializer.Deserialize of values with trailing spaces.
Fixes #4148.

9 years ago[System.Web.Extension] Added tests.
Marcos Henrich [Thu, 16 Apr 2015 18:11:33 +0000 (19:11 +0100)]
[System.Web.Extension] Added tests.

Tests JavaScriptSerializer.Deserialize with trailing white spaces.
Covers #4148

9 years ago[runtime] While we're here update the code to match the style guide.
João Matos [Thu, 16 Apr 2015 16:56:32 +0000 (17:56 +0100)]
[runtime] While we're here update the code to match the style guide.

9 years ago[runtime] Fixed extra address-of in lock free code.
João Matos [Thu, 16 Apr 2015 16:42:35 +0000 (17:42 +0100)]
[runtime] Fixed extra address-of in lock free code.

9 years ago[corlib] Update reference sources com sources
Marek Safar [Thu, 16 Apr 2015 15:46:46 +0000 (17:46 +0200)]
[corlib] Update reference sources com sources