Re: Solaris 2.7 ufs file systems ...

1999-12-16 Thread Andy Doran
I know little about all things Sun, but a quick grep in NetBSD-current reveals: sys/dev/sun/disklabel.h sys/arch/sparc/sparc/disksubr.c Could be what you're looking for. - ad To Unsubscribe: send mail to [EMAIL PROTECTED] with "unsubscribe freebsd-hackers" in the body of the

Re: Strange problem with NFS

1999-12-16 Thread Andy Doran
On Thu, 16 Dec 1999, Matthew Dillon wrote: > Looks like a firewall to me. Either a firewall in a router > sitting between the hosts, or an ipfw setup sitting on one or the > other host. I set up the NFS server in question ages ago. I haven't looked at the problem, but... The server

Re: IPv6 on 3.2 STABLE ?

1999-09-21 Thread Andy Doran
On Wed, 22 Sep 1999, Ollivier Robert wrote: > NetBSD & OpenBSD has decided to use one of the last two for themselves > (although I always forgot who took what -- I think NetBSD took INRIA and > OpenBSD NRL but I could be wrong). FWIW, the KAME implementation was integrated into NetBSD-current ar

Re: mmap bug

1999-08-11 Thread Andy Doran
Um, just where do you call mmap(2) in this code? - ad Oleg Derevenetz wrote: > This small program, running as 'mmap', not 'mmap -u', can hang my machine. > Is this a known bug in FreeBSD's kernel, or it is my fantasy ? > Thank you for answer. > > #include > #include > #include > #include >

Re: mmap bug

1999-08-11 Thread Andy Doran
Um, just where do you call mmap(2) in this code? - ad Oleg Derevenetz wrote: > This small program, running as 'mmap', not 'mmap -u', can hang my machine. > Is this a known bug in FreeBSD's kernel, or it is my fantasy ? > Thank you for answer. > > #include > #include > #include > #include >

Re: no elf(5) man page (docs/7914)

1999-08-01 Thread Andy Doran
Wes Peters writes: > NetBSD doesn't have one as of 1.4, so they may be interested in yours. ;^) It'd be cool if Asmodai could bounce this around one of the NetBSD lists once it's near completion. tech-toolchain@ or tech-userlevel@ would be the right place I guess. - ad To Unsubscribe: send ma

Re: no elf(5) man page (docs/7914)

1999-08-01 Thread Andy Doran
Wes Peters writes: > NetBSD doesn't have one as of 1.4, so they may be interested in yours. ;^) It'd be cool if Asmodai could bounce this around one of the NetBSD lists once it's near completion. tech-toolchain@ or tech-userlevel@ would be the right place I guess. - ad To Unsubscribe: send m

Re: file(1) Magdir candidate: wintendo

1999-07-29 Thread Andy Doran
On Wed, 28 Jul 1999 09:55:24 MST, "David O'Brien" wrote: > My major Duh!! If Christos sees this thread, my apologies. David, I was trying to be helpful; sorry if my msg came across wrong. - ad To Unsubscribe: send mail to majord...@freebsd.org with "unsubscribe freebsd-hackers" in the body of

Re: file(1) Magdir candidate: wintendo

1999-07-29 Thread Andy Doran
On Wed, 28 Jul 1999 09:55:24 MST, "David O'Brien" wrote: > My major Duh!! If Christos sees this thread, my apologies. David, I was trying to be helpful; sorry if my msg came across wrong. - ad To Unsubscribe: send mail to [EMAIL PROTECTED] with "unsubscribe freebsd-hackers" in the body of th

Re: file(1) Magdir candidate: wintendo

1999-07-28 Thread Andy Doran
On Tue, 27 Jul 1999 22:20:40 MST, "David O'Brien" wrote: > > My advice would be to submit his PR to Chris Demtrito(sp?), file's > > maintainer. Then import NetBSD's file (Chris is a NetBSD guy). You may want to verify this. I'm pretty sure that Christos Zoulas (another NetBSD guy) maintains fil

Re: file(1) Magdir candidate: wintendo

1999-07-28 Thread Andy Doran
On Tue, 27 Jul 1999 22:20:40 MST, "David O'Brien" wrote: > > My advice would be to submit his PR to Chris Demtrito(sp?), file's > > maintainer. Then import NetBSD's file (Chris is a NetBSD guy). You may want to verify this. I'm pretty sure that Christos Zoulas (another NetBSD guy) maintains fi

Re: POSIX threads question

1999-07-20 Thread Andy Doran
man 3 setvbuf - ad > Hi there, > > I have written a multithreaded application. > In which, I have redirected stdin, stdout and stderr to some files. > > Does anybody know why if I make a call to fprintf family of functions, I get > nothing in the output files, until I call fflush? To Unsubscri

Re: POSIX threads question

1999-07-20 Thread Andy Doran
man 3 setvbuf - ad > Hi there, > > I have written a multithreaded application. > In which, I have redirected stdin, stdout and stderr to some files. > > Does anybody know why if I make a call to fprintf family of functions, I get nothing >in the output files, until I call fflush? To Unsubscri

Re: poor ethernet performance?

1999-07-16 Thread Andy Doran
I'd guess that you're running these cards in full duplex mode. You can't do that with them plugged into a hub. ifconfig xl0 mediaopt half-duplex - ad crypt0genic wrote: > > * Andy Doran (a...@fionn.sports.gov.uk) [990716 12:25]: > > What does 'netstat

Re: poor ethernet performance?

1999-07-16 Thread Andy Doran
I'd guess that you're running these cards in full duplex mode. You can't do that with them plugged into a hub. ifconfig xl0 mediaopt half-duplex - ad crypt0genic wrote: > > * Andy Doran ([EMAIL PROTECTED]) [990716 12:25]: > > What does 'netstat

Re: poor ethernet performance?

1999-07-16 Thread Andy Doran
What does 'netstat -in' say? - ad crypt0genic wrote: > > Hey all, > > I have two freeBSD machines one 3.1 -STABLE and the other 3.2 -STABLE, I was > ftp > ing a very large file from one machine to abother over are lan, it began to > get > extremely slow and began to stall. I suspected two m

Re: poor ethernet performance?

1999-07-16 Thread Andy Doran
What does 'netstat -in' say? - ad crypt0genic wrote: > > Hey all, > > I have two freeBSD machines one 3.1 -STABLE and the other 3.2 -STABLE, I was ftp > ing a very large file from one machine to abother over are lan, it began to get > extremely slow and began to stall. I suspected two much t

Re: changing argv[0] after fork()

1999-07-14 Thread Andy Doran
Wayne Cuddy wrote: > Even though I am developing on FBSD is there a "more portable" way to do this? setproctitle(3) works at least for FreeBSD and NetBSD. Poke around the sources of sendmail(8) for a more ... ported way. I'm sure you'll find something. - ad To Unsubscribe: send mail to majo

Re: changing argv[0] after fork()

1999-07-14 Thread Andy Doran
Wayne Cuddy wrote: > Even though I am developing on FBSD is there a "more portable" way to do this? setproctitle(3) works at least for FreeBSD and NetBSD. Poke around the sources of sendmail(8) for a more ... ported way. I'm sure you'll find something. - ad To Unsubscribe: send mail to [EM

Re: changing argv[0] after fork()

1999-07-14 Thread Andy Doran
setproctitle(3) Wayne Cuddy wrote: > > I have a process that forks several times, I want to change the names that the > child processes appear as in the process table. Is there a trick to doing > this? > > Thanks, > Wayne > > To Unsubscribe: send mail to majord...@freebsd.org > with "unsubscri

Re: changing argv[0] after fork()

1999-07-14 Thread Andy Doran
setproctitle(3) Wayne Cuddy wrote: > > I have a process that forks several times, I want to change the names that the > child processes appear as in the process table. Is there a trick to doing > this? > > Thanks, > Wayne > > To Unsubscribe: send mail to [EMAIL PROTECTED] > with "unsubscribe

Re: netiso tree (fwd)

1999-06-07 Thread Andy Doran
The 'netiso' and 'netccitt' trees are still included in NetBSD. - ad On Mon, 7 Jun 1999, Alfred Perlstein wrote: > -- Forwarded message -- > Date: Mon, 07 Jun 1999 15:23:57 -0400 > From: Spud Taylor > To: freebsd-questi...@freebsd.org > Subject: netiso tree > > We have been usi

Re: xl driver for 3Com

1999-05-31 Thread Andy Doran
> > I'm having serious problems with my 3COM Card too. The problem is > > that there are many many collisions on the network. If i for > > example transfer 30MB via samba from one computer to the other i get > > about 900 collisions. Leaving busy networks etc. aside, this is purely a characterist

Re: NSS

1999-05-27 Thread Andy Doran
NetBSD has had this for a while. - ad On Fri, 28 May 1999, Max Khon wrote: > hi, there! > > On Thu, 27 May 1999, Chuck Robey wrote: > > > > Are there any projects to implement NSS under FreeBSD (or other *BSDs)? > > > > Might be courteous of you, if you could at least include *some* kind of >

Re: c9x (new ANSI C)

1999-05-19 Thread Andy Doran
On Wed, 19 May 1999, Chuck Robey wrote: > Becoming well versed in C++ has meant that I can now bore you endlessly > with well expressed reasons why I dislike C++. Now you have all the > language propeller-heads wanting to change C into a C++ lookalike. I've always preferred Objective-C, simply