Re: C-style expression processing...

2005-04-26 Thread Jan Grant
On Mon, 25 Apr 2005, Divacky Roman wrote: On Sun, Apr 24, 2005 at 10:50:16PM -0700, Ron Chen wrote: Hi, I am trying to add a new feature in Gridengine (free/opensource) to support ex-LSF users - there are more and more LSF users migrating to Gridengine), and some requested this one:

Re: Cold Reboot (or cold restart) FreeBSD? locore.s hack attempt

2005-04-26 Thread Michael Neeff
Hey Billy, I have the same problem...however am not a hacker :(only a newbie to FreeBSD 5.3. My system for some reason does not do a reboot using: shutdown -r now or reboot now. I am frustrated with having to manually turn on my PC each time I attempt to do a rebootAny solutions out

Re: preadv() / pwritev()

2005-04-26 Thread Marc Olzheim
On Mon, Apr 25, 2005 at 06:50:41PM +0200, Marc Olzheim wrote: On Mon, Apr 25, 2005 at 05:23:14PM +0200, Marc Olzheim wrote: On Mon, Apr 25, 2005 at 02:50:45PM +0100, Bruce M Simpson wrote: I don't do enough thread-based programming at the moment to make this worth my while, though,

Flash Communication Server on FreeBSD?

2005-04-26 Thread Bogdan TARU
Hello everyone, Did anyone manage to get Macromedia's Flash Communication Server running on FreeBSD (in linux-emu, obviously)? Thanks, bgd ___ freebsd-hackers@freebsd.org mailing list

Re: C-style expression processing...

2005-04-26 Thread Bakul Shah
I am trying to add a new feature in Gridengine (free/opensource) to support ex-LSF users - there are more and more LSF users migrating to Gridengine), and some requested this one: In LSF, a user can specify from the command line the resource requirements of a batch job: (mem = 100 ||

Re: preadv() / pwritev()

2005-04-26 Thread Marc Olzheim
On Tue, Apr 26, 2005 at 03:31:15PM +0200, Marc Olzheim wrote: Ok, I cleaned up the patch, got the freebsd32-compat working and filed a PR: http://www.freebsd.org/cgi/query-pr.cgi?pr=kern/80362 Thanks to some people commenting, I've fixed a typo and added the off_t typedef in sys/uio.h, so that

Re: what goes wrong with barrier free atomic_load/store?

2005-04-26 Thread John Baldwin
On Wednesday 20 April 2005 04:39 pm, John Giacomoni wrote: in reading /src/sys/i386/include/atomic.h I found this comment and I'm having trouble understanding what the problem being referred to below is. /* * We assume that a = b will do atomic loads and stores. However, on a *

Re: preadv() / pwritev()

2005-04-26 Thread John Baldwin
On Tuesday 26 April 2005 09:31 am, Marc Olzheim wrote: On Mon, Apr 25, 2005 at 06:50:41PM +0200, Marc Olzheim wrote: On Mon, Apr 25, 2005 at 05:23:14PM +0200, Marc Olzheim wrote: On Mon, Apr 25, 2005 at 02:50:45PM +0100, Bruce M Simpson wrote: I don't do enough thread-based programming

Re: region code in cdrecord

2005-04-26 Thread Chuck Robey
David Gilbert wrote: Tim == Tim Kientzle [EMAIL PROTECTED] writes: Tim I wouldn't rather, but I think it might be simpler. I also Tim seem to recall hearing about discs whose region-coding was done Tim in such a way that they would not play on unlocked players. Well (to put that to rest), there

vn_fullpath() and devices

2005-04-26 Thread Igor Shmukler
hello, i reported before that vn_fullpath() does not currently deal with VCHR type of vnodes. There is an easy solution for this: if (vnp-v_type == VCHR) { fullpath = vnp-v_rdev-si_name; VOP_UNLOCK(vnp, 0, td);

Re: region code in cdrecord

2005-04-26 Thread Daniel O'Connor
On Wed, 27 Apr 2005 09:02, Chuck Robey wrote: and growisofs instead. The both have large man pages, but nothing in them regarding the setting of region codes. Not at all suprising given that the ISO metdata (ie what mkisofs makes) doesn't contain the region information.. -- Daniel O'Connor

Re: region code in cdrecord

2005-04-26 Thread Chuck Robey
Daniel O'Connor wrote: On Wed, 27 Apr 2005 09:02, Chuck Robey wrote: and growisofs instead. The both have large man pages, but nothing in them regarding the setting of region codes. Not at all suprising given that the ISO metdata (ie what mkisofs makes) doesn't contain the region information..