Re: [Mono-dev] starting process in Linux environment

2012-02-21 Thread Gladish, Jacob
I tried that code under 2.4.2.1 and got this exception: Stacktrace: at (wrapper managed-to-native) System.Diagnostics.Process.CreateProcess_internal (System.Diagnostics.ProcessStartInfo,intptr,intptr,intptr,System.Diagnostics.Process/ProcInfo) 0x00054 at (wrapper managed-to-native)

Re: [Mono-dev] Olive Status

2011-02-10 Thread Gladish, Jacob
Just wanted to confirm that no has started any work on the workflow 4 stuff yet. -Original Message- From: mono-devel-list-boun...@lists.ximian.com [mailto:mono-devel-list-boun...@lists.ximian.com] On Behalf Of Atsushi Eno Sent: Monday, December 13, 2010 10:30 PM To: Travis Smith Cc:

Re: [Mono-dev] Should we replace MemoryStream?

2009-11-10 Thread Gladish, Jacob
It seems that the original motivation was to deal with fragmentation. In my opinion, work should be concentrated on sgen and not cherry-picking framework classes. If efficient memory buffering is required in the framework for remoting, etc, Then why not have an internal implementation of the

Re: [Mono-dev] there is a free mono for Andrioid or Wii?

2009-10-13 Thread Gladish, Jacob
Does anyone know if these changes have been pulled into the trunk? Can I pull down a fresh tree from the trunk and expect it to build on android, or do I Need to patch? -Original Message- From: mono-devel-list-boun...@lists.ximian.com [mailto:mono-devel-list-

[Mono-dev] Ping throwing exception

2009-09-28 Thread Gladish, Jacob
I'm getting an exception from an application that is repeatedly running pings. The Ping class looks like it'll switch between invoking /bin/ping and sending an ICMP directly depending on the user. I'm running as a non-privileged user, therefore, its exec'ing ping. Every once in a while I get an

Re: [Mono-dev] xbuild

2009-07-28 Thread Gladish, Jacob
a usability issue. -Original Message- From: Ankit Jain [mailto:radi...@gmail.com] Sent: Tuesday, July 28, 2009 5:50 AM To: Gladish, Jacob Cc: mono-devel-l...@ximian.com Subject: Re: [Mono-dev] xbuild On Mon, Jul 27, 2009 at 9:48 PM, Gladish, Jacobjacob.glad...@sig.com wrote: I

[Mono-dev] xbuild

2009-07-27 Thread Gladish, Jacob
I decided to give xbuild a try today and was pretty impressed on how well it was working. I have a project with a few .config files checked into revision control that wind up being read-only. When I run xbuild it errors out trying to overwrite a read-only file from a previous run in the output

Re: [Mono-dev] CS0411 error with nullable enum

2009-07-21 Thread Gladish, Jacob
This compiled fine for me using 2.4.2.1 using System; using System.Collections.Generic; namespace Test { public enum Enum { One, Two } class CompilerTest { public static void Main(string[] s) { ThisDoesNotWork(); } protected static int

Re: [Mono-dev] assembly config settings

2009-07-20 Thread Gladish, Jacob
-boun...@lists.ximian.com [mailto:mono-devel-list- boun...@lists.ximian.com] On Behalf Of Robert Jordan Sent: Saturday, July 18, 2009 6:27 AM To: mono-devel-list@lists.ximian.com Subject: Re: [Mono-dev] assembly config settings Gladish, Jacob wrote: I'm having some issues getting an assembly

[Mono-dev] p/invoke marshal struct to pointer

2009-07-17 Thread Gladish, Jacob
I'm using a third-party .NET wrapper around an unmanaged library that was intended for use on windows. I'm investigating whether this will work on work on Linux and am getting the following exception: System.Runtime.InteropServices.MarshalDirectiveException: Can not marshal 'parameter #1':

[Mono-dev] assembly config settings

2009-07-17 Thread Gladish, Jacob
I'm having some issues getting an assembly config file to load. When I run strace on the mono when starting my app, I see the foo.dll.config found and read, but the settings from the file do not appear to be loading as the defaults are always returned. Is there something obvious I may be

[Mono-dev] PerformanceCounters 2.4.2.1

2009-07-15 Thread Gladish, Jacob
I was trying the PerfCounter api on sles 10 and am getting some garbled output. I have the following test app: public class Procs { public static void Main(string[] args) { PerformanceCounterCategory cat = new PerformanceCounterCategory(Process); foreach (PerformanceCounter

Re: [Mono-dev] {kinda OT} Linux equivalent of Win32 ReadProcessMemory...

2009-04-13 Thread Gladish, Jacob
Is there a particular piece of memory you're looking for? Environmental variables, etc., or are you simply trying to read arbitrary bytes from another processes? -Original Message- From: mono-devel-list-boun...@lists.ximian.com [mailto:mono-devel-list-boun...@lists.ximian.com] On

[Mono-dev] no multicast addresses returned from IPInterfaceProperties

2009-03-18 Thread Gladish, Jacob
It looks like the NetworkInterface class uses getifaddrs(3) to fetch all addresses associated with an interface. This list is then used to fill in the multicast addresses returned from the IPInterfaceProperes.MulticastAddresses property. This doesn't appear to work and I don't think getifaddrs

[Mono-dev] setuid application

2009-03-02 Thread Gladish, Jacob
Before proceeding with my current plan, I wanted to get any feedback from anyone who may have explored building a mono app that has setuid. My application is mostly managed code, with a few p/invoke calls, but it's been pretty platform agnostic thus far. I need to have setuid privileges on my

Re: [Mono-dev] setuid application

2009-03-02 Thread Gladish, Jacob
02, 2009 2:08 PM To: Gladish, Jacob Cc: mono-devel-list@lists.ximian.com Subject: Re: [Mono-dev] setuid application On Mon, 2009-03-02 at 12:00 -0500, Gladish, Jacob wrote: Before proceeding with my current plan, I wanted to get any feedback from anyone who may have explored building a mono app