Re: Patch for process title on FreeBSD

2007-12-19 Thread Maarten Lankhorst
Hi Kris, Kris Moore schreef: > How exactly would you like that done? I'm not much of a C programmer, I > live more in the C++ / Shell world :) > With autoconf of course (configure.ac). Cheers, Maarten.

Re: Patch for process title on FreeBSD

2007-12-19 Thread Kris Moore
How exactly would you like that done? I'm not much of a C programmer, I live more in the C++ / Shell world :) -- Kris Moore PC-BSD Software http://www.pcbsd.com Alexandre Julliard wrote: > Kris Moore <[EMAIL PROTECTED]> writes: > >> --- dlls/kernel32/process.c.orig 2007-12-12 12:34:4

Re: Patch for process title on FreeBSD

2007-12-13 Thread Alexandre Julliard
Kris Moore <[EMAIL PROTECTED]> writes: > --- dlls/kernel32/process.c.orig 2007-12-12 12:34:45.0 -0500 > +++ dlls/kernel32/process.c 2007-12-12 12:35:17.0 -0500 > @@ -853,6 +853,11 @@ > */ > static void set_process_name( int argc, char *argv[] ) > { > + > +#if defined(__F

Re: Patch for process title on FreeBSD

2007-12-12 Thread Kris Moore
Stefan Dösinger wrote: > Am Mittwoch, 12. Dezember 2007 18:50:39 schrieb Kris Moore: >> Hey all! >> >> One of our devs noticed that on FreeBSD we don't get the process name >> set properly, so in "ps" we get a lot of wine-pthread garbage. Here's a >> small patch to fix this in dlls/kernel32/p

Re: Patch for process title on FreeBSD

2007-12-12 Thread Stefan Dösinger
Am Mittwoch, 12. Dezember 2007 18:50:39 schrieb Kris Moore: > Hey all! > > One of our devs noticed that on FreeBSD we don't get the process name > set properly, so in "ps" we get a lot of wine-pthread garbage. Here's a > small patch to fix this in dlls/kernel32/process.c > > I tried to make this as