[Mono-dev] Patch for Processes.c on Mac OSX

Rodrigo Kumpera kumpera at gmail.com
Wed Dec 2 13:44:24 EST 2009


Thanks for the patch, Miguel applied it.


On Wed, Dec 2, 2009 at 3:10 PM, Tom Philpot <tom.philpot at logos.com> wrote:

>  Rodrigo,
>
> Thanks for the feedback. Here’s an updated patch.
>
> Again, this is X11 MIT Licensed.
>
> Tom
>
>
>
> On 12/2/09 4:30 AM, "Rodrigo Kumpera" <kumpera at gmail.com> wrote:
>
> The overall patch looks good, but some small changes must be done before
> the patch can be committed:
>
>
> @@ -1489,8 +1489,73 @@
>  }
>  #endif /* UNUSED_CODE */
>
> +#ifdef PLATFORM_MACOSX
> +#include <sys/sysctl.h>
> +#include <sys/proc.h>
> +
> Move header declarations to the top of the file. It doesn't matter we have
> other
> place with this, let's not make it worse.
>
>
> +  if (err == 0) {
> +   result = g_malloc (proclength);
> +   if (result == NULL) {
> +    err = ENOMEM;
> +   }
> +  }
> No need to guard against allocation failure with g_malloc as glib asserts
> on failure.
>
> The same applies to the loop around allocation failure.
>
>
> + free (result);
> + result = NULL;
> + *needed = j * sizeof(guint32);
> You must use g_free paired with g_malloc.
>
> I believe the code in process_open_compare is not optimal for OSX as it
> wastes time following the
>
> linux path. Please rework it to be something saner:
>
>
> #if defined(PLATFORM_MACOSX)
> ...
>
> #elif defined (PLATFORM_SOLARIS)
> #else
> ...
> #endif
>
>
>
> Thanks for the patch,
>
> Rodrigo
>
>
>
>
>
-------------- next part --------------
An HTML attachment was scrubbed...
URL: http://lists.ximian.com/pipermail/mono-devel-list/attachments/20091202/857430bc/attachment.html 


More information about the Mono-devel-list mailing list