Re: kern/104406 on 8.0-RELEASE-p2 ?

2010-04-09 Thread Victor Sudakov
Victor Sudakov wrote: > > > I seem to have symptoms of kern/104406 on a 8.0-RELEASE-p2 system. > > > After an uptime of several days, many processes get stuck in the "ufs" > > > state. The processes which had already opened some files before the > > > deadlock continue working all right, e.g. my o

make pkg_install suite reusable, please

2010-04-09 Thread Leinier Cruz Salfran
hello fbsd devs i want to ask you one thing: can you make the 'pkg_install' suite reusable .. means install 'libinstall.a' as a shared object in order to make it reusable by others devs i'm developing a packages manager and i borrow almost all 'pkg_install' in order to be able to do things relate

Re: make pkg_install suite reusable, please

2010-04-09 Thread Alexander Churanov
2010/4/9 Leinier Cruz Salfran > i want to ask you one thing: can you make the 'pkg_install' suite > reusable .. means install 'libinstall.a' as a shared object in order > to make it reusable by others devs > Hi Leinier, I'd like to add my 50 cents. From my point of view, the true UNIX way is re

Re: make pkg_install suite reusable, please

2010-04-09 Thread Alexander Churanov
Leinier, I forgot to mention that character-mode IO also resolves all binary compatibility issues and makes possible implementing wrappers for any programming language much easier. Alexander Churanov ___ freebsd-hackers@freebsd.org mailing list http://l

c question

2010-04-09 Thread Leinier Cruz Salfran
hello all i want to know your oppinions about this: - use a matrix is faster than use a linked list? example: char *szColumnName[10]; unsigned short iColumnAge[10]; struct _llList { struct _llList *prev, *next; char szName[64]; unsigned short iAge; }; __

Re: c question

2010-04-09 Thread Alexander Churanov
2010/4/9 Leinier Cruz Salfran > - use a matrix is faster than use a linked list? > > example: > > char *szColumnName[10]; > unsigned short iColumnAge[10]; > > > struct _llList { > struct _llList *prev, *next; > char szName[64]; > unsigned short iAge; > }; Leinier , This depends on what kin

C6 sleep state

2010-04-09 Thread Sean Bruno
Has anyone worked on code for the C6 power state for the Intel Nehalem processors yet? http://download.intel.com/design/processor/applnots/320354.pdf Sean ___ freebsd-hackers@freebsd.org mailing list http://lists.freebsd.org/mailman/listinfo/freebsd-h

Re: make pkg_install suite reusable, please

2010-04-09 Thread Leinier Cruz Salfran
On Fri, Apr 9, 2010 at 10:38 AM, Alexander Churanov wrote: > Leinier, > > I forgot to mention that character-mode IO also resolves all binary > compatibility issues and makes possible implementing wrappers for any > programming language much easier. > Alexander Churanov > hello alexander that is

Re: c question

2010-04-09 Thread Leinier Cruz Salfran
On Fri, Apr 9, 2010 at 10:52 AM, Alexander Churanov wrote: > 2010/4/9 Leinier Cruz Salfran >> >> - use a matrix is faster than use a linked list? >> >> example: >> >> char *szColumnName[10]; >> unsigned short iColumnAge[10]; >> >> >> struct _llList { >>  struct _llList *prev, *next; >>  char szNa

Re: c question

2010-04-09 Thread KAYVEN RIESE
On Fri, 9 Apr 2010, Leinier Cruz Salfran wrote: hello all i want to know your oppinions about this: - use a matrix is faster than use a linked list? yes. example: char *szColumnName[10]; unsigned short iColumnAge[10]; struct _llList { struct _llList *prev, *next; char szName[64]; u

Re: make pkg_install suite reusable, please

2010-04-09 Thread Garrett Cooper
On Fri, Apr 9, 2010 at 10:38 AM, Leinier Cruz Salfran wrote: > On Fri, Apr 9, 2010 at 10:38 AM, Alexander Churanov > wrote: >> Leinier, >> >> I forgot to mention that character-mode IO also resolves all binary >> compatibility issues and makes possible implementing wrappers for any >> programming

Re: make pkg_install suite reusable, please

2010-04-09 Thread Charlie Kester
On Fri 09 Apr 2010 at 07:36:17 PDT Alexander Churanov wrote: 2010/4/9 Leinier Cruz Salfran i want to ask you one thing: can you make the 'pkg_install' suite reusable .. means install 'libinstall.a' as a shared object in order to make it reusable by others devs Hi Leinier, I'd like to add m

Re: make pkg_install suite reusable, please

2010-04-09 Thread Garrett Cooper
On Fri, Apr 9, 2010 at 11:51 AM, Charlie Kester wrote: > On Fri 09 Apr 2010 at 07:36:17 PDT Alexander Churanov wrote: >> >> 2010/4/9 Leinier Cruz Salfran >> >>> i want to ask you one thing: can you make the 'pkg_install' suite >>> reusable .. means install 'libinstall.a' as a shared object in ord