回复: about libstdc++ ,change the d efaule allocator

2010-01-19 Thread Jiandong Lu
Thanks 发件人: Xin LI 收件人: Jiandong Lu 抄 送: freebsd-hackers@freebsd.org 发送日期: 2010/1/15 (周五) 2:54:42 上午 主 题: Re: about libstdc++ ,change the defaule allocator 2010/1/13 Jiandong Lu : > hello,everyone. > 聽 聽 I get the current source code from svn,and successf

Re: limits for run away Firefox ?

2010-01-19 Thread Doug Barton
No offense was implied, thus the smiley. ;) Doug Sent from my iPhone On Jan 19, 2010, at 1:54 PM, Oliver Fromme wrote: Rick C. Petty wrote: On Mon, Jan 18, 2010 at 12:25:43PM -0800, Doug Barton wrote: On 01/18/10 11:29, Oliver Fromme wrote: Doug Barton wrote: On 01/17/10 17:07, Julia

Re: limits for run away Firefox ? [SEC=UNCLASSIFIED]

2010-01-19 Thread Wilkinson, Alex
0n Tue, Jan 19, 2010 at 10:51:02PM +0100, Fabian Keil wrote: >"Rick C. Petty" wrote: > >> On Mon, Jan 18, 2010 at 12:25:43PM -0800, Doug Barton wrote: >> > On 01/18/10 11:29, Oliver Fromme wrote: >> > > Doug Barton wrote: >> > > > On 01/17/10 17:07, Julian H. Stacey

Re: limits for run away Firefox ?

2010-01-19 Thread Oliver Fromme
Rick C. Petty wrote: > On Mon, Jan 18, 2010 at 12:25:43PM -0800, Doug Barton wrote: > > On 01/18/10 11:29, Oliver Fromme wrote: > > > Doug Barton wrote: > > > > On 01/17/10 17:07, Julian H. Stacey wrote: > > > > > Hi hackers > > > > > I'm tired of my X server occasionaly freezing, swap thras

Re: limits for run away Firefox ?

2010-01-19 Thread Fabian Keil
"Rick C. Petty" wrote: > On Mon, Jan 18, 2010 at 12:25:43PM -0800, Doug Barton wrote: > > On 01/18/10 11:29, Oliver Fromme wrote: > > > Doug Barton wrote: > > > > On 01/17/10 17:07, Julian H. Stacey wrote: > > > > > Hi hackers > > > > > I'm tired of my X server occasionaly freezing, swap thras

Re: limits for run away Firefox ?

2010-01-19 Thread Rick C. Petty
On Mon, Jan 18, 2010 at 12:25:43PM -0800, Doug Barton wrote: > On 01/18/10 11:29, Oliver Fromme wrote: > > Doug Barton wrote: > > > On 01/17/10 17:07, Julian H. Stacey wrote: > > > > Hi hackers > > > > I'm tired of my X server occasionaly freezing, swap thrasing, & > > firefox dumps: > > > >

Re: pthread_{mutex,cond} & fifo/starvation/scheduling policy

2010-01-19 Thread Dan Nelson
In the last episode (Jan 19), Bernard van Gastel said: > I'm curious to the exact scheduling policy of POSIX threads in relation to > mutexes and conditions. If there are two threads (a & b), both with the > following code: > > while (1) { > pthread_mutex_lock(mutex); > ... > pt

Re: Setting "zfs_arc_max" value in FreeBSD 8.

2010-01-19 Thread jhell
On 1/19/2010 5:16 AM, Sherin George wrote: > Thanks Ivan :) > > I found It. add following in /boot/loader.conf > > === > vfs.zfs.arc_max="10244M" > === > > -- > Best Regards, > Sherin > > On Tue, Jan 19, 2010 at 3:15 PM, Ivan Voras wrote: > >> On 01/19/10 10:19

Re: Q:possibility PFIL+mbuf use for packet spawning

2010-01-19 Thread q q
Error: line And server got message:"Test Message.Qnd message" should read as line And server got message:"Test Message.G\0d message". Sent you last logs, big Apologises :( 2010/1/19 q q > > I coded all checksum calculations code. All works ok when i just modifying > data of packets(like all T

Re: Q:possibility PFIL+mbuf use for packet spawning

2010-01-19 Thread q q
I coded all checksum calculations code. All works ok when i just modifying data of packets(like all T letters to Q letters) But now i get some strange error: packet1: TestMessage. packet2: 2nd message im using on first packet only next code(data is a pointer to char* from mbuf containing strings)

Re: Setting "zfs_arc_max" value in FreeBSD 8.

2010-01-19 Thread krad
2010/1/19 Ivan Voras > On 01/19/10 10:19, Sherin George wrote: > >> Hello, >> >> I am trying to tune ZFS file system by setting "zfs_arc_max" value in >> FreeBSD 8. >> >> In solaris, it is achieved like this >> >> = >> For example, if an application

Re: pthread_{mutex,cond} & fifo/starvation/scheduling policy

2010-01-19 Thread Dag-Erling Smørgrav
Bernard van Gastel writes: > What is the scheduling policy of the different thread libraries? Threads are scheduled by the kernel, not by the library. Look at sys/kern/sched_umtx.c and sys/kern/sched_{4bsd,ule}.c. DES -- Dag-Erling Smørgrav - d...@des.no ___

pthread_{mutex,cond} & fifo/starvation/scheduling policy

2010-01-19 Thread Bernard van Gastel
Hi everyone, I'm curious to the exact scheduling policy of POSIX threads in relation to mutexes and conditions. If there are two threads (a & b), both with the following code: while (1) { pthread_mutex_lock(mutex); ... pthread_mutex_unlock(mutex); } What is the scheduli

Re: Setting "zfs_arc_max" value in FreeBSD 8.

2010-01-19 Thread Sherin George
Thanks Ivan :) I found It. add following in /boot/loader.conf === vfs.zfs.arc_max="10244M" === -- Best Regards, Sherin On Tue, Jan 19, 2010 at 3:15 PM, Ivan Voras wrote: > On 01/19/10 10:19, Sherin George wrote: > >> Hello, >> >> I am trying to tune ZFS file sy

Re: Setting "zfs_arc_max" value in FreeBSD 8.

2010-01-19 Thread Ivan Voras
On 01/19/10 10:19, Sherin George wrote: Hello, I am trying to tune ZFS file system by setting "zfs_arc_max" value in FreeBSD 8. In solaris, it is achieved like this = For example, if an application needs 5 GBytes of memory on a system with 36-GBy

Setting "zfs_arc_max" value in FreeBSD 8.

2010-01-19 Thread Sherin George
Hello, I am trying to tune ZFS file system by setting "zfs_arc_max" value in FreeBSD 8. In solaris, it is achieved like this = For example, if an application needs 5 GBytes of memory on a system with 36-GBytes of memory, you could set the arc maxim