Re: Numerous hard hangs on TWO different ASUS P4T-E w/P4 1.6G

2002-06-08 Thread Dinesh Nair
On Fri, 7 Jun 2002, Frank Mayhar wrote: I see very common short-term hangs, a few seconds to less than a minute. The mouse and keyboard stop responding, X stops updating and everything just pauses, the whole system (including the network). It then starts i've seen this happen on an Asus

Re: Numerous hard hangs on TWO different ASUS P4T-E w/P4 1.6G

2002-06-08 Thread Lars Eggert
Dinesh Nair wrote: I see very common short-term hangs, a few seconds to less than a minute. The mouse and keyboard stop responding, X stops updating and everything just pauses, the whole system (including the network). It then starts i've seen this happen on an Asus 1400R 1U rackmount server,

kernel crash in nfs code...

2002-06-08 Thread NITIN BAHADUR
Hi, I recently had 3 kernel crashes on 2 different machines in the same place. The machines have 3 GB memory (but MAXMEM is set to 1 GB in kernel config file). The machines are running freeBSD 4.4, Sept 16th build. Enlcosed is the trace of the crash... #0 dumpsys () at

a hopefully simple question

2002-06-08 Thread tyler spivey
Sorry if I'm asking on the wrong list, but would someone please write a simple program to do something like: beep 200 300 which would make a 200 hz tone for 300 ms? or at least tell me where to look for the information i need? To Unsubscribe: send mail to [EMAIL PROTECTED] with unsubscribe

Re: Adding diffs to commit-mail on the fly

2002-06-08 Thread David O'Brien
On Sat, Jun 01, 2002 at 04:17:54AM +0300, Giorgos Keramidas wrote: The idea was resting at the back of my mind, and tonight I hacked this Perl script that seems to mostly do what I want, when I pipe a single There's is also the `cvsmail' port that does that. :0 bf *

Re: a hopefully simple question

2002-06-08 Thread Dan Nelson
In the last episode (Jun 08), tyler spivey said: Sorry if I'm asking on the wrong list, but would someone please write a simple program to do something like: beep 200 300 which would make a 200 hz tone for 300 ms? or at least tell me where to look for the information i need? man speaker

Re: Improving GNU make compatibility in BSD make (+ patch)

2002-06-08 Thread David O'Brien
On Fri, May 31, 2002 at 11:46:03PM -0500, Dan Nelson wrote: Automake avoids the issue entirely by simply listing the dependencies itself, so envuidgid: envuidgid.o $(CC) $(LDFLAGS) -o $@ $^ becomes $(CC) $(LDFLAGS) -o $@ envuidgid.o This is not always possible. If you

Re: Improving GNU make compatibility in BSD make (+ patch)

2002-06-08 Thread David O'Brien
On Thu, May 30, 2002 at 07:42:28PM -0700, Jos Backus wrote: The GNU make info file says: `$^' The names of all the prerequisites, with spaces between them. For prerequisites which are archive members, only the member named is used (*note Archives::). A target has only one

MIB support for network devices in FreeBSD?

2002-06-08 Thread Andy Sparrow
Hi all, (pls Cc: me on any response, not subscribed to either list) Can't find any references to this in the archives. What's the status of MIB support for network interfaces in FreeBSD? Is it deprecated, optional, would be nice? Reason for asking is that a dockapp I use has stopped

Re: MIB support for network devices in FreeBSD?

2002-06-08 Thread Larry Rosenman
On Sat, 2002-06-08 at 22:01, Andy Sparrow wrote: Hi all, (pls Cc: me on any response, not subscribed to either list) Can't find any references to this in the archives. What's the status of MIB support for network interfaces in FreeBSD? Is it deprecated, optional, would be nice?

setrlimit and large maxssiz

2002-06-08 Thread Stephen Montgomery-Smith
I am not sure which is the right mailing list, so sorry about the cross-posting: I want to use a lot of memory in my program, so I set the following in /boot/loader.conf: kern.maxdsiz=2147483648 kern.maxssiz=2147483648 kern.dfldsiz=2147483648 Then I run this simple program: #include

Re: MIB support for network devices in FreeBSD?

2002-06-08 Thread Andy Sparrow
I believe you can get this info if you add the net/snmp or net/snmp4 port. Hi Larry, Thanks for replying. Hmmm. I'm talking about code that uses a FreeBSD-specific sysctl to interrogate the in-kernel if MIB counters, like this: /* gather stats */ int freebsd_sysctl_get(struct

Re: MIB support for network devices in FreeBSD?

2002-06-08 Thread Larry Rosenman
On Sat, 2002-06-08 at 22:51, Andy Sparrow wrote: I believe you can get this info if you add the net/snmp or net/snmp4 port. Hi Larry, Thanks for replying. Hmmm. I'm talking about code that uses a FreeBSD-specific sysctl to interrogate the in-kernel if MIB counters, like this:

Re: MIB support for network devices in FreeBSD?

2002-06-08 Thread Terry Lambert
Andy Sparrow wrote: But these stats don't seem to be collected for at least some network card drivers, presumably because those drivers aren't collecting those stats, e.g. they don't #include net/if_mib.h, and thus don't allocate a mib structure or increment any counters in that structure.